forked from zig-wasm/zig-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "go-mcp",
"version": "1.0.0",
"type": "module",
"bin": {
"go-mcp": "dist/mcp.js"
},
"main": "dist/mcp.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run build && bunx @modelcontextprotocol/inspector bun dist/mcp.js",
"build": "tsc && cp mcp/index.html dist/",
"prepublishOnly": "bun run build",
"lint": "bunx biome check",
"lint:fix": "bunx biome check --write",
"typecheck": "tsc --noEmit"
},
"author": "Andrey Ryapov <dev@zigwasm.org> (https://zigwasm.org/)",
"license": "MIT",
"description": "MCP server that provides up-to-date documentation for the Go programming language standard library and builtin functions.",
"repository": {
"type": "git",
"url": "git+https://github.com/zig-wasm/go-mcp.git"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"go",
"golang",
"go-docs",
"cli"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"cheerio": "^1.1.0",
"env-paths": "^3.0.0",
"zod": "^3.25.75"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@types/bun": "latest",
"@types/node": "^20.0.0",
"typescript": "^5.8.3"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
}
}