-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 915 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
{
"name": "opencode-massa",
"version": "0.1.0",
"private": false,
"description": "Claude Code orchestrates OpenCode worker agents: dynamic model routing, parallel-write safety, independent verification and read-only review.",
"type": "module",
"bin": {
"opencode-massa": "dist/src/mcp.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"test": "npm run build && node --test dist/test/*.test.js",
"smoke": "npm run build && node dist/test/smoke.js",
"mcp-e2e": "npm run build && node dist/test/mcp-e2e.js"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Solarthis/opencode-massa.git"
}
}