-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.35 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.35 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
{
"name": "kdm-cli",
"version": "1.2.2",
"description": "Kubernetes and Docker Monitoring CLI",
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/KDM-cli/kdm-cli"
},
"bugs": {
"url": "https://github.com/KDM-cli/kdm-cli/issues"
},
"homepage": "https://github.com/KDM-cli/kdm-cli#readme",
"bin": {
"kdm": "./bin/kdm.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --watch",
"test": "vitest run --pool=forks",
"prepublishOnly": "npm run build"
},
"keywords": [
"kubernetes",
"docker",
"cli",
"monitor",
"devops"
],
"author": "",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@vr_patel/tui": "^1.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^14.0.3",
"conf": "^15.1.0",
"cosmiconfig": "^9.0.0",
"dockerode": "^4.0.0",
"ink": "^4.4.1",
"nodemailer": "^8.0.7",
"react": "^19.2.6"
},
"devDependencies": {
"@types/dockerode": "^3.3.26",
"@types/node": "^20.11.24",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.2.15",
"tsup": "^8.0.2",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}