-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.84 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 4.84 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "claude-collective-intelligence",
"version": "1.0.0",
"description": "AI Agent Swarm Framework - Transform isolated Claude Code sessions into collaborative AI teams with brainstorming, voting, mentorship, and battle systems",
"main": "src/core/orchestrator.js",
"type": "module",
"scripts": {
"start": "node src/core/orchestrator.js",
"menu": "node src/core/cli-menu.js",
"monitor": "node src/core/monitor.js",
"setup": "node scripts/setup/setup-rabbitmq.js",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest tests/unit --coverage",
"test:integration": "node tests/integration/run-all.js",
"test:integration:task-distribution": "node tests/integration/task-distribution.test.js",
"test:integration:brainstorming": "node tests/integration/brainstorming.test.js",
"test:integration:failure-handling": "node tests/integration/failure-handling.test.js",
"test:integration:multi-agent": "node tests/integration/multi-agent.test.js",
"test:integration:monitoring": "node tests/integration/monitoring.test.js",
"test:e2e": "node tests/e2e/run-all.js",
"test:e2e:quick": "node tests/e2e/run-all.js --quick",
"test:e2e:perf": "node tests/e2e/run-all.js --perf",
"test:e2e:verbose": "node tests/e2e/run-all.js --verbose",
"test:e2e:5-terminal": "node tests/e2e/5-terminal-scenario.test.js",
"test:e2e:worktree": "node tests/e2e/git-worktree.test.js",
"test:e2e:failure": "node tests/e2e/failure-recovery.test.js",
"test:e2e:scaling": "node tests/e2e/scaling.test.js",
"test:e2e:performance": "node tests/e2e/performance.test.js",
"test:e2e:db": "node tests/e2e/run-database-tests.js",
"test:e2e:db:lifecycle": "node tests/e2e/complete-agent-lifecycle.test.js",
"test:e2e:db:mentorship": "node tests/e2e/mentorship-flow.test.js",
"test:e2e:db:gamification": "node tests/e2e/gamification-flow.test.js",
"test:e2e:db:voting": "node tests/e2e/voting-persistence.test.js",
"test:e2e:db:battles": "node tests/e2e/battle-system-e2e.test.js",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=text-lcov",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --ci --coverage --maxWorkers=2",
"test:debug": "node --experimental-vm-modules --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint src tests --ext .js --fix || true",
"lint:check": "eslint src tests --ext .js",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"perf": "echo 'Install K6 first: https://k6.io/docs/getting-started/installation/' && npm run perf:load",
"perf:load": "k6 run k6-scripts/load-test.js",
"perf:spike": "k6 run k6-scripts/spike-test.js",
"perf:soak": "k6 run k6-scripts/soak-test.js",
"perf:all": "bash k6-scripts/run-all.sh",
"perf:compare": "node benchmarks/compare.js results.json",
"migrate": "node-pg-migrate",
"migrate:up": "node-pg-migrate up",
"migrate:down": "node-pg-migrate down",
"migrate:create": "node-pg-migrate create",
"db:seed": "node src/db/seed.js",
"db:reset": "node src/db/reset.js",
"docker:test:up": "docker-compose -f docker-compose.test.yml up -d",
"docker:test:down": "docker-compose -f docker-compose.test.yml down -v",
"docker:test:logs": "docker-compose -f docker-compose.test.yml logs -f"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"amqplib": "^0.10.3",
"bcryptjs": "^3.0.3",
"chalk": "^5.6.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express-rate-limit": "^8.2.1",
"ioredis": "^5.3.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^10.1.0",
"node-pg-migrate": "^6.2.2",
"ora": "^7.0.1",
"pg": "^8.16.3",
"pg-pool": "^3.6.1",
"redis": "^4.6.11",
"uuid": "^9.0.1",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.10.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"rabbitmq",
"orchestration",
"multi-agent",
"distributed-ai",
"claude-code"
],
"author": "Muhsin Elcicek & Dr. Umit Kacar",
"contributors": [
{
"name": "Muhsin Elcicek",
"role": "Senior Software Architect"
},
{
"name": "Dr. Umit Kacar",
"email": "kacarumit.phd@gmail.com",
"role": "Senior AI Researcher & Engineer"
}
],
"license": "MIT"
}