-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "swarmcode-mcp",
"version": "1.0.3",
"description": "SwarmCode — real-time networking between Claude Code instances. Your AI agents talk to each other across machines, workspaces, and conversations.",
"type": "module",
"main": "src/channel.js",
"bin": {
"swarmcode": "./src/server.js",
"swarmcode-mcp": "./src/server.js"
},
"scripts": {
"test": "node test/integration.js",
"channel": "node src/channel.js",
"listen": "node src/listener.js"
},
"keywords": [
"swarm",
"swarmcode",
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"agent",
"multi-agent",
"distributed",
"redis",
"real-time",
"workspace",
"collaboration",
"networking",
"pub-sub"
],
"author": "Pranab Sarkar",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/spranab/swarmcode.git"
},
"homepage": "https://spranab.github.io/swarmcode/",
"bugs": {
"url": "https://github.com/spranab/swarmcode/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/channel.js",
"src/listener.js",
"src/check-inbox-http.js",
"src/init.js",
"src/server.js",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.2.1",
"ioredis": "^5.10.1",
"uuid": "^13.0.0"
}
}