kubechart 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "kubechart",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Visualize Kubernetes cluster as ASCII tree in your terminal",
6
+ "bin": {
7
+ "kubechart": "./dist/cli.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "dev": "nodemon --exec \"tsc && node dist/cli.js\" --ext ts,tsx --watch src --ignore dist",
18
+ "start": "node dist/cli.js",
19
+ "test": "jest",
20
+ "test:watch": "jest --watch",
21
+ "test:coverage": "jest --coverage",
22
+ "lint": "eslint src tests --ext .ts,.tsx",
23
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
24
+ "prepublishOnly": "npm run build && npm test"
25
+ },
26
+ "keywords": [
27
+ "kubernetes",
28
+ "k8s",
29
+ "cli",
30
+ "ascii",
31
+ "devops",
32
+ "kubectl"
33
+ ],
34
+ "license": "MIT",
35
+ "engines": {
36
+ "node": ">=18.0.0"
37
+ },
38
+ "dependencies": {
39
+ "@kubernetes/client-node": "^0.21.0",
40
+ "commander": "^12.0.0",
41
+ "ink": "^4.4.1",
42
+ "react": "^18.2.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/jest": "^29.5.0",
46
+ "@types/node": "^20.0.0",
47
+ "@types/react": "^18.2.0",
48
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
49
+ "@typescript-eslint/parser": "^7.0.0",
50
+ "eslint": "^8.57.0",
51
+ "ink-testing-library": "^3.0.0",
52
+ "jest": "^29.7.0",
53
+ "nodemon": "^3.0.0",
54
+ "prettier": "^3.2.0",
55
+ "ts-jest": "^29.1.0",
56
+ "typescript": "^5.4.0"
57
+ }
58
+ }