-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "switchboard",
"version": "0.1.0",
"description": "Self-hosted orchestrator for remotely creating, managing, and coordinating Claude Code and Codex sessions — local execution, async away-from-desk dispatch, per-task isolation.",
"type": "module",
"license": "Apache-2.0",
"author": "Rich Mogull",
"repository": {
"type": "git",
"url": "git+https://github.com/rmogull/switchboard.git"
},
"homepage": "https://github.com/rmogull/switchboard#readme",
"bugs": "https://github.com/rmogull/switchboard/issues",
"keywords": [
"claude",
"claude-code",
"codex",
"agent",
"orchestrator",
"ai",
"signal",
"tailscale",
"self-hosted"
],
"engines": {
"node": ">=22.0.0"
},
"bin": {
"switchboard": "./dist/cli/index.js"
},
"files": [
"dist",
"switchboard.config.example.json",
"README.md",
"LICENSE",
"SECURITY.md"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"switchboard": "tsx src/cli/index.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.177",
"better-sqlite3": "^12.2.0",
"commander": "^14.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.10.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.0"
}
}