-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.33 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
{
"name": "agent-switchboard",
"version": "0.4.20",
"description": "Unified MCP server manager for AI coding agents",
"type": "module",
"bin": {
"asb": "./dist/index.js",
"agent-switchboard": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc && chmod +x dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "biome ci .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "tsx --test tests/*.test.ts",
"prepublishOnly": "pnpm run build",
"postinstall": "git config core.hooksPath .githooks || true",
"release": "scripts/release.sh"
},
"keywords": [
"mcp",
"agent",
"claude",
"codex",
"cursor",
"cli"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@10.18.0",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/node": "^24.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/core": "^10.2.2",
"@inquirer/figures": "^1.0.13",
"@inquirer/prompts": "^7.8.6",
"chalk": "^5.6.2",
"commander": "^14.0.1",
"jsonc-parser": "^3.3.1",
"ora": "^9.0.0",
"yaml": "^2.6.1",
"zod": "^3.25.76"
}
}