-
Notifications
You must be signed in to change notification settings - Fork 492
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
48
49
50
51
52
{
"name": "cockpit-tools",
"private": true,
"version": "0.22.10",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"prebuild": "npm run typecheck",
"build": "npm run sync-version && tsc && vite build",
"release:preflight": "node scripts/release/preflight.cjs",
"preview": "vite preview",
"pretauri": "npm run typecheck",
"tauri": "npm run sync-version && tauri",
"sync-version": "node scripts/sync-version.js"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"blueimp-md5": "^2.19.0",
"clsx": "^2.1.1",
"daisyui": "^5.5.14",
"date-fns": "^4.1.0",
"i18next": "^25.7.4",
"jsqr": "^1.4.0",
"lucide-react": "^0.562.0",
"otpauth": "^9.5.0",
"otplib": "^13.4.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.3",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/blueimp-md5": "^2.18.2",
"@types/otplib": "^7.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}