UNPKG

openapi-spec-master

Version:

🚀 Professional OpenAPI specification analyzer and MCP server. The ultimate toolkit for API developers with VS Code extension integration.

103 lines (102 loc) • 2.93 kB
{ "name": "openapi-spec-master", "private": false, "version": "2.0.0", "type": "module", "description": "🚀 Professional OpenAPI specification analyzer and MCP server. The ultimate toolkit for API developers with VS Code extension integration.", "keywords": [ "openapi", "swagger", "api", "rest", "documentation", "mcp", "claude", "ai", "typescript", "javascript", "python", "curl", "schema", "validation", "code-generation", "analytics", "professional", "vscode" ], "author": { "name": "Ryan Cardin", "email": "ryan@specmaster.dev", "url": "https://github.com/RyanCardin15" }, "license": "MIT", "homepage": "https://github.com/RyanCardin15/Spec-Master", "repository": { "type": "git", "url": "git+https://github.com/RyanCardin15/Spec-Master.git" }, "bugs": { "url": "https://github.com/RyanCardin15/Spec-Master/issues" }, "engines": { "node": ">=16.0.0" }, "bin": { "openapi-spec-master": "dist/cli.js", "openapi-mcp": "dist/mcp/server.js", "openapi-mcp-http": "dist/mcp/http-server.js" }, "files": [ "dist/", "README.md", "CHANGELOG.md", "package.json" ], "scripts": { "dev": "vite", "build": "vite build", "build:all": "npm run build && npm run mcp:build && npm run mcp:http:build && npm run cli:build", "lint": "eslint .", "preview": "vite preview", "mcp:dev": "node --loader ts-node/esm src/mcp/server.ts", "mcp:build": "tsc src/mcp/server.ts --outDir dist --target es2022 --module node16 --moduleResolution node16", "mcp:http": "node --loader ts-node/esm src/mcp/http-server.ts", "mcp:http:build": "tsc src/mcp/http-server.ts --outDir dist --target es2022 --module node16 --moduleResolution node16", "cli:build": "tsc src/cli.ts --outDir dist --target es2022 --module node16 --moduleResolution node16", "prepublishOnly": "npm run build:all" }, "dependencies": { "lucide-react": "^0.344.0", "react": "^18.3.1", "react-dom": "^18.3.1", "js-yaml": "^4.1.0", "fuse.js": "^7.0.0", "html2canvas": "^1.4.1", "jspdf": "^2.5.1", "@modelcontextprotocol/sdk": "^0.5.0", "express": "^4.18.2", "cors": "^2.8.5", "commander": "^11.0.0" }, "devDependencies": { "@eslint/js": "^9.9.1", "@types/react": "^18.3.5", "@types/react-dom": "^18.3.0", "@types/js-yaml": "^4.0.9", "@types/node": "^20.0.0", "@types/express": "^4.17.17", "@types/cors": "^2.8.13", "@vitejs/plugin-react": "^4.3.1", "autoprefixer": "^10.4.18", "eslint": "^9.9.1", "eslint-plugin-react-hooks": "^5.1.0-rc.0", "eslint-plugin-react-refresh": "^0.4.11", "globals": "^15.9.0", "postcss": "^8.4.35", "tailwindcss": "^3.4.1", "typescript": "^5.5.3", "typescript-eslint": "^8.3.0", "vite": "^5.4.2", "ts-node": "^10.9.0" } }