-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.98 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.98 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
{
"name": "dockerhub-mcp-server",
"version": "1.0.0",
"description": "MCP Server that dynamically generates tools from OpenAPI specifications",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"lint": "eslint --ext .ts .",
"inspect": "tsc -w & nodemon --watch dist --exec 'npx @modelcontextprotocol/inspector node dist/index.js'",
"genql.scout": "genql --endpoint https://api.scout.docker.com/v1/graphql --output ./src/scout/genql",
"format:fix": "prettier --write \"**/*.+(ts|json)\"",
"format:check": "prettier --check \"**/*.+(ts|json)\"",
"format": "npm run format:fix",
"list-tools:check": "npm run build && node dist/scripts/toolsList.js check-tools-list",
"list-tools:update": "npm run build && node dist/scripts/toolsList.js update-tools-list",
"list-tools": "npm run list-tools:check && npm run list-tools:update"
},
"keywords": [
"mcp",
"openapi",
"swagger",
"api",
"claude"
],
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@genql/cli": "^6.3.3",
"@modelcontextprotocol/sdk": "1.24.0",
"@modelcontextprotocol/specification": "github:modelcontextprotocol/specification",
"express": "^5.1.0",
"jwt-decode": "^4.0.0",
"winston": "^3.17.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/lodash": "^4.17.19",
"@types/node": "^20.10.0",
"commander": "^14.0.0",
"esbuild": "^0.25.5",
"eslint": "^9.29.0",
"glob": "11.1.0",
"i": "^0.3.7",
"lodash": "^4.17.21",
"nodemon": "^3.1.10",
"npm": "^11.4.2",
"prettier": "^3.6.1",
"tsx": "^4.20.1",
"typescript": "^5.3.0",
"typescript-eslint": "^8.35.0"
},
"engines": {
"node": ">=22"
}
}