package.json•1.73 kB
{
"name": "@0xbigboss/tilt-mcp",
"version": "0.1.0",
"description": "MCP server for Tilt CLI integration",
"type": "module",
"main": "dist/server.js",
"bin": {
"tilt-mcp": "dist/server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xbigboss/tilt-mcp.git"
},
"homepage": "https://github.com/0xbigboss/tilt-mcp#readme",
"bugs": {
"url": "https://github.com/0xbigboss/tilt-mcp/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/server.ts --outdir dist --target bun",
"build:standalone": "bun build src/server.ts --compile --outfile dist/tilt-mcp",
"dev": "bun --watch src/server.ts",
"start": "bun dist/server.js",
"test": "bun test",
"test:watch": "bun test --watch",
"test:integration": "bun test tests/integration",
"typecheck": "tsgo --noEmit",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"prepublishOnly": "bun run build && chmod +x dist/server.js"
},
"keywords": [
"mcp",
"tilt",
"kubernetes",
"development"
],
"packageManager": "bun@1.3.2",
"author": "0xbigboss",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.47",
"@modelcontextprotocol/sdk": "^1.22.0",
"ws": "^8.18.3",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "^7.0.0-dev.20251120.1",
"bun-types": "^1.3.2",
"typescript": "^5.9.3"
}
}