-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.63 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
{
"name": "@kud/mcp-opencode",
"version": "1.1.1",
"type": "module",
"description": "MCP server for opencode — query github-copilot models via a persistent opencode server.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-opencode": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"build:watch": "tsc -p tsconfig.json --watch",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"inspect:dev": "npx @modelcontextprotocol/inspector tsx src/index.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"opencode",
"github-copilot",
"model-context-protocol"
],
"author": "kud",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/mcp-opencode.git"
},
"bugs": {
"url": "https://github.com/kud/mcp-opencode/issues"
},
"homepage": "https://github.com/kud/mcp-opencode#readme",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@opencode-ai/sdk": "1.2.27",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}