-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 991 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 991 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
{
"name": "ctrlnode-ai-bridge",
"version": "2026.2.2",
"description": "CtrlNode.ai Agent Bridge",
"main": "index.ts",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build:linux": "bun run scripts/build.ts --target=bun-linux-x64 --outfile=ctrlnode-linux-x64",
"build:linux:baseline": "bun run scripts/build.ts --target=bun-linux-x64-baseline --outfile=ctrlnode-linux-x64-baseline",
"build:mac": "bun run scripts/build.ts --target=bun-darwin-arm64 --outfile=ctrlnode-darwin-arm64",
"build:win": "bun run scripts/build.ts --target=bun-windows-x64 --outfile=ctrlnode.exe"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.21.0",
"@anthropic-ai/claude-agent-sdk": "^0.2.128",
"@cursor/sdk": "^1.0.11",
"@openai/codex-sdk": "^0.128.0",
"chokidar": "^3.5.3",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ws": "^8.5.10",
"typescript": "^6.0.2"
}
}