-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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": "@devproxy/mcp",
"version": "0.2.0",
"description": "Model Context Protocol (MCP) server for Dev Proxy that enables AI assistants to interact with Dev Proxy.",
"main": "dist/index.js",
"type": "module",
"bin": {
"devproxy-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf dist",
"start": "node dist/index.js",
"inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": [
"dev-proxy",
"mcp",
"model-context-protocol",
"ai-assistant",
"api-simulator"
],
"author": "Dev Proxy",
"maintainers": [
{
"name": "Waldek Mastykarz",
"email": "waldek@mastykarz.nl",
"web": "https://blog.mastykarz.nl"
},
{
"name": "Garry Trinder",
"email": "garry.trinder@live.com",
"web": "https://garrytrinder.github.io/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/waldekmastykarz/dev-proxy-mcp.git"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0"
},
"devDependencies": {
"@types/node": "^20.17.46",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}