@prorobotech/openapi-k8s-toolkit 0.0.1-alpha.10 → 0.0.1-alpha.3
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/dist/openapi-k8s-toolkit.es.js +38580 -3229
- package/dist/openapi-k8s-toolkit.umd.js +400 -22
- package/package.json +17 -27
- package/dist/openapi-k8s-toolkit.es.js.map +0 -1
- package/dist/openapi-k8s-toolkit.umd.js.map +0 -1
- package/dist/types/api/getDirectUnknownResource.d.ts +0 -4
- package/dist/types/components/index.d.ts +0 -1
- package/dist/types/components/molecules/ManageableBreadcrumbs/ManageableBreadcrumbs.d.ts +0 -16
- package/dist/types/components/molecules/ManageableBreadcrumbs/index.d.ts +0 -3
- package/dist/types/components/molecules/ManageableBreadcrumbs/prepareTemplate.test.d.ts +0 -1
- package/dist/types/components/molecules/ManageableBreadcrumbs/styled.d.ts +0 -276
- package/dist/types/components/molecules/ManageableBreadcrumbs/types.d.ts +0 -17
- package/dist/types/components/molecules/ManageableBreadcrumbs/utils.d.ts +0 -17
- package/dist/types/components/molecules/index.d.ts +0 -1
- package/dist/types/hooks/useDirectUnknownResource.d.ts +0 -6
- package/dist/types/index.d.ts +0 -1
- package/dist/types/setupTests.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prorobotech/openapi-k8s-toolkit",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.3",
|
|
4
4
|
"description": "ProRobotech OpenAPI k8s tools",
|
|
5
5
|
"main": "dist/openapi-k8s-toolkit.cjs.js",
|
|
6
6
|
"module": "dist/openapi-k8s-toolkit.es.js",
|
|
7
|
-
"types": "dist/types/index.d.ts",
|
|
8
7
|
"files": [
|
|
9
8
|
"dist"
|
|
10
9
|
],
|
|
11
10
|
"repository": {
|
|
12
11
|
"type": "git",
|
|
13
|
-
"url": "
|
|
12
|
+
"url": "https://github.com/PRO-Robotech/openapi-k8s-toolkit.git"
|
|
14
13
|
},
|
|
15
14
|
"scripts": {
|
|
16
15
|
"dev": "cross-env BASEPREFIX=/toolkit vite --open --port 3002 --strictPort",
|
|
17
|
-
"build": "vite build
|
|
16
|
+
"build": "tsc && vite build",
|
|
18
17
|
"serve": "vite preview --port 3002 --strictPort",
|
|
19
18
|
"preview": "vite preview --port 3002 --strictPort",
|
|
20
19
|
"tsc": "tsc --project tsconfig.json",
|
|
@@ -25,25 +24,23 @@
|
|
|
25
24
|
"test:watch": "jest --watch",
|
|
26
25
|
"test:coverage": "jest --coverage"
|
|
27
26
|
},
|
|
28
|
-
"peerDependencies": {
|
|
29
|
-
"@ant-design/icons": "5.6.0",
|
|
30
|
-
"antd": "5.20.0",
|
|
31
|
-
"react": "18.3.1",
|
|
32
|
-
"react-dom": "18.3.1",
|
|
33
|
-
"react-router-dom": "^6.25.1",
|
|
34
|
-
"@tanstack/react-query": "5.62.2",
|
|
35
|
-
"@tanstack/react-query-devtools": "5.62.2"
|
|
36
|
-
},
|
|
37
27
|
"dependencies": {
|
|
28
|
+
"@ant-design/icons": "5.6.0",
|
|
38
29
|
"@monaco-editor/react": "4.6.0",
|
|
39
30
|
"@reduxjs/toolkit": "2.2.5",
|
|
31
|
+
"@tanstack/react-query": "5.62.2",
|
|
32
|
+
"@tanstack/react-query-devtools": "5.62.2",
|
|
33
|
+
"antd": "5.20.0",
|
|
40
34
|
"axios": "1.4.0",
|
|
41
35
|
"cross-env": "7.0.3",
|
|
42
36
|
"dotenv": "16.4.7",
|
|
43
37
|
"jsonpath": "1.1.1",
|
|
44
38
|
"lodash": "4.17.21",
|
|
45
39
|
"openapi-types": "12.1.3",
|
|
40
|
+
"react": "18.3.1",
|
|
41
|
+
"react-dom": "18.3.1",
|
|
46
42
|
"react-redux": "9.1.2",
|
|
43
|
+
"react-router-dom": "6.25.1",
|
|
47
44
|
"styled-components": "6.0.7",
|
|
48
45
|
"typescript": "4.9.5",
|
|
49
46
|
"usehooks-ts": "3.1.1",
|
|
@@ -51,11 +48,10 @@
|
|
|
51
48
|
"yaml": "2.7.0"
|
|
52
49
|
},
|
|
53
50
|
"devDependencies": {
|
|
54
|
-
"@ant-design/icons": "5.6.0",
|
|
55
51
|
"@stylelint/postcss-css-in-js": "0.38.0",
|
|
56
|
-
"@testing-library/jest-dom": "6.6.3",
|
|
57
|
-
"@testing-library/react": "16.3.0",
|
|
58
|
-
"@types/jest": "29.5.14",
|
|
52
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
53
|
+
"@testing-library/react": "^16.3.0",
|
|
54
|
+
"@types/jest": "^29.5.14",
|
|
59
55
|
"@types/jsonpath": "0.2.4",
|
|
60
56
|
"@types/lodash": "4.17.13",
|
|
61
57
|
"@types/node": "20.5.4",
|
|
@@ -65,7 +61,6 @@
|
|
|
65
61
|
"@types/styled-components": "5.1.26",
|
|
66
62
|
"@typescript-eslint/eslint-plugin": "8.6.0",
|
|
67
63
|
"@vitejs/plugin-react-swc": "3.7.0",
|
|
68
|
-
"antd": "5.20.0",
|
|
69
64
|
"eslint": "8.57.1",
|
|
70
65
|
"eslint-config-airbnb": "19.0.4",
|
|
71
66
|
"eslint-config-prettier": "9.0.0",
|
|
@@ -74,20 +69,15 @@
|
|
|
74
69
|
"eslint-plugin-prettier": "5.0.0",
|
|
75
70
|
"eslint-plugin-react": "7.33.2",
|
|
76
71
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
77
|
-
"jest": "29.7.0",
|
|
78
|
-
"jest-environment-jsdom": "29.7.0",
|
|
72
|
+
"jest": "^29.7.0",
|
|
73
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
79
74
|
"postcss": "8.5.2",
|
|
80
75
|
"postcss-styled-syntax": "0.7.1",
|
|
81
76
|
"prettier": "3.0.2",
|
|
82
|
-
"react": "18.3.1",
|
|
83
|
-
"react-dom": "18.3.1",
|
|
84
|
-
"react-router-dom": "6.25.1",
|
|
85
77
|
"stylelint": "16.14.1",
|
|
86
78
|
"stylelint-config-standard": "37.0.0",
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"ts-jest": "29.3.2",
|
|
90
|
-
"ts-node": "10.9.2",
|
|
79
|
+
"ts-jest": "^29.3.2",
|
|
80
|
+
"ts-node": "^10.9.2",
|
|
91
81
|
"vite": "5.4.6",
|
|
92
82
|
"vite-plugin-node-polyfills": "0.22.0",
|
|
93
83
|
"vite-tsconfig-paths": "5.0.1"
|