-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.53 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
{
"name": "@arumwu/agentrelay",
"version": "0.4.0",
"description": "Local-first coordination, shared project memory, and live tmux transport for coding agents.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"agentrelay": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"SECURITY.md",
"LICENSE",
"LICENSES",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run build && npm test",
"prepare": "npm run build",
"prepack": "npm run check"
},
"engines": {
"node": ">=22.13.0"
},
"keywords": [
"mcp",
"coding-agents",
"multi-agent",
"tmux",
"terminal",
"handoff",
"project-memory"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/arumwu/agentrelay.git"
},
"bugs": {
"url": "https://github.com/arumwu/agentrelay/issues"
},
"homepage": "https://github.com/arumwu/agentrelay#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.11.1",
"commander": "^14.0.3",
"minimatch": "^10.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}