@kubernetesjs/cli 0.3.4 → 0.3.5

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 +8 -9
  2. package/package.json +15 -14
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # @kubernetesjs/cli
2
2
 
3
3
  <p align="center" width="100%">
4
- <img src="https://github.com/hyperweb-io/interweb-utils/assets/545047/89c743c4-be88-409f-9a77-4b02cd7fe9a4" width="80">
4
+ <img src="https://raw.githubusercontent.com/constructive-io/.github/refs/heads/main/assets/logo.svg" alt="constructive" width="80"><br />
5
5
  <br/>
6
6
  TypeScript CLI for Kubernetes
7
7
  <br />
8
- <a href="https://github.com/hyperweb-io/kubernetesjs/actions/workflows/ci.yml">
9
- <img height="20" src="https://github.com/hyperweb-io/kubernetesjs/actions/workflows/ci.yml/badge.svg"/>
8
+ <a href="https://github.com/constructive-io/kubernetesjs/actions/workflows/ci.yml">
9
+ <img height="20" src="https://github.com/constructive-io/kubernetesjs/actions/workflows/ci.yml/badge.svg"/>
10
10
  </a>
11
- <a href="https://github.com/hyperweb-io/kubernetesjs/blob/main/LICENSE">
11
+ <a href="https://github.com/constructive-io/kubernetesjs/blob/main/LICENSE">
12
12
  <img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
13
13
  </a>
14
14
  </p>
@@ -152,17 +152,16 @@ yarn build:dev
152
152
 
153
153
  Checkout these related projects:
154
154
 
155
- * [`schema-typescript`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/schema-typescript)
155
+ * [`schema-typescript`](https://github.com/constructive-io/dev-utils/tree/main/packages/schema-typescript)
156
156
  Provides robust tools for handling JSON schemas and converting them to TypeScript interfaces with ease and efficiency.
157
- * [`@schema-typescript/cli`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/cli)
157
+ * [`@schema-typescript/cli`](https://github.com/constructive-io/dev-utils/tree/main/packages/cli)
158
158
  CLI is the command line utility for `schema-typescript`.
159
- * [`schema-sdk`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/schema-sdk)
159
+ * [`schema-sdk`](https://github.com/constructive-io/dev-utils/tree/main/packages/schema-sdk)
160
160
  Provides robust tools for handling OpenAPI schemas and converting them to TypeScript clients with ease and efficiency.
161
- * [`starship`](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
162
161
 
163
162
  ## Credits
164
163
 
165
- 🛠 Built by [Interweb](https://interweb.co) — if you like our tools, please checkout and contribute [https://interweb.co](https://interweb.co)
164
+ **🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
166
165
 
167
166
  ## Disclaimer
168
167
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kubernetesjs/cli",
3
- "version": "0.3.4",
4
- "author": "Dan Lynch <pyramation@gmail.com>",
3
+ "version": "0.3.5",
4
+ "author": "Constructive <developers@constructive.io>",
5
5
  "description": "KubernetesJS CLI",
6
6
  "keywords": [
7
7
  "kubernetes",
@@ -20,44 +20,45 @@
20
20
  "main": "index.js",
21
21
  "module": "esm/index.js",
22
22
  "types": "index.d.ts",
23
- "homepage": "https://github.com/hyperweb-io/kubernetes",
24
- "license": "SEE LICENSE IN LICENSE",
23
+ "homepage": "https://github.com/constructive-io/kubernetesjs",
24
+ "license": "MIT",
25
25
  "publishConfig": {
26
26
  "access": "public",
27
27
  "directory": "dist"
28
28
  },
29
29
  "repository": {
30
30
  "type": "git",
31
- "url": "https://github.com/hyperweb-io/kubernetes"
31
+ "url": "https://github.com/constructive-io/kubernetesjs"
32
32
  },
33
33
  "bugs": {
34
- "url": "https://github.com/hyperweb-io/kubernetes/issues"
34
+ "url": "https://github.com/constructive-io/kubernetesjs/issues"
35
35
  },
36
36
  "bin": {
37
37
  "k8s": "index.js",
38
38
  "kubernetes": "index.js"
39
39
  },
40
40
  "scripts": {
41
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
42
- "clean": "rimraf dist/**",
43
- "prepare": "npm run build",
44
- "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
45
- "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
41
+ "clean": "makage clean",
42
+ "prepack": "npm run build",
43
+ "build": "makage build",
44
+ "build:dev": "makage build --dev",
46
45
  "lint": "eslint . --fix",
47
46
  "test": "jest",
48
47
  "test:watch": "jest --watch",
49
48
  "dev": "ts-node src/index.ts"
50
49
  },
51
50
  "devDependencies": {
52
- "@types/js-yaml": "^4.0.9"
51
+ "@types/js-yaml": "^4.0.9",
52
+ "@types/minimist": "^1.2.5",
53
+ "makage": "^0.1.8"
53
54
  },
54
55
  "dependencies": {
55
56
  "chalk": "^4.1.0",
56
57
  "deepmerge": "^4.3.1",
57
58
  "inquirerer": "^2.0.8",
58
59
  "js-yaml": "^4.1.0",
59
- "kubernetesjs": "^0.7.4",
60
+ "kubernetesjs": "^0.7.5",
60
61
  "minimist": "^1.2.8"
61
62
  },
62
- "gitHead": "c10664b145a63bb4cda0896246a3613c7867379b"
63
+ "gitHead": "ca9d4e76b6706aecbb0be33ff290767b9987acb2"
63
64
  }