{
  "name": "kubeview-mcp",
  "version": "2.0.1",
  "description": "Read-only MCP server enabling code-driven AI analysis of Kubernetes clusters",
  "homepage": "https://github.com/mikhae1/kubeview-mcp",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mikhae1/kubeview-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/mikhae1/kubeview-mcp/issues"
  },
  "mcpName": "io.github.mikhae1/kubeview",
  "server": "./server.json",
  "main": "dist/src/index.js",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js",
      "default": "./dist/src/index.js"
    }
  },
  "bin": {
    "kubeview-mcp": "./bin/kubeview-mcp.js",
    "kubeview-mcp-code-mode": "./bin/kubeview-mcp-code-mode.js"
  },
  "files": [
    "bin/",
    "dist/",
    "scripts/build-version.js",
    "scripts/clean.js",
    "server.json",
    "kube-mcp.code-mode.example.json",
    "src/",
    "tsconfig.json",
    "tsconfig.build.json",
    "*.md"
  ],
  "scripts": {
    "clean": "node scripts/clean.js",
    "build": "npm run clean && node scripts/build-version.js && tsc -p tsconfig.build.json",
    "dev": "tsx --watch src/cli/cli.ts",
    "start": "node bin/kubeview-mcp.js",
    "setup": "node bin/setup.js",
    "code-mode": "node bin/kubeview-mcp-code-mode.js",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "prepare": "husky",
    "command": "node src/cli/run-command.js",
    "release:qa": "npm run lint && npm run typecheck && npm run test",
    "release:build": "npm run build",
    "release:version": "node scripts/update-version.js && node scripts/build-version.js",
    "release": "npm install && npm run release:qa && npm run release:version && npm run release:build",
    "publish:commit": "tsx scripts/release-publish.ts commit",
    "publish:tag": "tsx scripts/release-publish.ts tag",
    "publish:npm": "tsx scripts/release-publish.ts npm",
    "publish:git": "tsx scripts/release-publish.ts git",
    "publish:mcp": "tsx scripts/publish-mcp.ts",
    "publish:all": "tsx scripts/release-publish.ts all",
    "release:publish": "npm run publish:all"
  },
  "keywords": [
    "kubernetes",
    "k8s",
    "mcp",
    "mcp-server",
    "helm",
    "argo",
    "argocd",
    "diagnostics",
    "debugging",
    "ai-tools",
    "ai-agent",
    "code-mode-mcp"
  ],
  "author": "mikhae1",
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.32.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.1.0",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "eslint": "^9.32.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.4.0",
    "husky": "^9.1.7",
    "jest": "^30.0.0",
    "lint-staged": "^16.1.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.4.5",
    "tsx": "^4.19.4"
  },
  "dependencies": {
    "@kubernetes/client-node": "^1.3.0",
    "@modelcontextprotocol/client": "^2.0.0",
    "@modelcontextprotocol/core": "^2.0.0",
    "@modelcontextprotocol/node": "^2.0.0",
    "@modelcontextprotocol/server": "^2.0.0",
    "isolated-vm": "6.1.2",
    "typescript": "^5.8.3",
    "winston": "^3.17.0",
    "zod": "^4.4.3"
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "overrides": {
    "test-exclude": "^7.0.1"
  }
}
