-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 842 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
{
"name": "screen-pilot-workspace",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"type": "module",
"description": "Screen Pilot workspace with one shared agent core and separate Mac/iPhone shells.",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "tsx core/agent/src/server.ts",
"dev:agent": "tsx core/agent/src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node build/node/core/agent/src/server.js",
"start:agent": "node build/node/core/agent/src/server.js",
"build:mac-app": "./scripts/build/rebuild-native-app.sh",
"build:overlay": "./scripts/build/build-overlay.sh",
"test": "npm run build && node --test build/node/core/agent/test"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.20.6",
"typescript": "^5.8.3"
}
}