-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@prodisco/mcp-server",
"version": "0.1.14",
"description": "ProDisco: Kubernetes MCP server with progressive disclosure",
"type": "module",
"main": "dist/server.js",
"workspaces": [
".",
"packages/search-libs",
"packages/loki-client",
"packages/prometheus-client",
"packages/sandbox-server"
],
"bin": {
"prodisco-k8s": "dist/server.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && npm run build:app",
"build:app": "vite build --config src/apps/vite.config.ts",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"docker:build:config": "tsx scripts/docker/build-images.ts",
"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",
"test:examples": "bash scripts/ci/examples-smoke.sh",
"prepare": "husky || true"
},
"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": {
"@grpc/grpc-js": "^1.12.5",
"@kubernetes/client-node": "^1.4.0",
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.24.3",
"@orama/orama": "^3.1.5",
"@prodisco/loki-client": "^0.1.0",
"@prodisco/prometheus-client": "^0.1.0",
"@prodisco/sandbox-server": "^0.1.6",
"@prodisco/search-libs": "^0.1.0",
"chokidar": "^5.0.0",
"esbuild": "^0.27.1",
"express": "^5.2.1",
"prometheus-query": "^3.3.2",
"typescript": "^5.9.3",
"uvu": "^0.5.6",
"yaml": "^2.8.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.58",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/express": "^5.0.6",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"chart.js": "^4.5.1",
"chartjs-plugin-zoom": "^2.2.0",
"eslint": "^9.39.1",
"hammerjs": "^2.0.8",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.0",
"vitest": "^4.0.15"
}
}