-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 869 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 869 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
{
"name": "agent-computer-use-platform",
"version": "0.1.0-alpha.4",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.11",
"workspaces": [
"apps/control-plane",
"apps/sandbox-runner",
"apps/web-ui",
"packages/ts-sdk"
],
"scripts": {
"sync:desktop-resources": "node scripts/sync-desktop-resources.mjs",
"build": "bun run --workspaces --if-present build && bun run sync:desktop-resources && cargo build --workspace",
"typecheck": "bun run --workspaces --if-present typecheck",
"test": "bun run --workspaces --if-present test && bun run sync:desktop-resources && cargo test --workspace",
"lint": "cargo fmt --check && cargo clippy --workspace --all-targets -- -D warnings && bun run typecheck"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}