-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "lingoa",
"description": "Lingoa is a desktop app that helps you translate git projects in your native language. Connect your GitHub account, select a repository, and start translating.",
"author": "Toinane",
"bugs": "https://github.com/Toinane/lingoa/issues",
"homepage": "https://github.com/Toinane/lingoa",
"version": "0.2.1",
"type": "module",
"os": [
"win32",
"darwin",
"linux"
],
"engines": {
"node": ">=24",
"rustc": ">=1.70.0"
},
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"portable": "tauri build --no-bundle --features portable",
"version": "node scripts/version-bump.mjs && git add src-tauri/tauri.conf.json src-tauri/Cargo.toml src-tauri/Cargo.lock"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.1.0",
"@tauri-apps/plugin-dialog": "^2.1.0",
"@tauri-apps/plugin-updater": "^2",
"@tauri-apps/plugin-process": "^2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@tauri-apps/cli": "^2.1.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}