-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@kubernetesjs/react",
"version": "0.7.8",
"author": "Constructive <developers@constructive.io>",
"description": "Fully Typed Kubernetes React Hooks",
"keywords": [
"kubernetes",
"k8s",
"typescript",
"api",
"client",
"sdk",
"container",
"orchestration",
"devops",
"cloud-native",
"openapi",
"swagger"
],
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/constructive-io/kubernetesjs",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/constructive-io/kubernetesjs"
},
"bugs": {
"url": "https://github.com/constructive-io/kubernetesjs/issues"
},
"scripts": {
"clean": "makage clean",
"prepack": "npm run build",
"build": "makage build",
"build:dev": "makage build --dev",
"lint": "eslint . --fix",
"dev": "ts-node ./test/test.ts",
"deploy": "ts-node ./test/deployment.ts",
"codegen": "ts-node ./scripts/codegen.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:teardown": "ts-node scripts/teardown.ts",
"test:list": "ts-node scripts/list.ts",
"test:deploy": "ts-node scripts/deploy.ts"
},
"dependencies": {
"@tanstack/react-query": "5.79.2",
"kubernetesjs": "workspace:^",
"react": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.77",
"makage": "^0.1.8",
"react": "^18.2.0",
"schema-sdk": "^0.12.0"
},
"peerDependencies": {
"@tanstack/react-query": "5.79.2",
"react": "^18.2.0"
}
}