kubernetesjs 0.7.4 → 0.7.6

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 +12 -12
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # KubernetesJS
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 Client 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>
@@ -174,17 +174,16 @@ kubectl proxy --port=8001 --accept-hosts='^.*$' --address='0.0.0.0'
174
174
 
175
175
  Checkout these related projects:
176
176
 
177
- * [`schema-typescript`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/schema-typescript)
177
+ * [`schema-typescript`](https://github.com/constructive-io/dev-utils/tree/main/packages/schema-typescript)
178
178
  Provides robust tools for handling JSON schemas and converting them to TypeScript interfaces with ease and efficiency.
179
- * [`@schema-typescript/cli`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/cli)
179
+ * [`@schema-typescript/cli`](https://github.com/constructive-io/dev-utils/tree/main/packages/cli)
180
180
  CLI is the command line utility for `schema-typescript`.
181
- * [`schema-sdk`](https://github.com/hyperweb-io/schema-typescript/tree/main/packages/schema-sdk)
181
+ * [`schema-sdk`](https://github.com/constructive-io/dev-utils/tree/main/packages/schema-sdk)
182
182
  Provides robust tools for handling OpenAPI schemas and converting them to TypeScript clients with ease and efficiency.
183
- * [`starship`](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
184
183
 
185
184
  ## Credits
186
185
 
187
- 🛠 Built by [Interweb](https://interweb.co) — if you like our tools, please checkout and contribute [https://interweb.co](https://interweb.co)
186
+ **🛠 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).**
188
187
 
189
188
  ## Disclaimer
190
189
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kubernetesjs",
3
- "version": "0.7.4",
4
- "author": "Dan Lynch <pyramation@gmail.com>",
3
+ "version": "0.7.6",
4
+ "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Fully Typed Kubernetes",
6
6
  "keywords": [
7
7
  "kubernetes",
@@ -20,25 +20,24 @@
20
20
  "main": "index.js",
21
21
  "module": "esm/index.js",
22
22
  "types": "index.d.ts",
23
- "homepage": "https://github.com/hyperweb-io/kubernetesjs",
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/kubernetesjs"
31
+ "url": "https://github.com/constructive-io/kubernetesjs"
32
32
  },
33
33
  "bugs": {
34
- "url": "https://github.com/hyperweb-io/kubernetesjs/issues"
34
+ "url": "https://github.com/constructive-io/kubernetesjs/issues"
35
35
  },
36
36
  "scripts": {
37
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
38
- "clean": "rimraf dist/**",
39
- "prepare": "npm run build",
40
- "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
41
- "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
37
+ "clean": "makage clean",
38
+ "prepack": "npm run build",
39
+ "build": "makage build",
40
+ "build:dev": "makage build --dev",
42
41
  "lint": "eslint . --fix",
43
42
  "dev": "ts-node ./test/test.ts",
44
43
  "deploy": "ts-node ./test/deployment.ts",
@@ -50,7 +49,8 @@
50
49
  "test:deploy": "ts-node scripts/deploy.ts"
51
50
  },
52
51
  "devDependencies": {
52
+ "makage": "^0.1.8",
53
53
  "schema-sdk": "^0.12.0"
54
54
  },
55
- "gitHead": "c10664b145a63bb4cda0896246a3613c7867379b"
55
+ "gitHead": "66c8c0a6c3594561a7fd827db7d07db691354ab3"
56
56
  }