-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "openapi-mcp-ts",
"version": "1.0.0",
"description": "Turn any OpenAPI spec into an MCP server in seconds",
"type": "module",
"main": "dist/index.js",
"bin": {
"openapi-mcp": "dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"openapi",
"model-context-protocol",
"api",
"ai",
"claude",
"anthropic"
],
"author": "Procoders",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/procoders/openapi-mcp-ts.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.1",
"@hono/node-server": "^1.13.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^13.1.0",
"hono": "^4.7.0",
"minimatch": "^10.0.1",
"openapi-types": "^12.1.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"postman-collection": "^5.2.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/postman-collection": "^3.5.11",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}