-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 846 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 846 Bytes
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
{
"name": "iflow-workspace",
"version": "0.4.0",
"description": "Multi-Agent Desktop App for iFlow",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"tauri": "tauri",
"tauri:dev": "npm run clean && tauri dev",
"tauri:build": "tauri build",
"kill": "npm run clean",
"dev:clean": "npm run tauri:dev",
"clean": "node scripts/clean-dev.js"
},
"dependencies": {
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.5.0",
"@types/prismjs": "^1.26.6",
"jsdom": "^28.1.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.6.0"
}
}