kfctl 0.1.4

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,64 @@
1
+ {
2
+ "name": "kfctl",
3
+ "version": "0.1.4",
4
+ "description": "Kubernetes Follow Colorful - Follow Kubernetes deployment logs with style",
5
+ "type": "module",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "bin": {
10
+ "kfctl": "./dist/cli.js"
11
+ },
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "dev": "tsx src/cli.tsx",
15
+ "start": "node dist/cli.js",
16
+ "prepublishOnly": "pnpm run build",
17
+ "test": "pnpm run build && node dist/cli.js --version"
18
+ },
19
+ "keywords": [
20
+ "kubernetes",
21
+ "k8s",
22
+ "logs",
23
+ "kubectl",
24
+ "cli",
25
+ "ink",
26
+ "typescript"
27
+ ],
28
+ "author": "iml88503",
29
+ "license": "MIT",
30
+ "files": [
31
+ "dist/",
32
+ "README.md"
33
+ ],
34
+ "engines": {
35
+ "node": ">=14"
36
+ },
37
+ "os": [
38
+ "darwin",
39
+ "linux",
40
+ "win32"
41
+ ],
42
+ "cpu": [
43
+ "x64",
44
+ "arm64"
45
+ ],
46
+ "main": "index.js",
47
+ "dependencies": {
48
+ "@kubernetes/client-node": "^1.4.0",
49
+ "chalk": "^5.6.2",
50
+ "commander": "^14.0.2",
51
+ "execa": "^9.6.1",
52
+ "ink": "^6.6.0",
53
+ "ink-select-input": "^6.2.0",
54
+ "ink-spinner": "^5.0.0",
55
+ "meow": "^14.0.0",
56
+ "react": "^19.2.4"
57
+ },
58
+ "devDependencies": {
59
+ "@types/node": "^25.1.0",
60
+ "@types/react": "^19.2.10",
61
+ "tsx": "^4.21.0",
62
+ "typescript": "^5.9.3"
63
+ }
64
+ }