-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 961 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 961 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
{
"name": "agentpi-platform",
"private": true,
"version": "0.1.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"dev": "npm run dev -w @agentpi/daemon",
"dev:doctor": "node ./scripts/dev-doctor.mjs",
"mac:build": "./scripts/build-agentpi-mac.sh",
"mac:open": "./scripts/open-agentpi-mac.sh",
"test": "npm run test --workspaces --if-present",
"test:release-gate": "npm run typecheck && npm test && npm run mac:build && npm run build",
"typecheck": "npm run build -w @agentpi/protocol && npm run typecheck --workspaces --if-present",
"mac:seed-demo": "./scripts/seed-agentpi-demo.sh",
"mac:demo": "npm run mac:seed-demo && npm run mac:open"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.0.0"
}
}