-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 KB
/
package.json
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
{
"name": "@reapi/mcp-openapi",
"version": "0.0.4",
"description": "MCP (Model Context Protocol) server for OpenAPI specifications - loads and serves multiple OpenAPI specs to enable LLM-powered IDE integrations",
"main": "./dist/index.mjs",
"type": "module",
"bin": {
"reapi-mcp-openapi": "./dist/cli.mjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "unbuild",
"debug": "SERVER_PORT=9000 LOG_ENABLED=true npx @modelcontextprotocol/inspector npx tsx src/index.ts",
"test": "LOG_ENABLED=true vitest run",
"test:watch": "LOG_ENABLED=true vitest",
"test:coverage": "LOG_ENABLED=true vitest run --coverage"
},
"keywords": [
"openapi",
"mcp",
"model-context-protocol",
"llm",
"ide",
"api",
"specification",
"cursor",
"code-editor"
],
"author": "",
"license": "ISC",
"packageManager": "[email protected]",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.9.3",
"@modelcontextprotocol/sdk": "^1.8.0",
"@types/axios": "^0.14.4",
"axios": "^1.8.4",
"commander": "^12.0.0",
"fuse.js": "^7.1.0",
"lodash": "^4.17.21",
"openapi-types": "^12.1.3",
"swagger2openapi": "^7.0.8",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.14",
"@vitest/coverage-v8": "^1.4.0",
"tsx": "^4.19.3",
"unbuild": "^3.5.0",
"vitest": "^1.6.1"
}
}