-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
{
"name": "@wunderio/wdrmcp",
"mcpName": "io.github.wunderio/wdrmcp",
"version": "0.1.17",
"description": "Wunderio local MCP developer server",
"type": "module",
"bin": {
"wdrmcp": "dist/index.js"
},
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"docker",
"ddev",
"ai-tools",
"copilot"
],
"author": "Wunder",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/wunderio/wdrmcp.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.6.1",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.30",
"typescript": "^5.7.0"
}
}