68 lines
1.9 KiB
JSON
68 lines
1.9 KiB
JSON
{
|
|
"name": "openapi-mcp-generator",
|
|
"version": "3.1.2",
|
|
"description": "Generates MCP server code from OpenAPI specifications",
|
|
"license": "MIT",
|
|
"author": "Harsha",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"bin": {
|
|
"openapi-mcp-generator": "./bin/openapi-mcp-generator.js"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"clean": "rimraf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc && chmod 755 dist/index.js && chmod 755 bin/openapi-mcp-generator.js",
|
|
"version:patch": "npm version patch",
|
|
"version:minor": "npm version minor",
|
|
"version:major": "npm version major"
|
|
},
|
|
"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.15.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.31.0",
|
|
"@typescript-eslint/parser": "^8.31.0",
|
|
"eslint": "^9.25.1",
|
|
"prettier": "^3.5.3",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.10.0",
|
|
"json-schema-to-zod": "^2.6.1",
|
|
"zod": "^3.24.3"
|
|
}
|
|
}
|