wcz-test 3.4.9 → 4.0.1
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/index.cjs +3654 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +426 -0
- package/dist/index.d.ts +426 -0
- package/dist/index.js +3312 -0
- package/dist/index.js.map +1 -0
- package/package.json +83 -84
package/package.json
CHANGED
|
@@ -1,85 +1,84 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "wcz-test",
|
|
3
|
-
"displayName": "WCZ Layout",
|
|
4
|
-
"version": "
|
|
5
|
-
"private": false,
|
|
6
|
-
"sideEffects": false,
|
|
7
|
-
"type": "module",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"i18next
|
|
33
|
-
"i18next-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@types/
|
|
50
|
-
"@
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"eslint
|
|
55
|
-
"eslint-plugin-
|
|
56
|
-
"eslint-plugin-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"vite-
|
|
64
|
-
"vite-plugin-
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"@emotion/
|
|
70
|
-
"@
|
|
71
|
-
"@mui/
|
|
72
|
-
"@mui/
|
|
73
|
-
"@mui/x-
|
|
74
|
-
"@
|
|
75
|
-
"@tanstack/react-
|
|
76
|
-
"@tanstack/react-
|
|
77
|
-
"@tanstack/react-
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"react": "19.x",
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "wcz-test",
|
|
3
|
+
"displayName": "WCZ Layout",
|
|
4
|
+
"version": "4.0.1",
|
|
5
|
+
"private": false,
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.cjs",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"require": "./dist/index.cjs"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite dev",
|
|
23
|
+
"prepublishOnly": "tsup ./src/index.ts --dts",
|
|
24
|
+
"npm-install": "npm install",
|
|
25
|
+
"npm-update": "npm update",
|
|
26
|
+
"lint-fix": "eslint --fix \"src/**/*.{ts,tsx}\""
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@tanstack/react-router-ssr-query": "^1.131.14",
|
|
30
|
+
"axios": "^1.8.4",
|
|
31
|
+
"file-saver": "^2.0.5",
|
|
32
|
+
"i18next": "^25.0.0",
|
|
33
|
+
"i18next-browser-languagedetector": "^8.0.4",
|
|
34
|
+
"i18next-http-backend": "^3.0.2",
|
|
35
|
+
"jwt-decode": "^4.0.0",
|
|
36
|
+
"keycloak-js": "^26.2.0",
|
|
37
|
+
"next-auth": "5.0.0-beta.29",
|
|
38
|
+
"react-dropzone": "^14.3.8",
|
|
39
|
+
"react-i18next": "^15.4.1",
|
|
40
|
+
"react-number-format": "^5.4.4",
|
|
41
|
+
"tus-js-client": "^4.3.1",
|
|
42
|
+
"use-local-storage-state": "^19.5.0",
|
|
43
|
+
"uuidv7": "^1.0.2"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@eslint/js": "^9.28.0",
|
|
47
|
+
"@tanstack/eslint-plugin-query": "^5.78.0",
|
|
48
|
+
"@tanstack/eslint-plugin-router": "^1.120.17",
|
|
49
|
+
"@types/file-saver": "^2.0.7",
|
|
50
|
+
"@types/node": "^22.5.4",
|
|
51
|
+
"@types/react": "^19.0.8",
|
|
52
|
+
"@types/react-dom": "^19.0.3",
|
|
53
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
54
|
+
"eslint": "^9.28.0",
|
|
55
|
+
"eslint-plugin-import": "^2.31.0",
|
|
56
|
+
"eslint-plugin-react": "^7.37.5",
|
|
57
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
58
|
+
"eslint-plugin-unicorn": "^59.0.1",
|
|
59
|
+
"react-markdown": "^10.1.0",
|
|
60
|
+
"tsup": "^8.5.0",
|
|
61
|
+
"typescript": "^5.7.2",
|
|
62
|
+
"typescript-eslint": "^8.33.1",
|
|
63
|
+
"vite-plugin-checker": "^0.9.3",
|
|
64
|
+
"vite-plugin-pwa": "^1.0.2",
|
|
65
|
+
"vite-tsconfig-paths": "^5.1.4"
|
|
66
|
+
},
|
|
67
|
+
"peerDependencies": {
|
|
68
|
+
"@emotion/react": "11.x",
|
|
69
|
+
"@emotion/styled": "11.x",
|
|
70
|
+
"@mui/icons-material": "7.x",
|
|
71
|
+
"@mui/material": "7.x",
|
|
72
|
+
"@mui/x-data-grid-premium": "8.x",
|
|
73
|
+
"@mui/x-date-pickers-pro": "8.x",
|
|
74
|
+
"@tanstack/react-form": "1.x",
|
|
75
|
+
"@tanstack/react-query": "5.x",
|
|
76
|
+
"@tanstack/react-router": "1.x",
|
|
77
|
+
"@tanstack/react-start": "1.x",
|
|
78
|
+
"dayjs": "1.x",
|
|
79
|
+
"react": "19.x",
|
|
80
|
+
"react-dom": "19.x",
|
|
81
|
+
"vite": "7.x",
|
|
82
|
+
"zod": "4.x"
|
|
83
|
+
}
|
|
85
84
|
}
|