-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.52 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "model-switchboard",
"version": "1.6.11",
"description": "Session-aware routing layer for AI-assisted software delivery workflows",
"keywords": [
"ai",
"llm",
"router",
"model-routing",
"anthropic",
"openai",
"gemini",
"agent",
"cli",
"developer-tools"
],
"type": "module",
"bin": {
"switchboard": "./bin/switchboard.js"
},
"files": [
"bin/",
"scripts/",
"src/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --max-warnings 0 .",
"test": "node --test test/*.test.js",
"hooks:install": "sh scripts/install-git-hooks.sh",
"hooks:doctor": "git config --get core.hooksPath",
"release": "release-it",
"test:fuzz": "node --test test/router.fuzz.js",
"check:anthropic": "node bin/check.js --vendor anthropic",
"check:openai": "node bin/check.js --vendor openai",
"check:gemini": "node bin/check.js --vendor gemini",
"switchboard:turn": "node bin/switchboard.js",
"_switchboard:turn:comment": "pass prompt as trailing arg, e.g.: npm run switchboard:turn -- 'Implement the plan.'",
"switchboard:interactive": "node bin/switchboard.js --interactive",
"switchboard:explain": "node bin/switchboard.js explain --json",
"switchboard:continuity": "node bin/switchboard.js probe continuity --no-tools --inter-turn-delay-ms 1000",
"switchboard:continuity:interactive": "node bin/switchboard.js probe continuity-interactive --json",
"switchboard:spike:codex-cli": "node scripts/codex-cli-feasibility-probe.js",
"switchboard:spike:codex-cli:live": "node scripts/codex-cli-feasibility-probe.js --live",
"switchboard:spike:codex-app-server:preflight": "node scripts/codex-app-server-preflight.js",
"switchboard:spike:codex-app-server:protocol": "node scripts/codex-app-server-protocol-check.js",
"switchboard:spike:codex-app-server:lifecycle": "node scripts/codex-app-server-lifecycle-probe.js",
"switchboard:spike:codex-app-server": "node scripts/codex-app-server-switch-probe.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hannasdev/model-switchboard"
},
"engines": {
"node": ">=22.13.0"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.95.1",
"@google/genai": "^2.0.1",
"openai": "^6.37.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"auto-changelog": "^2.5.1",
"eslint": "^10.3.0",
"eslint-plugin-security": "^4.0.0",
"fast-check": "^4.7.0",
"release-it": "^20.0.1"
}
}