-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.84 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.84 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "mcp4openapi",
"version": "0.5.7",
"description": "Universal MCP server that exposes tools for any OpenAPI specification",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": "./dist/src/lib.js",
"./cli": "./dist/src/index.js"
},
"bin": {
"mcp4openapi": "dist/src/index.js"
},
"files": [
"dist",
"html",
"profiles",
"profile-schema.json",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "npm run generate-schemas && tsc -p tsconfig.build.json",
"dev": "tsc --watch",
"start": "node dist/src/index.js",
"test": "npm run typecheck && vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
"test:all": "npm run test:unit && npm run test:e2e",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.js,.mjs,.cjs",
"generate-schemas": "node scripts/generate-schemas.js",
"sync-profile-schema": "node scripts/sync-profile-schema.js",
"check-schema-sync": "node scripts/check-profile-schema-sync.js",
"validate": "npm run build && node dist/scripts/validate-profile.js",
"validate:schema": "npm run build && node dist/scripts/validate-schema.js",
"agent:feedback-template": "npm run build && node dist/scripts/render-agent-feedback-template.js",
"agent:evaluator": "npm run build && node dist/scripts/run-evaluator.js",
"agent:proposal-intake": "npm run build && node dist/scripts/run-proposal-intake.js",
"agent:issuer": "npm run build && node dist/scripts/run-issuer.js",
"agent:planner": "npm run build && node dist/scripts/run-planner.js",
"agent:implementor": "npm run build && node dist/scripts/run-implementor.js",
"agent:implementor:codex": "npm run build && node dist/scripts/run-implementor-codex.js",
"agent:reviewer": "npm run build && node dist/scripts/run-reviewer.js",
"agent:merger": "npm run build && node dist/scripts/run-merger.js",
"agent:merge-executor": "npm run build && node dist/scripts/run-merge-executor.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"openapi",
"api",
"llm",
"model-context-protocol",
"swagger",
"openapi-spec",
"api-tools",
"claude"
],
"author": "David Ruzicka",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidruzicka/mcp4openapi.git"
},
"homepage": "https://github.com/davidruzicka/mcp4openapi#readme",
"bugs": {
"url": "https://github.com/davidruzicka/mcp4openapi/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"ajv": "^8.18.0",
"dotenv": "^17.2.3",
"escape-html": "^1.0.3",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"ipaddr.js": "^2.3.0",
"jose": "^6.2.1",
"openapi-types": "^12.1.3",
"prom-client": "^15.1.3",
"qs": "^6.14.1",
"yaml": "^2.6.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@mswjs/http-middleware": "^0.10.3",
"@openai/codex": "^0.116.0",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.3",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"ajv-formats": "^3.0.1",
"eslint": "^10.0.0",
"msw": "^2.7.0",
"supertest": "^7.1.4",
"ts-json-schema-generator": "^2.5.0",
"ts-to-zod": "^5.1.0",
"typescript": "^5.9.3",
"vite": "^6.0.5",
"vitest": "^4.0.18"
},
"overrides": {
"@hono/node-server": "1.19.14",
"flatted": "3.4.2",
"hono": "4.12.17",
"ip-address": "10.2.0",
"minimatch": "10.2.3"
},
"engines": {
"node": ">=18"
}
}