-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "agent-mesh",
"version": "0.1.0",
"description": "Decentralized coordination protocol for AI agents across IDEs and LLMs",
"type": "module",
"bin": {
"agent-mesh": "./bin/agent-mesh.js",
"am": "./bin/agent-mesh.js",
"agent-mesh-mcp": "./src/mcp-server.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./protocol": "./src/protocol.js"
},
"scripts": {
"test": "node --test tests/test-full-flow.js tests/test-security.js tests/test-real-world.js tests/test-token-savings.js tests/test-autoconfig.js"
},
"keywords": [
"ai",
"agents",
"coordination",
"mesh",
"llm",
"claude",
"codex",
"cursor",
"multi-agent",
"protocol"
],
"author": "CodeAhead",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"chokidar": "^4.0.3",
"ws": "^8.18.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3"
}
}