-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "council-mcp",
"version": "0.2.3",
"description": "Three-tier AI agent MCP orchestration system: Chancellor (Opus), Executor (Sonnet), Aide (Haiku)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"the-council": "./dist/index.js"
},
"files": [
"dist/**",
"!dist/**/*.map",
"!dist/**/*.d.ts.map"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run type-check && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"anthropic",
"agent",
"multi-agent",
"orchestration",
"ai",
"llm"
],
"author": "iamvirul",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iamvirul/the-council.git"
},
"bugs": {
"url": "https://github.com/iamvirul/the-council/issues"
},
"homepage": "https://github.com/iamvirul/the-council#readme",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.101",
"@modelcontextprotocol/sdk": "^1.9.0",
"pino": "^9.6.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.1.0",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
}
}