-
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.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 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": "gitmun",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite --port 1420 --strictPort",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"linux:setup": "bash ./scripts/setup-linux.sh",
"tauri:build": "tauri build",
"tauri:build:linux": "tauri build --bundles deb,appimage",
"generate:attributions": "bash ./scripts/generate-attributions.sh",
"generate:icons": "tauri icon src-tauri/icons/icon.svg -o src-tauri/icons"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-updater": "^2.10.1",
"i18next": "^26.0.8",
"react": "^19.2.4",
"react-diff-view": "^3.3.2",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.6",
"react-virtuoso": "^4.18.3"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^29.0.1",
"typescript": "^5.6.2",
"vite": "^8.0.8",
"vitest": "^3.1.1"
}
}