-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "dockerhub-mcp-server",
"version": "1.0.0",
"private": true,
"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 .",
"test": "npm run test:property && node scripts/check-readonly-hints.mjs && node scripts/check-auth-flow.mjs",
"test:property": "node --import tsx scripts/check-property-tests.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",
"docker:build": "docker build -t dockerhub-mcp-server:smoke .",
"format:fix": "prettier --write \"**/*.{ts,js,mjs,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,mjs,json,yml,yaml}\"",
"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",
"smoke:mcp": "node scripts/smoke-mcp.mjs",
"smoke:docker": "node scripts/smoke-mcp.mjs --docker-image dockerhub-mcp-server:smoke",
"verify:all": "npm run lint && npm run format:check && npm test && npm run build && npm run list-tools:check && npm run docker:build && npm run smoke:mcp && npm run smoke:docker"
},
"keywords": [
"mcp",
"openapi",
"swagger",
"api",
"claude"
],
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@modelcontextprotocol/specification": "github:modelcontextprotocol/specification",
"express": "^5.1.0",
"jwt-decode": "^4.0.0",
"winston": "^3.19.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@genql/cli": "^6.3.4",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.24",
"@types/node": "^24.13.3",
"@typescript/native": "npm:typescript@^7.0.2",
"commander": "^15.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"fast-check": "^4.9.0",
"glob": "13.0.6",
"i": "^0.3.7",
"lodash": "^4.18.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.4",
"tsx": "^4.23.1",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.64.0"
},
"overrides": {
"anymatch@3.1.3": {
"picomatch": "^2.3.2"
},
"flat-cache": {
"flatted": "^3.4.2"
},
"micromatch": {
"picomatch": "^2.3.2"
},
"minimatch@3.1.5": {
"brace-expansion": "^1.1.14"
},
"path-to-regexp": "^8.4.2",
"qs": "^6.15.2",
"rimraf@2.7.1": {
"glob": {
"minimatch": "^3.1.5"
}
},
"undici": "^6.27.0"
},
"engines": {
"node": ">=24"
}
}