-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "swarm-mind",
"version": "1.0.0",
"description": "Emergent Swarm Mind — TEE agents that develop collective memory without a leader",
"main": "dist/agents/swarm.js",
"scripts": {
"compile:wasm": "node scripts/compile-wasm.js",
"build": "tsc && cp agents/phase-machine.wasm dist/agents/phase-machine.wasm",
"start": "node dist/agents/swarm.js",
"start:multi": "bash start-local.sh",
"start:docker": "docker compose up --build",
"dev": "tsx watch agents/swarm.ts",
"dev:agent": "tsx agents/runner.ts",
"dev:dashboard": "tsx dashboard/server-multi.ts",
"deploy": "bash scripts/deploy.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"better-sqlite3": "^12.6.2",
"bittorrent-dht": "^11.0.11",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"openai": "^4.73.0",
"simple-git": "^3.31.1",
"uuid": "^10.0.0",
"wabt": "^1.0.39",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}