-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "task-nexus-tauri",
"version": "4.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:installer": "tauri build -b msi -b nsis && node scripts/release.mjs installer",
"tauri:build:portable": "tauri build --no-bundle && node scripts/release.mjs portable"
},
"dependencies": {
"@tanstack/react-virtual": "^3.13.16",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.4.2",
"clsx": "^2.1.0",
"lucide-react": "^0.344.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/node": "^25.0.3",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.9.3",
"vite": "^5.1.5"
}
}