package.json•2.24 kB
{
"name": "@ivotoby/openapi-mcp-server",
"version": "0.1.0",
"description": "An MCP server that exposes OpenAPI endpoints as resources",
"license": "MIT",
"type": "module",
"main": "./dist/bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/ivo-toby/mcp-openapi-server"
},
"bin": "./bin/mcp-server.js",
"files": [
"dist"
],
"scripts": {
"build": "node build.js && chmod +x bin/mcp-server.js",
"clean": "rm -rf dist",
"lint": "eslint --config eslint.config.js src/**/*.ts",
"lint:fix": "eslint --fix --config eslint.config.js src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"dev": "nodemon --watch src -e ts --exec 'npm run build'",
"inspect": "node -r dotenv/config ./scripts/inspect.js",
"inspect-watch": "node ./scripts/inspect-watch.js",
"start": "node bin/mcp-server.js",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest watch --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.16.0",
"axios": "^1.10.0",
"openapi-types": "^12.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.11",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.4",
"dotenv": "^17.2.0",
"esbuild": "^0.25.8",
"eslint": "^9.31.0",
"@eslint/js": "^9.31.0",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-prettier": "^5.5.3",
"msw": "^2.10.4",
"nodemon": "^3.1.7",
"prettier": "^3.6.2",
"semantic-release": "^24.2.7",
"typescript": "^5.3.2",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
}
}