-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.22 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
{
"name": "@icy-r/kube-mcp",
"version": "2.0.0",
"description": "MCP server for managing Kubernetes clusters with AI assistants",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"kube-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/icy-r/kubemcp.git"
},
"bugs": {
"url": "https://github.com/icy-r/kubemcp/issues"
},
"homepage": "https://github.com/icy-r/kubemcp#readme",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepare": "husky",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"mcp",
"kubernetes",
"k8s",
"cursor",
"model-context-protocol",
"ai",
"llm",
"devops"
],
"author": "icy-r <asath12882@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.23.0",
"@toon-format/toon": "^2.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^25.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.22.0"
}