@oasissys/k8s-cli 0.1.2 → 0.2.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.
- package/README.md +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ Execute `npx -y @oasissys/k8s-cli` to get Oasis Kubernetes tools.
|
|
|
32
32
|
Want the CLI on PATH and the saved clusters fed into every agent session?
|
|
33
33
|
|
|
34
34
|
```sh
|
|
35
|
-
npm install -g @oasissys/k8s-cli
|
|
35
|
+
npm install -g @oasissys/k8s-cli # installs `oasis-k8s` (and the `k8s-cli` alias)
|
|
36
36
|
oasis-k8s setup
|
|
37
37
|
```
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oasissys/k8s-cli",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"packageManager": "pnpm@11.9.0",
|
|
5
5
|
"description": "oasis-k8s — AXI CLI for read-only Kubernetes access across the Oasis clusters (token-only, multi-cluster) with token-efficient TOON output",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/oasissys/k8s-cli.git"
|
|
9
|
+
"url": "git+https://github.com/oasissys/k8s-cli.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"kubernetes",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"oasis"
|
|
19
19
|
],
|
|
20
20
|
"bin": {
|
|
21
|
-
"oasis-k8s": "./dist/bin/oasis-k8s.js"
|
|
21
|
+
"oasis-k8s": "./dist/bin/oasis-k8s.js",
|
|
22
|
+
"k8s-cli": "./dist/bin/oasis-k8s.js"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
24
25
|
"dist",
|