61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "openapi-mcp-generator",
|
|
"version": "2.5.0-beta.0",
|
|
"description": "Generates MCP server code from OpenAPI specifications",
|
|
"license": "MIT",
|
|
"author": "Harsha",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"bin": {
|
|
"openapi-mcp-generator": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"clean": "rimraf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc && chmod 755 dist/index.js"
|
|
},
|
|
"keywords": [
|
|
"openapi",
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"generator",
|
|
"llm",
|
|
"ai",
|
|
"api"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/harsha-iiiv/openapi-mcp-generator.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/harsha-iiiv/openapi-mcp-generator/issues"
|
|
},
|
|
"homepage": "https://github.com/harsha-iiiv/openapi-mcp-generator#readme",
|
|
"dependencies": {
|
|
"@apidevtools/swagger-parser": "^10.1.1",
|
|
"commander": "^13.1.0",
|
|
"openapi-types": "^12.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.14.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.29.1",
|
|
"@typescript-eslint/parser": "^8.29.1",
|
|
"eslint": "^9.24.0",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.9.0",
|
|
"zod": "^3.24.2",
|
|
"json-schema-to-zod": "^2.4.1"
|
|
}
|
|
} |