-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "claude-code-collective",
"version": "2.0.8",
"description": "Sub-agent collective framework for Claude Code with TDD validation, TaskMaster Task ID integration, hub-spoke coordination, and deterministic handoffs",
"main": "lib/index.js",
"bin": {
"claude-code-collective": "./bin/claude-code-collective.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:jest": "jest",
"test:jest:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:contracts": "jest --testPathPattern=contracts",
"test:handoffs": "jest --testPathPattern=handoffs",
"test:agents": "jest --testPathPattern=agents",
"metrics:report": "node lib/metrics/index.js",
"install-collective": "node lib/installer.js",
"validate": "node lib/validator.js"
},
"keywords": [
"claude-code",
"sub-agent",
"collective",
"tdd",
"automation",
"ai-agents",
"hub-spoke",
"handoffs"
],
"author": "Claude Code Sub-Agent Collective",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anthropics/claude-code-sub-agent-collective.git"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"vitest": "^3.2.4",
"@vitest/ui": "^3.2.4"
},
"dependencies": {
"fs-extra": "^11.3.1",
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"enquirer": "^2.3.6",
"handlebars": "^4.7.7",
"commander": "^11.0.0",
"deepmerge": "^4.3.1"
}
}