@seeka-labs/sdk-apps-react 3.2.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/LICENSE.md +1 -0
- package/README.md +1 -0
- package/package.json +87 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
No license
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# `@seeka-labs/sdk-apps-react`
|
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@seeka-labs/sdk-apps-react",
|
|
3
|
+
"version": "3.2.3",
|
|
4
|
+
"description": "Seeka - Apps SDK - React",
|
|
5
|
+
"author": "SEEKA <platform@seeka.co>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"apps",
|
|
9
|
+
"seeka",
|
|
10
|
+
"react",
|
|
11
|
+
"ui"
|
|
12
|
+
],
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"src": "src/lib.ts",
|
|
20
|
+
"module": "./dist/lib/sdk-apps-react.module.js",
|
|
21
|
+
"types": "./dist/lib/types/lib.d.ts",
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"@emotion/react": "^11",
|
|
24
|
+
"@emotion/styled": "^11",
|
|
25
|
+
"@mui/icons-material": "^7",
|
|
26
|
+
"@mui/lab": "^7",
|
|
27
|
+
"@mui/material": "^7",
|
|
28
|
+
"@mui/system": "^7",
|
|
29
|
+
"@reduxjs/toolkit": "^2",
|
|
30
|
+
"@seeka-labs/sdk-apps-core": "workspace:* || ^3",
|
|
31
|
+
"lodash-es": "^4",
|
|
32
|
+
"notistack": "^3",
|
|
33
|
+
"query-string": "^9",
|
|
34
|
+
"react": "^18",
|
|
35
|
+
"react-dom": "^18",
|
|
36
|
+
"react-hook-form": "^7",
|
|
37
|
+
"redux": "^5",
|
|
38
|
+
"redux-persist": "^6"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"clean": "rimraf build package dist",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"build": "yarn esbuild src/lib.ts --outfile=dist/lib/sdk-apps-react.module.js --bundle --analyze --platform=browser --format=esm --packages=external --minify --loader:.svg=dataurl && yarn tsc --emitDeclarationOnly && yarn postbuild:fix-dts",
|
|
44
|
+
"dev": "yarn tsc --emitDeclarationOnly && yarn postbuild:fix-dts && yarn esbuild src/lib.ts --outfile=dist/lib/sdk-apps-react.module.js --bundle --analyze --platform=browser --format=esm --packages=external --sourcemap --loader:.svg=dataurl",
|
|
45
|
+
"refreshapi:local": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 SCHEMA_HOST=https://172.22.160.1:22744 npx @rtk-query/codegen-openapi src/api/redux/app/scaffolding/openapi-config.js",
|
|
46
|
+
"refreshapi:prod": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 SCHEMA_HOST=https://api.seeka.services npx @rtk-query/codegen-openapi src/api/redux/app/scaffolding/openapi-config.js",
|
|
47
|
+
"postbuild:fix-dts": "sed -i'' 's|@reduxjs/toolkit/dist/query/react|@reduxjs/toolkit/query/react|g' dist/lib/types/**/*.d.ts",
|
|
48
|
+
"postbuild:fix-dts-windows": "powershell -NoProfile -ExecutionPolicy Bypass -File ./scripts/fix-dts.ps1"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@babel/core": "^7.28.5",
|
|
52
|
+
"@babel/plugin-syntax-flow": "^7.27.1",
|
|
53
|
+
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
|
54
|
+
"@emotion/react": "^11.14.0",
|
|
55
|
+
"@emotion/styled": "^11.14.1",
|
|
56
|
+
"@mui/icons-material": "^7.3.6",
|
|
57
|
+
"@mui/lab": "^7.0.1-beta.20",
|
|
58
|
+
"@mui/material": "^7.3.6",
|
|
59
|
+
"@mui/system": "^7.3.6",
|
|
60
|
+
"@reduxjs/toolkit": "^2.11.2",
|
|
61
|
+
"@rtk-query/codegen-openapi": "^2.2.0",
|
|
62
|
+
"@seeka-labs/sdk-apps-core": "^3.2.3",
|
|
63
|
+
"@types/autosuggest-highlight": "^3.2.3",
|
|
64
|
+
"@types/lodash-es": "^4.17.12",
|
|
65
|
+
"@types/luxon": "^3.7.1",
|
|
66
|
+
"@types/node": "^22",
|
|
67
|
+
"@types/react": "^18.3.27",
|
|
68
|
+
"@types/react-dom": "^18.3.7",
|
|
69
|
+
"cross-env": "^10.1.0",
|
|
70
|
+
"esbuild": "^0.27.2",
|
|
71
|
+
"eslint": "^9.39.2",
|
|
72
|
+
"lodash-es": "^4.17.22",
|
|
73
|
+
"notistack": "^3.0.2",
|
|
74
|
+
"query-string": "^9.3.1",
|
|
75
|
+
"react": "^18.3.1",
|
|
76
|
+
"react-dom": "^18.3.1",
|
|
77
|
+
"react-hook-form": "^7.70.0",
|
|
78
|
+
"redux": "^5",
|
|
79
|
+
"redux-persist": "^6.0.0",
|
|
80
|
+
"rimraf": "^6.1.2",
|
|
81
|
+
"typescript": "^5"
|
|
82
|
+
},
|
|
83
|
+
"gitHead": "2e406e463088cdf6ccdb2e2b15eb35c369b729c0",
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"autosuggest-highlight": "^3.3.4"
|
|
86
|
+
}
|
|
87
|
+
}
|