package.json•1.62 kB
{
"name": "@prodisco/k8s-mcp",
"version": "0.1.4",
"description": "ProDisco: Kubernetes MCP server with progressive disclosure",
"type": "module",
"main": "dist/server.js",
"bin": {
"prodisco-k8s": "dist/server.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"src/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:integration": "scripts/integration/run-kind-integration.sh",
"prepare": "husky"
},
"keywords": [
"kubernetes",
"k8s",
"mcp",
"model-context-protocol",
"prodisco",
"progressive-disclosure",
"agent",
"claude",
"typescript"
],
"author": "Harshal Patil",
"repository": {
"type": "git",
"url": "https://github.com/harche/ProDisco.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@orama/orama": "^3.1.5",
"chokidar": "^5.0.0",
"prometheus-query": "^3.3.2",
"typescript": "^5.9.3",
"yaml": "^2.8.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.50",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"tsx": "^4.20.6",
"vitest": "^4.0.13"
}
}