{
  "name": "@gc-mcp/tilt",
  "version": "1.0.4",
  "description": "MCP Server for Tilt.dev - provides read-only access to Tilt resources and logs",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "mcp-tilt": "bin/mcp-tilt"
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:e2e": "vitest --config vitest.e2e.config.ts",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "typecheck": "tsc --noEmit",
    "start": "node dist/index.js",
    "clean": "rm -rf dist",
    "docker:build": "docker build -t mcp-tilt-server .",
    "docker:run": "./run-mcp-server.sh",
    "docker:stop": "docker stop mcp-tilt-server",
    "docker:logs": "docker logs -f mcp-tilt-server",
    "docker:clean": "docker stop mcp-tilt-server && docker rm mcp-tilt-server && docker rmi mcp-tilt-server",
    "docker:test": "node test-docker.js",
    "prepublishOnly": "npm run build",
    "publish:patch": "node scripts/publish.js patch",
    "publish:minor": "node scripts/publish.js minor",
    "publish:major": "node scripts/publish.js major",
    "publish:auto": "node scripts/publish.js"
  },
  "keywords": [
    "mcp",
    "tilt",
    "kubernetes",
    "devops",
    "logs",
    "cli",
    "model-context-protocol"
  ],
  "author": "",
  "license": "MIT",
  "homepage": "https://github.com/david-gracia/mcp-servers#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/david-gracia/mcp-servers.git"
  },
  "bugs": {
    "url": "https://github.com/david-gracia/mcp-servers/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "zod": "^3.22.4",
    "dotenv": "^16.3.1",
    "commander": "^11.1.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.54.0",
    "prettier": "^3.1.0",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
