-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.56 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.56 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
117
118
119
120
121
122
123
124
{
"name": "agent-comm",
"version": "1.3.11",
"description": "Agent-agnostic intercommunication system — sessions, messaging, channels, shared state, and real-time events",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
},
"./dist/lib.js": {
"types": "./dist/lib.d.ts",
"default": "./dist/lib.js"
}
},
"bin": {
"agent-comm": "dist/index.js"
},
"scripts": {
"build": "tsc && node scripts/copy-ui.js",
"dev": "concurrently -k -n tsc,srv -c blue,green \"tsc --watch\" \"nodemon --watch dist --ext js,html,css,json --delay 1 dist/server.js\"",
"dev:mcp": "tsc --watch",
"start": "node dist/index.js",
"start:server": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run tests/e2e/",
"test:e2e:ui": "playwright test",
"test:coverage": "vitest run --coverage",
"bench:metrics": "vitest run bench/metrics.test.ts",
"bench:run": "tsx bench/runner.ts",
"bench:b1": "tsx bench/scenarios/b1-catastrophe/driver.ts",
"bench:b2": "tsx bench/scenarios/b2-pipeline-claim/driver.ts",
"bench:b3": "tsx bench/scenarios/b3-exclusive-resource/driver.ts",
"bench:b4": "tsx bench/scenarios/b4-skill-discovery/driver.ts",
"bench:b5": "tsx bench/scenarios/b5-cross-session/driver.ts",
"bench:b6": "tsx bench/scenarios/b6-urgent-pivot/driver.ts",
"bench:unit": "vitest run --config bench/unit/vitest.config.ts",
"bench:all": "npm run bench:unit && npm run bench:run",
"lint": "eslint src/ tests/ bench/",
"lint:fix": "eslint src/ tests/ bench/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run bench:unit",
"prepare": "husky",
"setup": "node scripts/setup.js"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,css,html}": [
"prettier --write"
]
},
"dependencies": {
"agent-common": "^1.0.3",
"better-sqlite3": "12.8.0",
"morphdom": "^2.7.8",
"uuid": "^11.1.0",
"ws": "8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.58.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"mcp",
"agent",
"communication",
"multi-agent",
"model-context-protocol",
"ai-agents",
"claude-code",
"intercommunication",
"real-time",
"websocket"
],
"files": [
"dist/",
"scripts/",
"agent-desk-plugin.json",
"docs/*.md",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"mcpName": "io.github.keshrath/agent-comm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keshrath/agent-comm.git"
},
"homepage": "https://github.com/keshrath/agent-comm#readme",
"bugs": {
"url": "https://github.com/keshrath/agent-comm/issues"
}
}