swagger-tools/package.json
rimskij 2635b20a8d chore: release v0.3.0
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 20:29:49 +01:00

37 lines
776 B
JSON

{
"name": "swagger-tools",
"version": "0.3.0",
"description": "MCP server for parsing, validating, and querying OpenAPI/Swagger specifications",
"type": "module",
"main": "dist/index.js",
"bin": {
"swagger-tools": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"openapi",
"swagger",
"mcp",
"claude",
"api"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}