-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"name": "caduceus",
"private": true,
"version": "4.2.0",
"type": "module",
"description": "Caduceus \u2014 a fast, local-first AI command center for your desktop.",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "tauri dev",
"bundle": "tauri build",
"release": "bash scripts/release.sh",
"dev": "vite",
"build": "npm run check:ipc && npm run check:ranking && npm run check:tabs && npm run check:permissions && npm run check:units && npm run catalog && tsc --noEmit && vite build",
"typecheck": "tsc --noEmit",
"test:rust": "cd src-tauri && cargo test",
"tauri": "tauri",
"catalog": "node scripts/build-features-catalog.mjs",
"check:ipc": "python3 scripts/check-ipc-enums.py",
"check:ranking": "node scripts/check-ranking.mjs",
"check:tabs": "node scripts/check-tabs.mjs",
"check:permissions": "node scripts/check-permissions.mjs",
"check:units": "node scripts/check-units.mjs"
},
"dependencies": {
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-autostart": "^2.5.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
"@tauri-apps/plugin-opener": "^2.5.0",
"@tauri-apps/plugin-store": "^2.4.0",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.0",
"vite": "^7.1.0"
}
}