openk8s 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +7 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,32 +14,29 @@ openk8s is a keyboard-driven TUI for browsing and managing Kubernetes clusters,
14
14
  |------|----------|-------|
15
15
  | [kubectl](https://kubernetes.io/docs/tasks/tools/) | yes | Must be configured with a valid kubeconfig |
16
16
  | [helm](https://helm.sh/) | no | Enables HelmRelease management |
17
- | [bun](https://bun.sh/) | dev-only | Only needed for source install / npm install |
17
+ | [bun](https://bun.sh/) | yes | Required at runtime to execute the app |
18
18
 
19
19
  ## Installation
20
20
 
21
- ### Standalone binary (no runtime needed)
21
+ ### npm (requires bun at runtime)
22
22
 
23
23
  ```bash
24
- # Download the latest release from the releases page, or build yourself:
25
- bun run build
26
- ./dist/openk8s
24
+ npm install -g openk8s
25
+ openk8s
27
26
  ```
28
27
 
29
- ### npm / bunx
28
+ ### bunx (no install needed)
30
29
 
31
30
  ```bash
32
- npm install -g openk8s
33
- # or
34
31
  bunx openk8s
35
32
  ```
36
33
 
37
34
  ### From source
38
35
 
39
36
  ```bash
40
- git clone https://github.com/anomalyco/openk8s
37
+ git clone https://github.com/leon19/openk8s
41
38
  cd openk8s
42
- bun install
39
+ npm install
43
40
  bun run dev
44
41
  ```
45
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openk8s",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A terminal UI for Kubernetes",
5
5
  "license": "MIT",
6
6
  "type": "module",