package.json•1.86 kB
{
"name": "@runpod/mcp-server",
"version": "1.1.0",
"description": "MCP server for interacting with RunPod API",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"runpod-mcp": "./dist/index.mjs"
},
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"scripts": {
"build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
"build:watch": "pnpm clean && tsup --watch",
"clean": "rm -rf dist *.tsbuildinfo",
"lint": "eslint \"./**/*.ts*\"",
"type-check": "tsc --build",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://runpod.io",
"repository": {
"type": "git",
"url": "git+https://github.com/runpod/runpod-mcp.git"
},
"bugs": {
"url": "https://github.com/runpod/runpod-mcp/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"runpod",
"server",
"api"
]
}