-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (29 loc) · 877 Bytes
/
package.json
File metadata and controls
30 lines (29 loc) · 877 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
{
"name": "tabagent-desktop",
"version": "0.1.0",
"description": "TabAgent Desktop - AI Workflow Platform for everyone",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/dev-start.ts",
"dev:tauri": "tauri dev",
"build": "npm run build:all && tauri build",
"build:all": "npm run build:dashboard && npm run build:builder",
"build:dashboard": "cd dashboard && npm run build",
"build:builder": "cd agent-builder && npm run build",
"build:release": "tsx scripts/build-release.ts",
"tauri": "tauri",
"check-ports": "tsx scripts/port-manager.ts"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^20.0.0",
"concurrently": "^8.2.2",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}