-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "xhinking-todo",
"version": "1.0.2",
"description": "A modern desktop todo application built with Tauri and Rust",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run sync-version && tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "npm run sync-version && tauri dev",
"tauri:build": "npm run sync-version && tauri build",
"sync-version": "node scripts/sync-version.cjs",
"package": "node scripts/package.cjs",
"package:win": "powershell -ExecutionPolicy Bypass -File scripts/build.ps1",
"package:linux": "bash scripts/build.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tauri-apps/api": "^1.5.3",
"date-fns": "^2.30.0",
"lucide-react": "^0.294.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vite": "^5.0.8"
}
}