-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 843 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 843 Bytes
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
{
"name": "swarm-protocol",
"version": "0.1.0",
"description": "MCP server for AI agent team coordination. No UI. No sprints. Just state sync.",
"type": "module",
"main": "dist/index.js",
"bin": {
"swarm-protocol": "dist/index.js"
},
"scripts": {
"build": "tsc && cp src/db/schema.sql dist/db/schema.sql",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"agent-coordination",
"claude-code",
"team-sync",
"ai-agents"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"pg": "^8.13.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}