-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.33 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
{
"name": "codewiki-mcp",
"version": "1.1.2",
"mcpName": "io.github.izzzzzi/codewiki-mcp",
"description": "MCP server for codewiki.google",
"type": "module",
"main": "dist/index.js",
"bin": {
"codewiki-mcp": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"mcp-server",
"codewiki",
"documentation",
"github",
"ai",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/izzzzzi/codewiki-mcp.git"
},
"license": "MIT",
"homepage": "https://github.com/izzzzzi/codewiki-mcp",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"dev:http": "tsx src/cli.ts --http",
"dev:sse": "tsx src/cli.ts --sse",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.0",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@types/node": "^25.2.3",
"semantic-release": "^25.0.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
}
}