-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.6 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
40
41
42
{
"name": "cli-bridge",
"version": "0.3.0",
"description": "Expose your local coding-CLI subscriptions (Claude Code, Codex, Kimi via opencode, …) as an OpenAI-compatible HTTP API with persistent session resume. Personal tool — single-user by default.",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"build": "tsc --noEmit",
"test": "vitest run && pnpm run test:runtime-consumer",
"test:runtime-consumer": "pnpm --filter cli-bridge-runtime-consumer-regression test",
"test:scoped-host-real": "CLI_BRIDGE_REAL_CGROUP_TESTS=1 vitest run tests/scoped-host.test.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"review": "~/code/dotfiles/bin/ai-agent-hooks.mjs run review",
"verify": "tsx scripts/verify.ts",
"verify:fs-jail": "tsx scripts/verify-fs-jail.ts",
"install:harness": "sh scripts/install-harness.sh",
"install:harnesses": "sh scripts/install-all-harnesses.sh",
"docker:build:runtime": "docker build -f docker/Dockerfile.cli-runtime -t cli-bridge-cli-runtime:latest ."
},
"dependencies": {
"@hono/node-server": "^2.1.1",
"@tangle-network/agent-interface": "1.9.0",
"@tangle-network/agent-profile-materialize": "0.19.2",
"@tangle-network/agent-trace-contract": "^1.0.2",
"better-sqlite3": "^13.0.3",
"hono": "^4.13.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^9.6.0",
"@types/node": "^26.4.0",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}