-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
{
"name": "opencode-mcp",
"version": "1.10.1",
"description": "MCP server that wraps the OpenCode AI headless server API — 79 tools, 10 resources, 6 prompts with multi-project support for any MCP client",
"type": "module",
"main": "dist/index.js",
"bin": {
"opencode-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"opencode",
"ai",
"llm",
"claude",
"cursor",
"windsurf",
"coding-assistant",
"headless",
"server",
"tools"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlaeddineMessadi/opencode-mcp.git"
},
"homepage": "https://github.com/AlaeddineMessadi/opencode-mcp#readme",
"bugs": {
"url": "https://github.com/AlaeddineMessadi/opencode-mcp/issues"
},
"author": "Alaeddine Messadi",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}