@kubernetesjs/react 0.7.5 → 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 +6 -6
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
1
  # @kubernetesjs/react
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
  React Hooks 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>
@@ -267,12 +267,12 @@ Access the underlying KubernetesClient instance and configuration.
267
267
 
268
268
  ## Related
269
269
 
270
- - [`kubernetesjs`](https://github.com/hyperweb-io/kubernetesjs/tree/main/packages/kubernetesjs) - The core TypeScript client for Kubernetes
270
+ - [`kubernetesjs`](https://github.com/constructive-io/kubernetesjs/tree/main/packages/kubernetesjs) - The core TypeScript client for Kubernetes
271
271
  - [`@tanstack/react-query`](https://tanstack.com/query) - The powerful async state management library powering our hooks
272
272
 
273
273
  ## Credits
274
274
 
275
- 🛠 Built by [Interweb](https://interweb.co) — if you like our tools, please checkout and contribute [https://interweb.co](https://interweb.co)
275
+ **🛠 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).**
276
276
 
277
277
  ## Disclaimer
278
278
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kubernetesjs/react",
3
- "version": "0.7.5",
4
- "author": "Dan Lynch <pyramation@gmail.com>",
3
+ "version": "0.7.6",
4
+ "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Fully Typed Kubernetes React Hooks",
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",
@@ -51,11 +50,12 @@
51
50
  },
52
51
  "dependencies": {
53
52
  "@tanstack/react-query": "5.79.2",
54
- "kubernetesjs": "^0.7.4",
53
+ "kubernetesjs": "^0.7.5",
55
54
  "react": "^18.2.0"
56
55
  },
57
56
  "devDependencies": {
58
57
  "@types/react": "^18.2.77",
58
+ "makage": "^0.1.8",
59
59
  "react": "^18.2.0",
60
60
  "schema-sdk": "^0.12.0"
61
61
  },
@@ -63,5 +63,5 @@
63
63
  "@tanstack/react-query": "5.79.2",
64
64
  "react": "^18.2.0"
65
65
  },
66
- "gitHead": "c10664b145a63bb4cda0896246a3613c7867379b"
66
+ "gitHead": "ca9d4e76b6706aecbb0be33ff290767b9987acb2"
67
67
  }