-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
32
33
34
35
36
37
38
39
{
"name": "codebridge",
"version": "0.1.0",
"private": true,
"description": "自托管多通道 ACP 网关:从飞书或 Telegram 远程驱动本机 Cursor、Claude Code、Codex",
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm --filter @codebridge/bridge dev",
"test": "vitest run",
"test:watch": "vitest",
"test:acp-probe": "node scripts/acp-probe.mjs",
"lint": "tsc -b && eslint apps/web/src",
"doctor": "node apps/bridge/dist/cli.js doctor",
"start": "node apps/bridge/dist/cli.js start",
"runner": "node packages/runner-host/dist/cli.js",
"start:all": "bash scripts/start.sh",
"setup": "bash scripts/start.sh setup",
"design:qa": "node scripts/design-qa.mjs"
},
"bin": {
"codebridge": "./apps/bridge/dist/cli.js",
"codebridge-runner": "./packages/runner-host/dist/cli.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@types/node": "^22.10.0",
"eslint": "^10.8.1",
"eslint-plugin-react-hooks": "^7.1.1",
"playwright-core": "^1.62.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.67.0",
"vitest": "^2.1.8"
}
}