@lystech/core 3.0.48 → 3.0.50
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/README.md +1 -1
- package/bin/README.md +126 -126
- package/bin/attach.cjs +276 -276
- package/bin/check-pwa.cjs +276 -276
- package/bin/postinstall.cjs +216 -216
- package/bin/setup-github-action.cjs +208 -208
- package/bin/setup-registry.cjs +188 -188
- package/bin/update-lystech-package.yml +114 -114
- package/dist/index.d.ts +39 -1
- package/dist/lystech-core-provider.es.js +7661 -7288
- package/dist/lystech-core-provider.umd.js +133 -133
- package/dist/lystech-core-styles.css +1 -1
- package/package.json +77 -77
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lystech/core",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "Lystech Core contains essentials for lystech apps",
|
|
5
|
-
"license": "ISC",
|
|
6
|
-
"author": "",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "dist/lystech-core-provider.umd.js",
|
|
9
|
-
"module": "dist/lystech-core-provider.es.js",
|
|
10
|
-
"types": "dist/index.d.ts",
|
|
11
|
-
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
13
|
-
},
|
|
14
|
-
"files": [
|
|
15
|
-
"dist",
|
|
16
|
-
"bin"
|
|
17
|
-
],
|
|
18
|
-
"scripts": {
|
|
19
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
-
"build": "vite build",
|
|
21
|
-
"dev": "vite --config vite.config.dev.ts",
|
|
22
|
-
"demo": "vite --config vite.config.demo.ts",
|
|
23
|
-
"preview": "vite preview --config vite.config.dev.ts",
|
|
24
|
-
"deploy": "deploy.bat",
|
|
25
|
-
"check-pwa": "node ./bin/check-pwa.cjs",
|
|
26
|
-
"setup-github-action": "node ./bin/setup-github-action.cjs",
|
|
27
|
-
"setup-auto-update-workflow": "node ./bin/setup-github-action.cjs",
|
|
28
|
-
"postinstall": "node bin/postinstall.cjs",
|
|
29
|
-
"trigger-workflow": "git add -A && (git diff-index --quiet HEAD || git commit -m \"Update changes\") && git pull --rebase && git commit --allow-empty -m \"Trigger GitHub workflow\" && git push"
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"@mantine/core": "^8.1.3",
|
|
33
|
-
"@mantine/dates": "^8.1.3",
|
|
34
|
-
"@paypal/react-paypal-js": "^8.8.3",
|
|
35
|
-
"@phosphor-icons/react": "^2.1.10",
|
|
36
|
-
"@react-oauth/google": "^0.12.1",
|
|
37
|
-
"@tanstack/react-query": "^4.35.0",
|
|
38
|
-
"antd": "^5.12.8",
|
|
39
|
-
"axios": "^1.0.0",
|
|
40
|
-
"firebase": "^9.9.4",
|
|
41
|
-
"jwt-decode": "^4.0.0",
|
|
42
|
-
"moment": "^2.30.1",
|
|
43
|
-
"react-countup": "^6.5.3",
|
|
44
|
-
"vite-plugin-dts": "^4.5.4"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@types/moment": "^2.11.29",
|
|
48
|
-
"@types/node": "^24.0.12",
|
|
49
|
-
"@types/react": "^19.1.8",
|
|
50
|
-
"@vitejs/plugin-react": "^4.6.0",
|
|
51
|
-
"react": "^18.3.1",
|
|
52
|
-
"react-dom": "^18.2.0",
|
|
53
|
-
"sass-embedded": "^1.89.2",
|
|
54
|
-
"typescript": "^5.8.3",
|
|
55
|
-
"vite": "^5.4.19"
|
|
56
|
-
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"react": "^18.3.1",
|
|
59
|
-
"react-dom": "^18.2.0",
|
|
60
|
-
"react-router-dom": "^6.0.0"
|
|
61
|
-
},
|
|
62
|
-
"keywords": [
|
|
63
|
-
"react",
|
|
64
|
-
"provider",
|
|
65
|
-
"context",
|
|
66
|
-
"lystech",
|
|
67
|
-
"vite"
|
|
68
|
-
],
|
|
69
|
-
"bin": {
|
|
70
|
-
"check-pwa": "bin/check-pwa.cjs",
|
|
71
|
-
"lystech-attach": "bin/attach.cjs",
|
|
72
|
-
"lystech-setup-github-action": "bin/setup-github-action.cjs",
|
|
73
|
-
"lystech-auto-update-init": "bin/setup-github-action.cjs",
|
|
74
|
-
"lystech-setup-registry": "bin/setup-registry.cjs",
|
|
75
|
-
"lystechcorenpmpackage": "bin/setup-github-action.cjs"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@lystech/core",
|
|
3
|
+
"version": "3.0.50",
|
|
4
|
+
"description": "Lystech Core contains essentials for lystech apps",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/lystech-core-provider.umd.js",
|
|
9
|
+
"module": "dist/lystech-core-provider.es.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"bin"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"dev": "vite --config vite.config.dev.ts",
|
|
22
|
+
"demo": "vite --config vite.config.demo.ts",
|
|
23
|
+
"preview": "vite preview --config vite.config.dev.ts",
|
|
24
|
+
"deploy": "deploy.bat",
|
|
25
|
+
"check-pwa": "node ./bin/check-pwa.cjs",
|
|
26
|
+
"setup-github-action": "node ./bin/setup-github-action.cjs",
|
|
27
|
+
"setup-auto-update-workflow": "node ./bin/setup-github-action.cjs",
|
|
28
|
+
"postinstall": "node bin/postinstall.cjs",
|
|
29
|
+
"trigger-workflow": "git add -A && (git diff-index --quiet HEAD || git commit -m \"Update changes\") && git pull --rebase && git commit --allow-empty -m \"Trigger GitHub workflow\" && git push"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@mantine/core": "^8.1.3",
|
|
33
|
+
"@mantine/dates": "^8.1.3",
|
|
34
|
+
"@paypal/react-paypal-js": "^8.8.3",
|
|
35
|
+
"@phosphor-icons/react": "^2.1.10",
|
|
36
|
+
"@react-oauth/google": "^0.12.1",
|
|
37
|
+
"@tanstack/react-query": "^4.35.0",
|
|
38
|
+
"antd": "^5.12.8",
|
|
39
|
+
"axios": "^1.0.0",
|
|
40
|
+
"firebase": "^9.9.4",
|
|
41
|
+
"jwt-decode": "^4.0.0",
|
|
42
|
+
"moment": "^2.30.1",
|
|
43
|
+
"react-countup": "^6.5.3",
|
|
44
|
+
"vite-plugin-dts": "^4.5.4"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/moment": "^2.11.29",
|
|
48
|
+
"@types/node": "^24.0.12",
|
|
49
|
+
"@types/react": "^19.1.8",
|
|
50
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
51
|
+
"react": "^18.3.1",
|
|
52
|
+
"react-dom": "^18.2.0",
|
|
53
|
+
"sass-embedded": "^1.89.2",
|
|
54
|
+
"typescript": "^5.8.3",
|
|
55
|
+
"vite": "^5.4.19"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"react": "^18.3.1",
|
|
59
|
+
"react-dom": "^18.2.0",
|
|
60
|
+
"react-router-dom": "^6.0.0"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"react",
|
|
64
|
+
"provider",
|
|
65
|
+
"context",
|
|
66
|
+
"lystech",
|
|
67
|
+
"vite"
|
|
68
|
+
],
|
|
69
|
+
"bin": {
|
|
70
|
+
"check-pwa": "bin/check-pwa.cjs",
|
|
71
|
+
"lystech-attach": "bin/attach.cjs",
|
|
72
|
+
"lystech-setup-github-action": "bin/setup-github-action.cjs",
|
|
73
|
+
"lystech-auto-update-init": "bin/setup-github-action.cjs",
|
|
74
|
+
"lystech-setup-registry": "bin/setup-registry.cjs",
|
|
75
|
+
"lystechcorenpmpackage": "bin/setup-github-action.cjs"
|
|
76
|
+
}
|
|
77
|
+
}
|