-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 938 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 938 Bytes
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
{
"name": "mcp-app",
"version": "1.0.0",
"description": "MCP App — LDS components rendered inside Claude (Cluster Overview, Namespace Metrics)",
"type": "module",
"scripts": {
"build": "rm -rf dist && INPUT=cluster-overview.html vite build && INPUT=namespace-metrics.html vite build",
"serve": "npx tsx server.ts",
"dev": "npm run build && npm run serve"
},
"dependencies": {
"@lensapp/lds": "^0.1.10",
"@modelcontextprotocol/ext-apps": "^1.1.2",
"@modelcontextprotocol/sdk": "^1.12.1",
"cors": "^2.8.5",
"express": "^4.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vite-plugin-singlefile": "^2.0.3"
}
}