Commit fb51fc1e10c56e2ee40b060923bc75f1f7bc6d90
1 parent
c42f6012
refactor: 迁移至 Biome 并移除 ESLint 和 Prettier
将代码格式化与 linting 工具从 ESLint 和 Prettier 迁移至 Biome,并删除相关配置文件。更新了 VSCode 设置和 package.json 以适配新的工具链
Showing
11 changed files
with
1324 additions
and
1453 deletions
.eslintignore deleted
.eslintrc.js deleted
.lintstagedrc
1 | 1 | { |
2 | - "*.{md,json}": ["prettier --cache --write"], | |
3 | - "*.{js,jsx}": ["eslint --color --cache --fix", "prettier --cache --write"], | |
4 | - "*.ts?(x)": [ | |
5 | - "eslint --color --cache --fix ", | |
6 | - "prettier --cache --parser=typescript --write" | |
7 | - ] | |
2 | + "*.{md,json}": ["biome format --write"], | |
3 | + "*.{js,jsx}": ["biome lint ", "biome format --write"], | |
4 | + "*.ts?(x)": ["biome lint ", "biome format --write"] | |
8 | 5 | } | ... | ... |
.prettierignore deleted
.prettierrc.js deleted
.vscode/extensions.json
... | ... | @@ -3,9 +3,6 @@ |
3 | 3 | "eamodio.gitlens", |
4 | 4 | "styled-components.vscode-styled-components", |
5 | 5 | "EditorConfig.editorconfig", |
6 | - "dbaeumer.vscode-eslint", | |
7 | - "esbenp.prettier-vscode", | |
8 | - "rvest.vs-code-prettier-eslint", | |
9 | 6 | "streetsidesoftware.code-spell-checker", |
10 | 7 | "codezombiech.gitignore", |
11 | 8 | "aaron-bond.better-comments", |
... | ... | @@ -13,6 +10,7 @@ |
13 | 10 | "jock.svg", |
14 | 11 | "mikestead.dotenv", |
15 | 12 | "PKief.material-icon-theme", |
16 | - "bradlc.vscode-tailwindcss" | |
13 | + "bradlc.vscode-tailwindcss", | |
14 | + "biomejs.biome" | |
17 | 15 | ] |
18 | 16 | } | ... | ... |
.vscode/settings.json
... | ... | @@ -22,56 +22,27 @@ |
22 | 22 | "files.insertFinalNewline": true, |
23 | 23 | // |
24 | 24 | "cSpell.diagnosticLevel": "Hint", |
25 | - "eslint.run": "onType", | |
26 | - "eslint.probe": [ | |
27 | - "javascript", | |
28 | - "javascriptreact", | |
29 | - "typescript", | |
30 | - "typescriptreact", | |
31 | - "vue" | |
32 | - ], | |
33 | - "eslint.format.enable": true, | |
34 | - "eslint.lintTask.enable": true, | |
35 | 25 | "javascript.validate.enable": false, |
36 | 26 | "typescript.validate.enable": true, |
37 | 27 | "css.validate": false, |
38 | 28 | "scss.validate": false, |
39 | 29 | "less.validate": false, |
40 | - "[css]": { | |
41 | - "editor.formatOnType": true, | |
42 | - "editor.formatOnPaste": true, | |
43 | - "editor.formatOnSave": true | |
44 | - }, | |
45 | - "[scss]": { | |
46 | - "editor.formatOnType": true, | |
47 | - "editor.formatOnPaste": true, | |
48 | - "editor.formatOnSave": true | |
49 | - }, | |
50 | - "[less]": { | |
51 | - "editor.formatOnType": true, | |
52 | - "editor.formatOnPaste": true, | |
53 | - "editor.formatOnSave": true | |
54 | - }, | |
55 | - "editor.codeActionsOnSave": { | |
56 | - "source.fixAll.eslint": "explicit" | |
57 | - }, | |
58 | - "editor.defaultFormatter": "esbenp.prettier-vscode", | |
59 | 30 | "javascript.format.enable": false, |
60 | 31 | "typescript.format.enable": false, |
61 | 32 | // |
62 | 33 | "json.format.enable": false, |
63 | - "[json]": { | |
64 | - "editor.tabSize": 2, | |
65 | - "editor.formatOnType": true, | |
66 | - "editor.formatOnPaste": true, | |
67 | - "editor.formatOnSave": true | |
34 | + "emmet.triggerExpansionOnTab": true, | |
35 | + "eslint.enable": false, | |
36 | + "biome.enabled": true, | |
37 | + "typescript.tsdk": "node_modules/typescript/lib", | |
38 | + "editor.defaultFormatter": "biomejs.biome", | |
39 | + "[typescriptreact]": { | |
40 | + "editor.defaultFormatter": "biomejs.biome" | |
68 | 41 | }, |
69 | - "[jsonc]": { | |
70 | - "editor.tabSize": 2, | |
71 | - "editor.formatOnType": true, | |
72 | - "editor.formatOnPaste": true, | |
73 | - "editor.formatOnSave": true | |
42 | + "[javascript]": { | |
43 | + "editor.defaultFormatter": "biomejs.biome" | |
74 | 44 | }, |
75 | - "emmet.triggerExpansionOnTab": true, | |
76 | - "typescript.tsdk": "node_modules/typescript/lib" | |
45 | + "[json]": { | |
46 | + "editor.defaultFormatter": "biomejs.biome" | |
47 | + } | |
77 | 48 | } | ... | ... |
biome.json
0 → 100644
1 | +{ | |
2 | + "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | |
3 | + "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, | |
4 | + "files": { | |
5 | + "ignoreUnknown": false, | |
6 | + "ignore": [ | |
7 | + "**/build/**", | |
8 | + "**/tests/**", | |
9 | + "**/demo/**", | |
10 | + "**/dist/**", | |
11 | + "**/node_modules/**", | |
12 | + "**/script/**", | |
13 | + "**/coverage/**", | |
14 | + "**/*.min.js", | |
15 | + "**/environment.d.ts", | |
16 | + "**/*.js" | |
17 | + ] | |
18 | + }, | |
19 | + "formatter": { | |
20 | + "enabled": true, | |
21 | + "useEditorconfig": true, | |
22 | + "formatWithErrors": false, | |
23 | + "indentStyle": "space", | |
24 | + "indentWidth": 2, | |
25 | + "lineEnding": "lf", | |
26 | + "lineWidth": 150, | |
27 | + "attributePosition": "auto", | |
28 | + "bracketSpacing": true | |
29 | + }, | |
30 | + "organizeImports": { "enabled": true }, | |
31 | + "linter": { | |
32 | + "enabled": true, | |
33 | + "rules": { | |
34 | + "recommended": false, | |
35 | + "complexity": { | |
36 | + "noBannedTypes": "error", | |
37 | + "noStaticOnlyClass": "off", | |
38 | + "noUselessConstructor": "error", | |
39 | + "noUselessTypeConstraint": "off", | |
40 | + "useLiteralKeys": "off", | |
41 | + "useOptionalChain": "off" | |
42 | + }, | |
43 | + "correctness": { | |
44 | + "noInvalidUseBeforeDeclaration": "error", | |
45 | + "noPrecisionLoss": "off", | |
46 | + "noUndeclaredVariables": "off", | |
47 | + "noUnusedVariables": "warn", | |
48 | + "useArrayLiterals": "off" | |
49 | + }, | |
50 | + "style": { | |
51 | + "noInferrableTypes": "off", | |
52 | + "noNamespace": "warn", | |
53 | + "noNonNullAssertion": "off", | |
54 | + "useAsConstAssertion": "off", | |
55 | + "useBlockStatements": "off", | |
56 | + "useConsistentArrayType": "error", | |
57 | + "useDefaultParameterLast": "off", | |
58 | + "useEnumInitializers": "off", | |
59 | + "useForOf": "off", | |
60 | + "useLiteralEnumMembers": "off", | |
61 | + "useShorthandFunctionType": "off" | |
62 | + }, | |
63 | + "suspicious": { | |
64 | + "noConfusingVoidType": "off", | |
65 | + "noDuplicateClassMembers": "error", | |
66 | + "noEmptyBlockStatements": "off", | |
67 | + "noExplicitAny": "off", | |
68 | + "noExtraNonNullAssertion": "off", | |
69 | + "noMisleadingInstantiator": "error", | |
70 | + "noRedeclare": "error", | |
71 | + "useAwait": "off", | |
72 | + "useNamespaceKeyword": "off" | |
73 | + } | |
74 | + } | |
75 | + }, | |
76 | + "javascript": { | |
77 | + "formatter": { | |
78 | + "jsxQuoteStyle": "double", | |
79 | + "quoteProperties": "asNeeded", | |
80 | + "trailingCommas": "all", | |
81 | + "semicolons": "asNeeded", | |
82 | + "arrowParentheses": "asNeeded", | |
83 | + "bracketSameLine": false, | |
84 | + "quoteStyle": "single", | |
85 | + "attributePosition": "auto", | |
86 | + "bracketSpacing": true | |
87 | + } | |
88 | + }, | |
89 | + "overrides": [ | |
90 | + { | |
91 | + "include": ["*.ts", "*.tsx", "*.mts", "*.cts"], | |
92 | + "linter": { | |
93 | + "rules": { | |
94 | + "correctness": { | |
95 | + "noConstAssign": "off", | |
96 | + "noGlobalObjectCalls": "off", | |
97 | + "noInvalidConstructorSuper": "off", | |
98 | + "noNewSymbol": "off", | |
99 | + "noSetterReturn": "off", | |
100 | + "noUndeclaredVariables": "off", | |
101 | + "noUnreachable": "off", | |
102 | + "noUnreachableSuper": "off" | |
103 | + }, | |
104 | + "style": { "noArguments": "error", "noVar": "error", "useConst": "error" }, | |
105 | + "suspicious": { | |
106 | + "noDuplicateClassMembers": "off", | |
107 | + "noDuplicateObjectKeys": "off", | |
108 | + "noDuplicateParameters": "off", | |
109 | + "noFunctionAssign": "off", | |
110 | + "noImportAssign": "off", | |
111 | + "noRedeclare": "off", | |
112 | + "noUnsafeNegation": "off", | |
113 | + "useGetterReturn": "off", | |
114 | + "useValidTypeof": "off" | |
115 | + } | |
116 | + } | |
117 | + } | |
118 | + } | |
119 | + ] | |
120 | +} | ... | ... |
package.json
... | ... | @@ -11,8 +11,8 @@ |
11 | 11 | "build:ultra": "cross-env MODERN_ENV=ultra modern build", |
12 | 12 | "serve": "modern serve", |
13 | 13 | "new": "modern new", |
14 | - "lint": "modern lint", | |
15 | - "prepare": "husky install", | |
14 | + "lint": "biome lint .", | |
15 | + "prepare": "husky", | |
16 | 16 | "preinstall": "node ./script/preinstall.js", |
17 | 17 | "upgrade": "modern upgrade", |
18 | 18 | "test": "modern test" |
... | ... | @@ -20,15 +20,11 @@ |
20 | 20 | "engines": { |
21 | 21 | "node": ">=18.0.0" |
22 | 22 | }, |
23 | - "eslintIgnore": [ | |
24 | - "node_modules/", | |
25 | - "dist/" | |
26 | - ], | |
27 | 23 | "dependencies": { |
28 | 24 | "@ant-design/cssinjs": "^1.22.1", |
29 | 25 | "@ant-design/icons": "^5.5.2", |
30 | 26 | "@feewee/h5app-common": "latest", |
31 | - "@modern-js/runtime": "~2.63.4", | |
27 | + "@modern-js/runtime": "~2.67.0", | |
32 | 28 | "ahooks": "^3.8.4", |
33 | 29 | "antd": "^5.22.7", |
34 | 30 | "clsx": "^2.1.1", |
... | ... | @@ -40,13 +36,12 @@ |
40 | 36 | "use-immer": "^0.9.0" |
41 | 37 | }, |
42 | 38 | "devDependencies": { |
39 | + "@biomejs/biome": "1.9.4", | |
43 | 40 | "@feewee/fabric": "^1.1.8", |
44 | - "@modern-js-app/eslint-config": "~2.59.0", | |
45 | - "@modern-js/app-tools": "~2.63.4", | |
46 | - "@modern-js/eslint-config": "~2.59.0", | |
47 | - "@modern-js/plugin-polyfill": "~2.63.4", | |
48 | - "@modern-js/plugin-tailwindcss": "~2.63.4", | |
49 | - "@modern-js/tsconfig": "~2.63.4", | |
41 | + "@modern-js/app-tools": "~2.67.0", | |
42 | + "@modern-js/plugin-polyfill": "~2.67.0", | |
43 | + "@modern-js/plugin-tailwindcss": "~2.67.0", | |
44 | + "@modern-js/tsconfig": "~2.67.0", | |
50 | 45 | "@rsdoctor/rspack-plugin": "^0.4.12", |
51 | 46 | "@types/jest": "^29.5.14", |
52 | 47 | "@types/lodash": "^4.17.13", |
... | ... | @@ -54,10 +49,8 @@ |
54 | 49 | "@types/react": "^18.3.18", |
55 | 50 | "@types/react-dom": "^18.3.5", |
56 | 51 | "cross-env": "^7.0.3", |
57 | - "eslint": "^8.57.1", | |
58 | 52 | "husky": "^9.1.7", |
59 | 53 | "lint-staged": "^15.2.11", |
60 | - "prettier": "^3.4.2", | |
61 | 54 | "rimraf": "^5.0.10", |
62 | 55 | "tailwindcss": "^3.4.17", |
63 | 56 | "typescript": "^5.7.2" | ... | ... |
pnpm-lock.yaml
... | ... | @@ -18,8 +18,8 @@ importers: |
18 | 18 | specifier: latest |
19 | 19 | version: 0.2.38(antd@5.22.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) |
20 | 20 | '@modern-js/runtime': |
21 | - specifier: ~2.63.4 | |
22 | - version: 2.63.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
21 | + specifier: ~2.67.0 | |
22 | + version: 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
23 | 23 | ahooks: |
24 | 24 | specifier: ^3.8.4 |
25 | 25 | version: 3.8.4(react@18.3.1) |
... | ... | @@ -48,30 +48,27 @@ importers: |
48 | 48 | specifier: ^0.9.0 |
49 | 49 | version: 0.9.0(immer@10.1.1)(react@18.3.1) |
50 | 50 | devDependencies: |
51 | + '@biomejs/biome': | |
52 | + specifier: 1.9.4 | |
53 | + version: 1.9.4 | |
51 | 54 | '@feewee/fabric': |
52 | 55 | specifier: ^1.1.8 |
53 | 56 | version: 1.1.8 |
54 | - '@modern-js-app/eslint-config': | |
55 | - specifier: ~2.59.0 | |
56 | - version: 2.59.0(typescript@5.7.2) | |
57 | 57 | '@modern-js/app-tools': |
58 | - specifier: ~2.63.4 | |
59 | - version: 2.63.4(@rspack/core@1.1.8(@swc/helpers@0.5.15))(@types/webpack@5.28.5(esbuild@0.17.19))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(tsconfig-paths@4.2.0)(type-fest@1.4.0)(typescript@5.7.2) | |
60 | - '@modern-js/eslint-config': | |
61 | - specifier: ~2.59.0 | |
62 | - version: 2.59.0(typescript@5.7.2) | |
58 | + specifier: ~2.67.0 | |
59 | + version: 2.67.2(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@types/webpack@5.28.5(esbuild@0.17.19))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(tsconfig-paths@4.2.0)(type-fest@1.4.0)(typescript@5.7.2) | |
63 | 60 | '@modern-js/plugin-polyfill': |
64 | - specifier: ~2.63.4 | |
65 | - version: 2.63.4 | |
61 | + specifier: ~2.67.0 | |
62 | + version: 2.67.2 | |
66 | 63 | '@modern-js/plugin-tailwindcss': |
67 | - specifier: ~2.63.4 | |
68 | - version: 2.63.4(@modern-js/runtime@2.63.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17) | |
64 | + specifier: ~2.67.0 | |
65 | + version: 2.67.2(@modern-js/runtime@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17) | |
69 | 66 | '@modern-js/tsconfig': |
70 | - specifier: ~2.63.4 | |
71 | - version: 2.63.4 | |
67 | + specifier: ~2.67.0 | |
68 | + version: 2.67.2 | |
72 | 69 | '@rsdoctor/rspack-plugin': |
73 | 70 | specifier: ^0.4.12 |
74 | - version: 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
71 | + version: 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
75 | 72 | '@types/jest': |
76 | 73 | specifier: ^29.5.14 |
77 | 74 | version: 29.5.14 |
... | ... | @@ -90,18 +87,12 @@ importers: |
90 | 87 | cross-env: |
91 | 88 | specifier: ^7.0.3 |
92 | 89 | version: 7.0.3 |
93 | - eslint: | |
94 | - specifier: ^8.57.1 | |
95 | - version: 8.57.1 | |
96 | 90 | husky: |
97 | 91 | specifier: ^9.1.7 |
98 | 92 | version: 9.1.7 |
99 | 93 | lint-staged: |
100 | 94 | specifier: ^15.2.11 |
101 | 95 | version: 15.2.11 |
102 | - prettier: | |
103 | - specifier: ^3.4.2 | |
104 | - version: 3.4.2 | |
105 | 96 | rimraf: |
106 | 97 | specifier: ^5.0.10 |
107 | 98 | version: 5.0.10 |
... | ... | @@ -168,10 +159,18 @@ packages: |
168 | 159 | resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} |
169 | 160 | engines: {node: '>=6.9.0'} |
170 | 161 | |
162 | + '@babel/compat-data@7.26.8': | |
163 | + resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} | |
164 | + engines: {node: '>=6.9.0'} | |
165 | + | |
171 | 166 | '@babel/core@7.26.0': |
172 | 167 | resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} |
173 | 168 | engines: {node: '>=6.9.0'} |
174 | 169 | |
170 | + '@babel/core@7.26.10': | |
171 | + resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} | |
172 | + engines: {node: '>=6.9.0'} | |
173 | + | |
175 | 174 | '@babel/eslint-parser@7.25.9': |
176 | 175 | resolution: {integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==} |
177 | 176 | engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} |
... | ... | @@ -190,6 +189,10 @@ packages: |
190 | 189 | resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} |
191 | 190 | engines: {node: '>=6.9.0'} |
192 | 191 | |
192 | + '@babel/generator@7.27.0': | |
193 | + resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} | |
194 | + engines: {node: '>=6.9.0'} | |
195 | + | |
193 | 196 | '@babel/helper-annotate-as-pure@7.25.9': |
194 | 197 | resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} |
195 | 198 | engines: {node: '>=6.9.0'} |
... | ... | @@ -198,12 +201,22 @@ packages: |
198 | 201 | resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} |
199 | 202 | engines: {node: '>=6.9.0'} |
200 | 203 | |
204 | + '@babel/helper-compilation-targets@7.27.0': | |
205 | + resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} | |
206 | + engines: {node: '>=6.9.0'} | |
207 | + | |
201 | 208 | '@babel/helper-create-class-features-plugin@7.25.9': |
202 | 209 | resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} |
203 | 210 | engines: {node: '>=6.9.0'} |
204 | 211 | peerDependencies: |
205 | 212 | '@babel/core': ^7.0.0 |
206 | 213 | |
214 | + '@babel/helper-create-class-features-plugin@7.27.0': | |
215 | + resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==} | |
216 | + engines: {node: '>=6.9.0'} | |
217 | + peerDependencies: | |
218 | + '@babel/core': ^7.0.0 | |
219 | + | |
207 | 220 | '@babel/helper-create-regexp-features-plugin@7.26.3': |
208 | 221 | resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} |
209 | 222 | engines: {node: '>=6.9.0'} |
... | ... | @@ -237,6 +250,10 @@ packages: |
237 | 250 | resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} |
238 | 251 | engines: {node: '>=6.9.0'} |
239 | 252 | |
253 | + '@babel/helper-plugin-utils@7.26.5': | |
254 | + resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} | |
255 | + engines: {node: '>=6.9.0'} | |
256 | + | |
240 | 257 | '@babel/helper-remap-async-to-generator@7.25.9': |
241 | 258 | resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} |
242 | 259 | engines: {node: '>=6.9.0'} |
... | ... | @@ -249,6 +266,12 @@ packages: |
249 | 266 | peerDependencies: |
250 | 267 | '@babel/core': ^7.0.0 |
251 | 268 | |
269 | + '@babel/helper-replace-supers@7.26.5': | |
270 | + resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==} | |
271 | + engines: {node: '>=6.9.0'} | |
272 | + peerDependencies: | |
273 | + '@babel/core': ^7.0.0 | |
274 | + | |
252 | 275 | '@babel/helper-skip-transparent-expression-wrappers@7.25.9': |
253 | 276 | resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} |
254 | 277 | engines: {node: '>=6.9.0'} |
... | ... | @@ -273,6 +296,10 @@ packages: |
273 | 296 | resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} |
274 | 297 | engines: {node: '>=6.9.0'} |
275 | 298 | |
299 | + '@babel/helpers@7.27.0': | |
300 | + resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} | |
301 | + engines: {node: '>=6.9.0'} | |
302 | + | |
276 | 303 | '@babel/highlight@7.25.9': |
277 | 304 | resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} |
278 | 305 | engines: {node: '>=6.9.0'} |
... | ... | @@ -282,6 +309,11 @@ packages: |
282 | 309 | engines: {node: '>=6.0.0'} |
283 | 310 | hasBin: true |
284 | 311 | |
312 | + '@babel/parser@7.27.0': | |
313 | + resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} | |
314 | + engines: {node: '>=6.0.0'} | |
315 | + hasBin: true | |
316 | + | |
285 | 317 | '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': |
286 | 318 | resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} |
287 | 319 | engines: {node: '>=6.9.0'} |
... | ... | @@ -701,6 +733,12 @@ packages: |
701 | 733 | peerDependencies: |
702 | 734 | '@babel/core': ^7.0.0-0 |
703 | 735 | |
736 | + '@babel/plugin-transform-typescript@7.27.0': | |
737 | + resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==} | |
738 | + engines: {node: '>=6.9.0'} | |
739 | + peerDependencies: | |
740 | + '@babel/core': ^7.0.0-0 | |
741 | + | |
704 | 742 | '@babel/plugin-transform-unicode-escapes@7.25.9': |
705 | 743 | resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} |
706 | 744 | engines: {node: '>=6.9.0'} |
... | ... | @@ -748,6 +786,12 @@ packages: |
748 | 786 | peerDependencies: |
749 | 787 | '@babel/core': ^7.0.0-0 |
750 | 788 | |
789 | + '@babel/preset-typescript@7.27.0': | |
790 | + resolution: {integrity: sha512-vxaPFfJtHhgeOVXRKuHpHPAOgymmy8V8I65T1q53R7GCZlefKeCaTyDs3zOPHTTbmquvNlQYC5klEvWsBAtrBQ==} | |
791 | + engines: {node: '>=6.9.0'} | |
792 | + peerDependencies: | |
793 | + '@babel/core': ^7.0.0-0 | |
794 | + | |
751 | 795 | '@babel/register@7.25.9': |
752 | 796 | resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==} |
753 | 797 | engines: {node: '>=6.9.0'} |
... | ... | @@ -762,14 +806,83 @@ packages: |
762 | 806 | resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} |
763 | 807 | engines: {node: '>=6.9.0'} |
764 | 808 | |
809 | + '@babel/template@7.27.0': | |
810 | + resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} | |
811 | + engines: {node: '>=6.9.0'} | |
812 | + | |
765 | 813 | '@babel/traverse@7.26.4': |
766 | 814 | resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} |
767 | 815 | engines: {node: '>=6.9.0'} |
768 | 816 | |
817 | + '@babel/traverse@7.27.0': | |
818 | + resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} | |
819 | + engines: {node: '>=6.9.0'} | |
820 | + | |
769 | 821 | '@babel/types@7.26.3': |
770 | 822 | resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} |
771 | 823 | engines: {node: '>=6.9.0'} |
772 | 824 | |
825 | + '@babel/types@7.27.0': | |
826 | + resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} | |
827 | + engines: {node: '>=6.9.0'} | |
828 | + | |
829 | + '@biomejs/biome@1.9.4': | |
830 | + resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==} | |
831 | + engines: {node: '>=14.21.3'} | |
832 | + hasBin: true | |
833 | + | |
834 | + '@biomejs/cli-darwin-arm64@1.9.4': | |
835 | + resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==} | |
836 | + engines: {node: '>=14.21.3'} | |
837 | + cpu: [arm64] | |
838 | + os: [darwin] | |
839 | + | |
840 | + '@biomejs/cli-darwin-x64@1.9.4': | |
841 | + resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==} | |
842 | + engines: {node: '>=14.21.3'} | |
843 | + cpu: [x64] | |
844 | + os: [darwin] | |
845 | + | |
846 | + '@biomejs/cli-linux-arm64-musl@1.9.4': | |
847 | + resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==} | |
848 | + engines: {node: '>=14.21.3'} | |
849 | + cpu: [arm64] | |
850 | + os: [linux] | |
851 | + libc: [musl] | |
852 | + | |
853 | + '@biomejs/cli-linux-arm64@1.9.4': | |
854 | + resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==} | |
855 | + engines: {node: '>=14.21.3'} | |
856 | + cpu: [arm64] | |
857 | + os: [linux] | |
858 | + libc: [glibc] | |
859 | + | |
860 | + '@biomejs/cli-linux-x64-musl@1.9.4': | |
861 | + resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==} | |
862 | + engines: {node: '>=14.21.3'} | |
863 | + cpu: [x64] | |
864 | + os: [linux] | |
865 | + libc: [musl] | |
866 | + | |
867 | + '@biomejs/cli-linux-x64@1.9.4': | |
868 | + resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==} | |
869 | + engines: {node: '>=14.21.3'} | |
870 | + cpu: [x64] | |
871 | + os: [linux] | |
872 | + libc: [glibc] | |
873 | + | |
874 | + '@biomejs/cli-win32-arm64@1.9.4': | |
875 | + resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==} | |
876 | + engines: {node: '>=14.21.3'} | |
877 | + cpu: [arm64] | |
878 | + os: [win32] | |
879 | + | |
880 | + '@biomejs/cli-win32-x64@1.9.4': | |
881 | + resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==} | |
882 | + engines: {node: '>=14.21.3'} | |
883 | + cpu: [x64] | |
884 | + os: [win32] | |
885 | + | |
773 | 886 | '@bufbuild/protobuf@2.2.3': |
774 | 887 | resolution: {integrity: sha512-tFQoXHJdkEOSwj5tRIZSPNUuXK3RaR7T1nUrPgbYX1pUbvqqaaZAsfo+NXBPsz5rZMSKVFrgK1WL8Q/MSLvprg==} |
775 | 888 | |
... | ... | @@ -1067,10 +1180,6 @@ packages: |
1067 | 1180 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} |
1068 | 1181 | engines: {node: '>=12'} |
1069 | 1182 | |
1070 | - '@isaacs/fs-minipass@4.0.1': | |
1071 | - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} | |
1072 | - engines: {node: '>=18.0.0'} | |
1073 | - | |
1074 | 1183 | '@jest/expect-utils@29.7.0': |
1075 | 1184 | resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} |
1076 | 1185 | engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} |
... | ... | @@ -1148,54 +1257,8 @@ packages: |
1148 | 1257 | resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} |
1149 | 1258 | hasBin: true |
1150 | 1259 | |
1151 | - '@mapbox/node-pre-gyp@2.0.0-rc.0': | |
1152 | - resolution: {integrity: sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==} | |
1153 | - engines: {node: '>=18'} | |
1154 | - hasBin: true | |
1155 | - | |
1156 | - '@modern-js-app/eslint-config@2.59.0': | |
1157 | - resolution: {integrity: sha512-kWUkFuOEtJCUlJaiMYZF9kRuTN8XdoumO5E4ejLRnoBZlDVSKt0k287wxaMelIYKWPwlZGj2+CjcUV5BUIWWrQ==} | |
1158 | - peerDependencies: | |
1159 | - typescript: ^4 || ^5 | |
1160 | - | |
1161 | - '@modern-js-reduck/plugin-auto-actions@1.1.11': | |
1162 | - resolution: {integrity: sha512-Xn13uPuFh+UnV3BC6tO4N1sC5+aITX2zj5QDwU0wJgc/5zBz9fcElfQ8B+kvQe0/0VlY0ENArmFIl2h1N5TIkQ==} | |
1163 | - peerDependencies: | |
1164 | - '@modern-js-reduck/store': ^1.1.11 | |
1165 | - | |
1166 | - '@modern-js-reduck/plugin-devtools@1.1.11': | |
1167 | - resolution: {integrity: sha512-PEyJ1/K2wKtXV/JtaFGBC2fUGeY6hjnK/ZXt6p9O2HG3WOub3l76uYpR6B8QCu00+cIWph4MspgO9lHMAuQA8Q==} | |
1168 | - peerDependencies: | |
1169 | - '@modern-js-reduck/store': ^1.1.11 | |
1170 | - | |
1171 | - '@modern-js-reduck/plugin-effects@1.1.11': | |
1172 | - resolution: {integrity: sha512-koc8ObEWakI9um6qARbMtMOwith/lc+D2uKKhOAvMfWjKC0gER/SpTScWstweAzcvQCtwftynEOpeQyJC2FARA==} | |
1173 | - peerDependencies: | |
1174 | - '@modern-js-reduck/store': ^1.1.11 | |
1175 | - | |
1176 | - '@modern-js-reduck/plugin-immutable@1.1.11': | |
1177 | - resolution: {integrity: sha512-52gdosxffpmq+FhSKjJqNtnW/wtX6iy/Zq2pn28eyvGCARREVT3E28qZX0kCUH4L5ij2N7QJoQOSovYuXwOlRw==} | |
1178 | - peerDependencies: | |
1179 | - '@modern-js-reduck/store': ^1.1.11 | |
1180 | - | |
1181 | - '@modern-js-reduck/react@1.1.11': | |
1182 | - resolution: {integrity: sha512-6ViI1wyrkSIAkwpKfK6bC8dnzmyfp2FTWL2AAI2PrIYNAhd+jMuTM4ik6xDHncQmTny3+rAH2B8FfsUIVm7fxQ==} | |
1183 | - peerDependencies: | |
1184 | - '@types/react': ^16.8 || ^17.0 || ^18.0 | |
1185 | - '@types/react-dom': ^16.8 || ^17.0 || ^18.0 | |
1186 | - react: ^16.8 || ^17.0 || ^18.0 | |
1187 | - react-dom: ^16.8 || ^17.0 || ^18.0 | |
1188 | - peerDependenciesMeta: | |
1189 | - '@types/react': | |
1190 | - optional: true | |
1191 | - '@types/react-dom': | |
1192 | - optional: true | |
1193 | - | |
1194 | - '@modern-js-reduck/store@1.1.11': | |
1195 | - resolution: {integrity: sha512-fvUeswe1pvF9IjC39/KgtQGV4FbwjOmVs2Fk4uxrxXEa7209qRJlDfqIGr5KsnXVporXg0oiDqwcg1xsEljw/A==} | |
1196 | - | |
1197 | - '@modern-js/app-tools@2.63.4': | |
1198 | - resolution: {integrity: sha512-6671OvfM9rfiUvux3XOSuNAqrrikj30wB2kxCVYZ2zM4SOP1ln0shXl3Clxn3nnHhrEOqr+pIwc3t1+AHmOC+w==} | |
1260 | + '@modern-js/app-tools@2.67.2': | |
1261 | + resolution: {integrity: sha512-MnKQq48Xbh/Zn9NmoIpF6M1lBhPOw+yaLt7MxtfjZ0AQzNRoMiV8o0CrXQzCo6LLXZSUZchu4gaPaNNb1DndAQ==} | |
1199 | 1262 | engines: {node: '>=14.17.6'} |
1200 | 1263 | hasBin: true |
1201 | 1264 | peerDependencies: |
... | ... | @@ -1207,67 +1270,70 @@ packages: |
1207 | 1270 | tsconfig-paths: |
1208 | 1271 | optional: true |
1209 | 1272 | |
1210 | - '@modern-js/babel-compiler@2.63.4': | |
1211 | - resolution: {integrity: sha512-Md34MoVRLXr/MKqZCgQn25k543+vwlmE/7FxWjctLlU9d/bAZAKV1s0wsI2KdEKeTAW3A5W93bJ/zj9vG2tUWg==} | |
1273 | + '@modern-js/babel-compiler@2.67.2': | |
1274 | + resolution: {integrity: sha512-dzX64vk7gn61dbctdwwbxCRN6VIRoFPtgHpyAunVpnTS9Tbfu23l4v4EMspk+FShdoFSwmloILJs7QMhwuVbwg==} | |
1212 | 1275 | |
1213 | - '@modern-js/babel-plugin-module-resolver@2.63.4': | |
1214 | - resolution: {integrity: sha512-ncoWfQmpYOvcJOb9mEP/INpdoa4A4y4FWfrXR4I1ovVoFsjw2o4FHja5xSRFdqyskw1qhQOv0V5/89vPlk40fw==} | |
1276 | + '@modern-js/babel-plugin-module-resolver@2.67.2': | |
1277 | + resolution: {integrity: sha512-t35dkXzKctGGLQEw6gnp61jqsMEs94agNxrTV2BQJR/UPGdRlKCZmp/bBblPu1DFxxrG4zjIfwGqXqSEeRpKBw==} | |
1215 | 1278 | |
1216 | - '@modern-js/babel-preset@2.59.0': | |
1217 | - resolution: {integrity: sha512-TJAMXlt8w5geaYnUKwdyiQ2XuGdm+wB7tysMhHGPWOtrYaZJ0UMgKnQ3gLCFRDIBi6KzkjxBxc5NvSAnq5TN5g==} | |
1279 | + '@modern-js/babel-preset@2.67.2': | |
1280 | + resolution: {integrity: sha512-nXSMqJIOdf6VK/d6HVX4jSNQXpkZ++zn/nNvlMDMz+AHEEio+O2Y2wIXjAFOfRSZZqIbuiKykou/mOVlCguRGg==} | |
1218 | 1281 | |
1219 | - '@modern-js/babel-preset@2.63.4': | |
1220 | - resolution: {integrity: sha512-uYeVPDWvhvHKtc+1Te2s5r5xaZs5Ltoqq5gEqzlk5patyev2vV0nKySX/a6OSMbNE9TxnD2LABpdnAWgb13i/g==} | |
1282 | + '@modern-js/core@2.67.2': | |
1283 | + resolution: {integrity: sha512-VC2di5p4XVCfAtQ4vdw7000Y+LLXMi37/1d2SH9U7be0oONNETDL9mQWFAwW4TsB/Di4bvnzkoaerhrM5hmOWg==} | |
1221 | 1284 | |
1222 | - '@modern-js/core@2.63.4': | |
1223 | - resolution: {integrity: sha512-xbfruipzEqQ5w6syYiMYcsnh2nJgdik/MLkCdl/VgvFm/rTOsxYoLG5AWWjsuqP2SSMRCIDjWfIXCegJd3VT2g==} | |
1285 | + '@modern-js/flight-server-transform-plugin@2.67.2': | |
1286 | + resolution: {integrity: sha512-rjuRnaPUGdpuaTq/wG2i9ooJy40ogpjOqBdtha6qUsKLmNs7dT4SFsWPye6tzO7Jm/Da7nebbN/hkag4TTWauQ==} | |
1224 | 1287 | |
1225 | - '@modern-js/eslint-config@2.59.0': | |
1226 | - resolution: {integrity: sha512-11a3XS0BYBYwQ7ejszQC78MgoitsqraRdFytYpFDe0HlYewoQQyjA6ZoPWjsW8SpKyhoOTQKZYJbyTsQA4sYDg==} | |
1288 | + '@modern-js/node-bundle-require@2.67.2': | |
1289 | + resolution: {integrity: sha512-dC4EJaG5f3fPuu52BrlN6b8QjERoN9ZqRoXrkJGULbuhMHLYpph992eRhMt4NKYUxYrKG97IUr4lvezJuP8Yew==} | |
1227 | 1290 | |
1228 | - '@modern-js/node-bundle-require@2.63.4': | |
1229 | - resolution: {integrity: sha512-t2MlKuMB6Q0VKy7v5r/0LOHUATfCVG/L5IXP1hR7mf5QVeEeeYsUiQMywXo1xwPrJpd1MqcNIJgGEf6bHmzLIw==} | |
1230 | - | |
1231 | - '@modern-js/plugin-data-loader@2.63.4': | |
1232 | - resolution: {integrity: sha512-7C2d3t3f7ifSt0mhnsQWj15VrmyIlj9Fyzg26SxcMlCtRrUGx8g3Wxw+NRbH3/EsONy65/kL3O00qOD4vmLznw==} | |
1291 | + '@modern-js/plugin-data-loader@2.67.2': | |
1292 | + resolution: {integrity: sha512-YZV1dRuQH97eGA2GuHXOs/nQZ2UaPI6KX1i2EEDSn2qvGc/z33BKKGYmHPItD3+1NXps6OlFwyrTJJ8IZy8B3Q==} | |
1233 | 1293 | engines: {node: '>=16.2.0'} |
1234 | 1294 | peerDependencies: |
1235 | 1295 | react: '>=17.0.0' |
1236 | 1296 | |
1237 | - '@modern-js/plugin-i18n@2.63.4': | |
1238 | - resolution: {integrity: sha512-Pe6m+AuhqZ96KUnulawXA3A8WtF6WDdJ+S9YSZNRRki5hiBo8wsSNAl6n2U8iKtL5u8nBkCKgUtLwWZW/cycyQ==} | |
1297 | + '@modern-js/plugin-i18n@2.67.2': | |
1298 | + resolution: {integrity: sha512-oNLQwxR1YC7zvccbwxZYH3OeYg0d/rxVfA61vgpkgWdlxBQJgu1bw5Uzz8K4GIYqa2F0F6dazkECWDRzYCT/cA==} | |
1239 | 1299 | |
1240 | - '@modern-js/plugin-polyfill@2.63.4': | |
1241 | - resolution: {integrity: sha512-KTkiDBJWWbMn7DJzTelGVsDUIXGULvct/XZ80nBiC5vvEhiVDUBQqcarBZyiWq5ZNm10eLlfDsu8fGxU0Jypcw==} | |
1300 | + '@modern-js/plugin-polyfill@2.67.2': | |
1301 | + resolution: {integrity: sha512-kmtkfBzAlElaI9IogvRNDgZQupBGS+DOc2+mDnrd11oLvHRoOTMzjZpSH7e2v9ERScSeoPGnig1svW/umBGUfA==} | |
1242 | 1302 | |
1243 | - '@modern-js/plugin-tailwindcss@2.63.4': | |
1244 | - resolution: {integrity: sha512-POtJc41Nc7qsKRYiB+ywulLBpNW4HMrYrZjus7Bs8DYMRvwG7jkN/Tt95oh+Hi/MqPGY/+ZsHaqOdRMnY/rIkw==} | |
1303 | + '@modern-js/plugin-tailwindcss@2.67.2': | |
1304 | + resolution: {integrity: sha512-6/0RFeC2qaDSv3V9F4abcaoM4pLczP9tCYVfUWKSEmEs0rigyMBMgoS1GtZaP+QUAowLl0RHF6cUIlfVevlpTA==} | |
1245 | 1305 | peerDependencies: |
1246 | - '@modern-js/runtime': ^2.63.4 | |
1306 | + '@modern-js/runtime': ^2.67.2 | |
1247 | 1307 | tailwindcss: '>= 2.0.0 || >= 3.0.0' |
1248 | 1308 | peerDependenciesMeta: |
1249 | 1309 | '@modern-js/runtime': |
1250 | 1310 | optional: true |
1251 | 1311 | |
1252 | - '@modern-js/plugin-v2@2.63.4': | |
1253 | - resolution: {integrity: sha512-aqqOG74f1eBDIqDR3mwyCfA2jdqpO4n2bAFnvntjeubEqaRAa6yKlGGNY+uEP9IivOdgNMxwg5NY5CbxG/EMiQ==} | |
1312 | + '@modern-js/plugin-v2@2.67.2': | |
1313 | + resolution: {integrity: sha512-deLmrF/tXUS13VRzo3/Fsxvh5ewkAOkeDpD+fnxwNORiUERrpFcIBn0M9ufPbDK2y3sMcWzAu7ebYfUuhyp1sQ==} | |
1254 | 1314 | |
1255 | - '@modern-js/plugin@2.63.4': | |
1256 | - resolution: {integrity: sha512-s+VRqF2n1Fz6m/OzDpZUZ/wZwcMXcdM5MO9+2/IOXzGemvGTDmt6RHO39/u++Xy8NjqHITlHWxNy9mhjY7sOHA==} | |
1315 | + '@modern-js/plugin@2.67.2': | |
1316 | + resolution: {integrity: sha512-3soaedhGkk/2uQBfv8SKo1RTeBDDBbu09KmKiKOI/BS5RKbrlbAwZBEFaJJ5/PDwrYzjdFS1J6UDd2NNlFlSig==} | |
1257 | 1317 | |
1258 | 1318 | '@modern-js/polyfill-lib@1.0.2': |
1259 | 1319 | resolution: {integrity: sha512-UdBEpS0kwBYm43n60FEZFvZ3dUhqlzzvZkIMwiQGYHvlpXuAN/30GrWnp2WUdd5+eM5ObRCJ1bSJ7+UYouxPAQ==} |
1260 | 1320 | engines: {node: '>=8'} |
1261 | 1321 | |
1262 | - '@modern-js/prod-server@2.63.4': | |
1263 | - resolution: {integrity: sha512-cthk4nMr9a8oyjAobkL+WifIIMgfoUkevOpIrSemewdGLwajOnglmpeC92E2/zQfsQrU22uUiP8PBFa31eabPQ==} | |
1322 | + '@modern-js/prod-server@2.67.2': | |
1323 | + resolution: {integrity: sha512-JZjCBbEn77wcuhaKuL9B1TrpY01sFddnY0MXvaMSgK/TLpTMQmruk+509fNlM7rNjpOYqroTEUQW93sOeYcsaA==} | |
1264 | 1324 | engines: {node: '>=16.2.0'} |
1265 | 1325 | |
1266 | - '@modern-js/rsbuild-plugin-esbuild@2.63.4': | |
1267 | - resolution: {integrity: sha512-CJSZH3Remh0MRhG2KJzYwvfzljTWxOAEp82rl8zhTpNV+1b9VkDW3uFcEEl4MronVYvXx7jUGqbJU1nAmem3Hg==} | |
1326 | + '@modern-js/render@2.67.2': | |
1327 | + resolution: {integrity: sha512-WMbfp3FULtpY6QcEM+mJCIdg5rcR0vueZaMerUQczlaqmYUZNUMvVswawOt59Nn7qlQyswHVpWWc8F9UwAiRGg==} | |
1328 | + peerDependencies: | |
1329 | + react: '>=17.0.0' | |
1330 | + react-dom: '>=17.0.0' | |
1331 | + | |
1332 | + '@modern-js/rsbuild-plugin-esbuild@2.67.2': | |
1333 | + resolution: {integrity: sha512-LLg4u++abkch2zYwbqDBQVEzE1bBt+ywL1Y88+hfn3l+bumTEFAZ521TrEv+VRhswc2ga15eX5EhYC8tdrt1rA==} | |
1268 | 1334 | |
1269 | - '@modern-js/runtime-utils@2.63.4': | |
1270 | - resolution: {integrity: sha512-/tX9ctT2EGIHB8mZn5ZwcfOKjZMoTn4Rg61slBF2SFDPQ21ps5ZnruXneuelaT4k9WV6VJhLZgoF6zU5iw6maQ==} | |
1335 | + '@modern-js/runtime-utils@2.67.2': | |
1336 | + resolution: {integrity: sha512-RkW4lANny8oeVEvn+TJHG47hokOHJ29lavfwX6ZpMwI5v/OwqkhgdkNIdaknwVQSO4g2JGrYG255xDW9a4fwtg==} | |
1271 | 1337 | peerDependencies: |
1272 | 1338 | react: '>=17.0.0' |
1273 | 1339 | react-dom: '>=17.0.0' |
... | ... | @@ -1277,22 +1343,22 @@ packages: |
1277 | 1343 | react-dom: |
1278 | 1344 | optional: true |
1279 | 1345 | |
1280 | - '@modern-js/runtime@2.63.4': | |
1281 | - resolution: {integrity: sha512-djYWFtxiOaKr+I5j3FMoZVbKdI2ScwdDejhBPa2vsCpJ4XF8BMKNuTmmPIdXdsbnxwkjTxPZ0jVItbDTTGiAlQ==} | |
1346 | + '@modern-js/runtime@2.67.2': | |
1347 | + resolution: {integrity: sha512-lYRqJj67A0bUfh8iZR2j27cB5zeGu8w3t1V6MDHTQMKgPLB3CFwHQ5CuI2aSHshqDFY1j1qdfcQI90qaSXjLWQ==} | |
1282 | 1348 | engines: {node: '>=14.17.6'} |
1283 | 1349 | peerDependencies: |
1284 | 1350 | react: '>=17' |
1285 | 1351 | react-dom: '>=17' |
1286 | 1352 | |
1287 | - '@modern-js/server-core@2.63.4': | |
1288 | - resolution: {integrity: sha512-N4kkYKjQ4bGwEYvPzpWxrpW2cgtcFG9WPtdF9IWDFFYB+/o34nCiiSVopfFBdFjN4PDb2MOa+zcsr6fngdjqFg==} | |
1353 | + '@modern-js/server-core@2.67.2': | |
1354 | + resolution: {integrity: sha512-+DrwGkI89ZwORHyYZpATQOtOyVKmIDLaZ3WxbsHzC9tBve8elh5MT+/IY+Kf9dgUVZknN7wenCMPJWZ+enax0w==} | |
1289 | 1355 | engines: {node: '>=16.2.0'} |
1290 | 1356 | |
1291 | - '@modern-js/server-utils@2.63.4': | |
1292 | - resolution: {integrity: sha512-3OuHsADcT2oN8VF+A3Ue42PRXFqrELRTYlJBXEi9+/zEApzYEY+tAcwhR/pRCdIAHMazseljhkhe+5etpoOmUg==} | |
1357 | + '@modern-js/server-utils@2.67.2': | |
1358 | + resolution: {integrity: sha512-DGx9owgINGT073jTxdkG5ErIrTOgt6OvzncxdySrMYNGVMZNIzd3MvbByTSQrZ5aqFSEPmOQCEVDkBjH3igQnA==} | |
1293 | 1359 | |
1294 | - '@modern-js/server@2.63.4': | |
1295 | - resolution: {integrity: sha512-lHRYG1fjCi++wFxuzugqOc1+mPQ37BAAOiiz710hDGrohYAQcfZQMkKjKA9aZiPuB7EJIBbHk3JpCKD66ZK1Qw==} | |
1360 | + '@modern-js/server@2.67.2': | |
1361 | + resolution: {integrity: sha512-oBPq4OrHZNRHlOCeqcYxdprLGyGC17qfuYEN6NzncyFpjpZxwUG7NoP2gTRcR6DORPRQZgI60o73rir+3d9IAQ==} | |
1296 | 1362 | peerDependencies: |
1297 | 1363 | devcert: ^1.2.2 |
1298 | 1364 | ts-node: ^10.1.0 |
... | ... | @@ -1305,29 +1371,35 @@ packages: |
1305 | 1371 | tsconfig-paths: |
1306 | 1372 | optional: true |
1307 | 1373 | |
1308 | - '@modern-js/tsconfig@2.63.4': | |
1309 | - resolution: {integrity: sha512-5YaKhcdCrnh9ryFm/yW4+B3HGrfmiakeNz2jWYU1n42j/Y5hWCy9K2RczADSKD8Geqz306Z8uQfVFsw6BbESBQ==} | |
1374 | + '@modern-js/tsconfig@2.67.2': | |
1375 | + resolution: {integrity: sha512-BydDoa7XiLQad4IPUap3qYchOC8aNy2SSn4l+YddDSfsFWLXzQwFalEj1XGcxYTW1KiXHOEavLD5Hp5MeeErmQ==} | |
1376 | + | |
1377 | + '@modern-js/types@2.67.2': | |
1378 | + resolution: {integrity: sha512-DXyPV+rHWQa8NcJiNN3yBC6pYrNNBOFqPxCu8ugRcP8wTAOrxZGGGiuQRr+cSG8WfqRA1Rokt9GuIR1YtfDbGw==} | |
1310 | 1379 | |
1311 | - '@modern-js/types@2.63.4': | |
1312 | - resolution: {integrity: sha512-3yG1ekb6ITmoq7l7MlPuUf07/4LTKScvB1YyFxmFdhDjLMrmgpyZrn1twMZMvIqjZhKhSBKeO41SG3vqLf5dSw==} | |
1380 | + '@modern-js/uni-builder@2.67.2': | |
1381 | + resolution: {integrity: sha512-kBKedYpH7IJlkcyMcYmfzlXr1Wh62Qe9yF4/3lwp+bz9e8kaXC3xZcxoIgJKIvEW30clobgUJ/5aXRjeceLkrw==} | |
1313 | 1382 | |
1314 | - '@modern-js/uni-builder@2.63.4': | |
1315 | - resolution: {integrity: sha512-q3aOjANVSsyhgKBMfJpKihaTsaPz+rmx7aOsXC2FATNkSnsZFb3XSBxFd0pth1THr5G++nYlKJzAekCTUUG9pg==} | |
1383 | + '@modern-js/utils@2.67.2': | |
1384 | + resolution: {integrity: sha512-6Lw/JpCZ2hIH0pK/lrpbPAsoSYLHTos7lvPhlhFOuIxS4f9z0qY1cx5TXtMwMcT1yXMZepvAJQylGjqur20Nkw==} | |
1316 | 1385 | |
1317 | - '@modern-js/utils@2.63.4': | |
1318 | - resolution: {integrity: sha512-dw9QMqCv3fl4VJV4H8gx5QV7croN23KNNX94MnoHYbUyZ1rEs9ZSRWjz8YL+Nm4Eu60qtBmuvJlqO0hibRMO4g==} | |
1386 | + '@module-federation/error-codes@0.11.2': | |
1387 | + resolution: {integrity: sha512-ik1Qnn0I+WyEdprTck9WGlH41vGsVdUg8cfO+ZM02qOb2cZm5Vu3SlxGAobj6g7uAj0g8yINnd7h7Dci40BxQA==} | |
1319 | 1388 | |
1320 | - '@module-federation/runtime-tools@0.5.1': | |
1321 | - resolution: {integrity: sha512-nfBedkoZ3/SWyO0hnmaxuz0R0iGPSikHZOAZ0N/dVSQaIzlffUo35B5nlC2wgWIc0JdMZfkwkjZRrnuuDIJbzg==} | |
1389 | + '@module-federation/runtime-core@0.11.2': | |
1390 | + resolution: {integrity: sha512-dia5kKybi6MFU0s5PgglJwN27k7n9Sf69Cy5xZ4BWaP0qlaXTsxHKO0PECHNt2Pt8jDdyU29sQ4DwAQfxpnXJQ==} | |
1322 | 1391 | |
1323 | - '@module-federation/runtime@0.5.1': | |
1324 | - resolution: {integrity: sha512-xgiMUWwGLWDrvZc9JibuEbXIbhXg6z2oUkemogSvQ4LKvrl/n0kbqP1Blk669mXzyWbqtSp6PpvNdwaE1aN5xQ==} | |
1392 | + '@module-federation/runtime-tools@0.11.2': | |
1393 | + resolution: {integrity: sha512-4MJTGAxVq6vxQRkTtTlH7Mm9AVqgn0X9kdu+7RsL7T/qU+jeYsbrntN2CWG3GVVA8r5JddXyTI1iJ0VXQZLV1w==} | |
1325 | 1394 | |
1326 | - '@module-federation/sdk@0.5.1': | |
1327 | - resolution: {integrity: sha512-exvchtjNURJJkpqjQ3/opdbfeT2wPKvrbnGnyRkrwW5o3FH1LaST1tkiNviT6OXTexGaVc2DahbdniQHVtQ7pA==} | |
1395 | + '@module-federation/runtime@0.11.2': | |
1396 | + resolution: {integrity: sha512-Ya9u/L6z2LvhgpqxuKCB7LcigIIRf1BbaxAZIH7mzbq/A7rZtTP7v+73E433jvgiAlbAfPSZkeoYGele6hfRwA==} | |
1328 | 1397 | |
1329 | - '@module-federation/webpack-bundler-runtime@0.5.1': | |
1330 | - resolution: {integrity: sha512-mMhRFH0k2VjwHt3Jol9JkUsmI/4XlrAoBG3E0o7HoyoPYv1UFOWyqAflfANcUPgbYpvqmyLzDcO+3IT36LXnrA==} | |
1398 | + '@module-federation/sdk@0.11.2': | |
1399 | + resolution: {integrity: sha512-SBFe5xOamluT900J4AGBx+2/kCH/JbfqXoUwPSAC6PRzb8Y7LB0posnOGzmqYsLZXT37vp3d6AmJDsVoajDqxw==} | |
1400 | + | |
1401 | + '@module-federation/webpack-bundler-runtime@0.11.2': | |
1402 | + resolution: {integrity: sha512-WdwIE6QF+MKs/PdVu0cKPETF743JB9PZ62/qf7Uo3gU4fjsUMc37RnbJZ/qB60EaHHfjwp1v6NnhZw1r4eVsnw==} | |
1331 | 1403 | |
1332 | 1404 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': |
1333 | 1405 | resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} |
... | ... | @@ -1362,8 +1434,8 @@ packages: |
1362 | 1434 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} |
1363 | 1435 | engines: {node: '>=14'} |
1364 | 1436 | |
1365 | - '@pmmmwh/react-refresh-webpack-plugin@0.5.15': | |
1366 | - resolution: {integrity: sha512-LFWllMA55pzB9D34w/wXUCf8+c+IYKuJDgxiZ3qMhl64KRMBHYM1I3VdGaD2BV5FNPV2/S2596bppxHbv2ZydQ==} | |
1437 | + '@pmmmwh/react-refresh-webpack-plugin@0.5.16': | |
1438 | + resolution: {integrity: sha512-kLQc9xz6QIqd2oIYyXRUiAp79kGpFBm3fEM9ahfG1HI0WI5gdZ2OVHWdmZYnwODt7ISck+QuQ6sBPrtvUBML7Q==} | |
1367 | 1439 | engines: {node: '>= 10.13'} |
1368 | 1440 | peerDependencies: |
1369 | 1441 | '@types/webpack': 4.x || 5.x |
... | ... | @@ -1473,11 +1545,6 @@ packages: |
1473 | 1545 | react: ^16.8.0 || ^17.0.0 || ^18.0.0 |
1474 | 1546 | react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 |
1475 | 1547 | |
1476 | - '@redux-devtools/extension@3.3.0': | |
1477 | - resolution: {integrity: sha512-X34S/rC8S/M1BIrkYD1mJ5f8vlH0BDqxXrs96cvxSBo4FhMdbhU+GUGsmNYov1xjSyLMHgo8NYrUG8bNX7525g==} | |
1478 | - peerDependencies: | |
1479 | - redux: ^3.1.0 || ^4.0.0 || ^5.0.0 | |
1480 | - | |
1481 | 1548 | '@remix-run/router@1.20.0': |
1482 | 1549 | resolution: {integrity: sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==} |
1483 | 1550 | engines: {node: '>=14.0.0'} |
... | ... | @@ -1486,42 +1553,26 @@ packages: |
1486 | 1553 | resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} |
1487 | 1554 | engines: {node: '>= 8.0.0'} |
1488 | 1555 | |
1489 | - '@rollup/pluginutils@5.1.4': | |
1490 | - resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} | |
1491 | - engines: {node: '>=14.0.0'} | |
1492 | - peerDependencies: | |
1493 | - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 | |
1494 | - peerDependenciesMeta: | |
1495 | - rollup: | |
1496 | - optional: true | |
1497 | - | |
1498 | - '@rsbuild/core@1.0.1-rc.4': | |
1499 | - resolution: {integrity: sha512-JlouV5M+azv9YP6hD11rHeUns8Yk9sQN9QmMCKhutG75j1TCEKmrL0O7UmE89+uKlJTnL5Pyzy29TLO5ncIRjg==} | |
1556 | + '@rsbuild/core@1.3.7': | |
1557 | + resolution: {integrity: sha512-iVHnPxv+0JkbrlkYhPHjFvwjNqHxB43yL6MHWjgOxmWz9QzogB6mIDUkLSgJDL/8RUB6fB7NgGCmaxbuClaSDw==} | |
1500 | 1558 | engines: {node: '>=16.7.0'} |
1501 | 1559 | hasBin: true |
1502 | 1560 | |
1503 | - '@rsbuild/core@1.1.12': | |
1504 | - resolution: {integrity: sha512-9f+E47fMf51Cg4W7CF2Q4f7BRSslVV/+TRvs5ScclYanqXEFtAGV9nuecJEL6Qc9jJV61lES0esPTFdPPnWPGw==} | |
1505 | - engines: {node: '>=16.7.0'} | |
1506 | - hasBin: true | |
1507 | - | |
1508 | - '@rsbuild/plugin-assets-retry@1.0.7': | |
1509 | - resolution: {integrity: sha512-5b3sHIayNKxgB1rr8SJWjTDKNwoBRDcbLuh1gBoNVz0TvNZxow8GsW6Nlfl8YRLyuLwaLQQw/r/vGnTxcIit5Q==} | |
1561 | + '@rsbuild/plugin-assets-retry@1.2.1': | |
1562 | + resolution: {integrity: sha512-VJ4h8hw5Pdrx5h6O0ffdUNxcOYTHQ9to6oxGTdMFXJh/HRcIUy8+5mNoAYHkk5sqTQtyli8QOesJXhqGbrENfw==} | |
1510 | 1563 | peerDependencies: |
1511 | 1564 | '@rsbuild/core': 1.x |
1565 | + peerDependenciesMeta: | |
1566 | + '@rsbuild/core': | |
1567 | + optional: true | |
1512 | 1568 | |
1513 | - '@rsbuild/plugin-babel@1.0.1-rc.4': | |
1514 | - resolution: {integrity: sha512-jPNNZ2XnVnHZnIt+kZ7LftBkLgydrYEoCodoFWy9sKoRJbzy5Q23WgZPePS0QfClZw56n54lYDUC/3V6HdFaBQ==} | |
1515 | - peerDependencies: | |
1516 | - '@rsbuild/core': ^1.0.1-rc.4 | |
1517 | - | |
1518 | - '@rsbuild/plugin-babel@1.0.3': | |
1519 | - resolution: {integrity: sha512-3S/ykXv7KRo0FxVpkjoHFUwB04nKINIET1kuv4xiRaDmeww1Tp0wl9h4u8a7d7gU/4FllyoUflY8TVhci/o05g==} | |
1569 | + '@rsbuild/plugin-babel@1.0.5': | |
1570 | + resolution: {integrity: sha512-g6kZsAREO7c3KEBXRnLbOovIEL/TQDMls2QQFpaGxHx1K7pJB5nNmY1XpTzLCch62xfmBV4crOde0Dow6NAshg==} | |
1520 | 1571 | peerDependencies: |
1521 | 1572 | '@rsbuild/core': 1.x |
1522 | 1573 | |
1523 | - '@rsbuild/plugin-check-syntax@1.2.0': | |
1524 | - resolution: {integrity: sha512-e5hOUN+B3Weo6w/9CQs50roptIzqzE1A77DmFyKxiFBTrFZHt3bXtkG1odlRlNpHenXlGGbGJq9a2NzkAThOBg==} | |
1574 | + '@rsbuild/plugin-check-syntax@1.3.0': | |
1575 | + resolution: {integrity: sha512-lHrd6hToPFVOGWr0U/Ox7pudHWdhPSFsr2riWpjNRlUuwiXdU2SYMROaVUCrLJvYFzJyEMsFOi1w59rBQCG2HQ==} | |
1525 | 1576 | peerDependencies: |
1526 | 1577 | '@rsbuild/core': 1.x |
1527 | 1578 | peerDependenciesMeta: |
... | ... | @@ -1536,15 +1587,15 @@ packages: |
1536 | 1587 | '@rsbuild/core': |
1537 | 1588 | optional: true |
1538 | 1589 | |
1539 | - '@rsbuild/plugin-less@1.1.0': | |
1540 | - resolution: {integrity: sha512-F834dobNDIdyGj5trMxIqzm/qf54Kj5KVDxeuB3TTj64mzq5fHJnR4aI/iYIliUwICG1/l2MliKr5sR34Kb7eA==} | |
1590 | + '@rsbuild/plugin-less@1.2.2': | |
1591 | + resolution: {integrity: sha512-tbDmFdd2+96P5pV/Easi3PFZsFd0FaGxSxUxf/iaoXQBHJ4FGnfYci8VTOb5koB3KrUX5xqkkhQgO0vLbJM/7A==} | |
1541 | 1592 | peerDependencies: |
1542 | 1593 | '@rsbuild/core': 1.x |
1543 | 1594 | |
1544 | - '@rsbuild/plugin-node-polyfill@1.2.0': | |
1545 | - resolution: {integrity: sha512-mYctpK5Jn2yxTOxQ4rOJ0iFBJNW7sADFtKsLp9dL7MjToMhKiyIs4Mc65piI7B+YOBshdyMqCk3LPjJ+CtSRXQ==} | |
1595 | + '@rsbuild/plugin-node-polyfill@1.3.0': | |
1596 | + resolution: {integrity: sha512-KvckyUg9wq3F1Iv/y4+mlcnO/E7vDklvMY7kF6CxnUYImroQVw/EDS0zDezkPvcm7aKTH5b0Jaa0iIcTNFzhVw==} | |
1546 | 1597 | peerDependencies: |
1547 | - '@rsbuild/core': 1.x || ^1.0.1-beta.0 | |
1598 | + '@rsbuild/core': 1.x | |
1548 | 1599 | peerDependenciesMeta: |
1549 | 1600 | '@rsbuild/core': |
1550 | 1601 | optional: true |
... | ... | @@ -1557,8 +1608,8 @@ packages: |
1557 | 1608 | '@rsbuild/core': |
1558 | 1609 | optional: true |
1559 | 1610 | |
1560 | - '@rsbuild/plugin-react@1.1.0': | |
1561 | - resolution: {integrity: sha512-uqdRoV2V91G1XIA14dAmxqYTlTDVf0ktpE7TgwG29oQ2j+DerF1kh29WPHK9HvGE34JTfaBrsme2Zmb6bGD0cw==} | |
1611 | + '@rsbuild/plugin-react@1.2.0': | |
1612 | + resolution: {integrity: sha512-TXd0cvcLPF7OrO215vlGSyRXD6Fc3KQWhFuXFKOtRYp+C1Vc9oeW0GopUIStv2pI2/xtv2XX8GOAdJsnsc6lkA==} | |
1562 | 1613 | peerDependencies: |
1563 | 1614 | '@rsbuild/core': 1.x |
1564 | 1615 | |
... | ... | @@ -1570,8 +1621,8 @@ packages: |
1570 | 1621 | '@rsbuild/core': |
1571 | 1622 | optional: true |
1572 | 1623 | |
1573 | - '@rsbuild/plugin-sass@1.1.2': | |
1574 | - resolution: {integrity: sha512-h/7WZbRloMxAAt/X52Pbyy3cNEIAKSSl39WG1VSoIBx6agW9qSLRx7zhRf1YlNt3C5G0n1pgDLpvtJSynqZ8OQ==} | |
1624 | + '@rsbuild/plugin-sass@1.3.1': | |
1625 | + resolution: {integrity: sha512-hyqsMyI/XPntdL3xRRC25SIkWUWA9I7gVG46K9a8+xJVLJfLp8rHR1sKtc8JYOSPBIXcYwtzHIA9ib1gS2kRUQ==} | |
1575 | 1626 | peerDependencies: |
1576 | 1627 | '@rsbuild/core': 1.x |
1577 | 1628 | |
... | ... | @@ -1583,29 +1634,29 @@ packages: |
1583 | 1634 | '@rsbuild/core': |
1584 | 1635 | optional: true |
1585 | 1636 | |
1586 | - '@rsbuild/plugin-styled-components@1.1.0': | |
1587 | - resolution: {integrity: sha512-KeFJOpb1dTV98zOHWOM6Dc8V/Eo9evL1NNuFarTfm+ESOBdeXSX0uE/CreVQKmRqS0JTFk7pJwHCpssxcPaA+g==} | |
1637 | + '@rsbuild/plugin-styled-components@1.3.0': | |
1638 | + resolution: {integrity: sha512-dnLnGCBjKLmyrGCWQW/W3CiDHuCaS9GtkHlouiUOVlqz1D6mC35HClyTBT38F6mWeTOBpd3eQ/bsb89dcgz8qw==} | |
1588 | 1639 | peerDependencies: |
1589 | - '@rsbuild/core': 1.x | |
1640 | + '@rsbuild/core': ^1.2.0 | |
1590 | 1641 | peerDependenciesMeta: |
1591 | 1642 | '@rsbuild/core': |
1592 | 1643 | optional: true |
1593 | 1644 | |
1594 | - '@rsbuild/plugin-svgr@1.0.6': | |
1595 | - resolution: {integrity: sha512-znLFk2fumNObMntkjrpZhO3guXmaQZbqv0JjhqBVng63bNdsJAmfZGXX5He8Avp4VDlv6EJI6BC5SIEs8XspTg==} | |
1645 | + '@rsbuild/plugin-svgr@1.2.0': | |
1646 | + resolution: {integrity: sha512-J0XEqp++cXnzVpVXsq92H6S6VXYMuGjlw07Juh73tMpxlJdPsv95ULUoiCHmuTwUeTZMRfVMamTxz03/owYYSg==} | |
1596 | 1647 | peerDependencies: |
1597 | 1648 | '@rsbuild/core': 1.x |
1598 | 1649 | |
1599 | - '@rsbuild/plugin-toml@1.0.1': | |
1600 | - resolution: {integrity: sha512-CsYlSKGYY2nm4nrubYGbbPsYE33p+5D1Y6i8FJKQtfAvsw6WdDO2l1Xmg9XuLL0s5mIGmAZFhj5tCMMW7yTX4A==} | |
1650 | + '@rsbuild/plugin-toml@1.1.0': | |
1651 | + resolution: {integrity: sha512-kzmgwXthLO1Co3KY0cGZ/3+jRY0u00Wh59+C5whTekpR0Ww3IXB6f/l/mKel6sk5s+3r8GRwhSbi0erv2AN+bg==} | |
1601 | 1652 | peerDependencies: |
1602 | - '@rsbuild/core': 0.x || 1.x || ^1.0.1-beta.0 | |
1653 | + '@rsbuild/core': 1.x | |
1603 | 1654 | peerDependenciesMeta: |
1604 | 1655 | '@rsbuild/core': |
1605 | 1656 | optional: true |
1606 | 1657 | |
1607 | - '@rsbuild/plugin-type-check@1.2.0': | |
1608 | - resolution: {integrity: sha512-bx+WmtK7K5Jc07IQn2cBDqcP/Kt98u16NiW3EyxqJGhQ1OgFvK6ewc70+AJnBvtjE+MMB70NAXEl8MNOtSxz6g==} | |
1658 | + '@rsbuild/plugin-type-check@1.2.1': | |
1659 | + resolution: {integrity: sha512-PtbjeMqDQy8IiPDTuaj8ZmvR42b0AsRq6RUF6wxa8dDsOzD0Dl1GcvemVGCto+/Dh8frLUmnlWF+T8riBw5rtA==} | |
1609 | 1660 | peerDependencies: |
1610 | 1661 | '@rsbuild/core': 1.x |
1611 | 1662 | peerDependenciesMeta: |
... | ... | @@ -1628,8 +1679,8 @@ packages: |
1628 | 1679 | '@rsbuild/core': |
1629 | 1680 | optional: true |
1630 | 1681 | |
1631 | - '@rsbuild/webpack@1.1.6': | |
1632 | - resolution: {integrity: sha512-owaZtUHCkDVu1HB6/LbHG2NQx4oNJA3PsZ2CMljtzg/hrbfZ26Tfi0UCQE0fJIEOq6j4NXNT7TG89/rFwKDeYQ==} | |
1682 | + '@rsbuild/webpack@1.3.0': | |
1683 | + resolution: {integrity: sha512-VeEw2hLHHR46836Hw6WQUtoneqY4IOMS3fP/7YJxG342QG59QsBEjZpTdudOqBLu8f6BxKWGsUboqk65LmFsHw==} | |
1633 | 1684 | peerDependencies: |
1634 | 1685 | '@rsbuild/core': ^1.1.3 |
1635 | 1686 | |
... | ... | @@ -1662,125 +1713,67 @@ packages: |
1662 | 1713 | '@rsdoctor/utils@0.4.12': |
1663 | 1714 | resolution: {integrity: sha512-GQahkLhH65nfRvLK1auydLvbVFsLKcDZIwEf1VoL1lpWhtxSEzVJCuex8764Fs8abBlFM1Of22IOpMMQ2Pvdbw==} |
1664 | 1715 | |
1665 | - '@rspack/binding-darwin-arm64@1.0.14': | |
1666 | - resolution: {integrity: sha512-dHvlF6T6ctThGDIdvkSdacroA1xlCxfteuppBj8BX/UxzLPr4xsaEtNilfJmFfd2/J02UQyTQauN/9EBuA+YkA==} | |
1716 | + '@rspack/binding-darwin-arm64@1.3.5': | |
1717 | + resolution: {integrity: sha512-bhqi9nZ0jrlQc/YgTklzD02y0E8Emdrov6HLcxt/Dzwq5SZryl4Ik8yc/8E1M0PWNkr09+TO8i1Zc51z0Gfu2g==} | |
1667 | 1718 | cpu: [arm64] |
1668 | 1719 | os: [darwin] |
1669 | 1720 | |
1670 | - '@rspack/binding-darwin-arm64@1.1.8': | |
1671 | - resolution: {integrity: sha512-I7avr471ghQ3LAqKm2fuXuJPLgQ9gffn5Q4nHi8rsukuZUtiLDPfYzK1QuupEp2JXRWM1gG5lIbSUOht3cD6Ug==} | |
1672 | - cpu: [arm64] | |
1673 | - os: [darwin] | |
1674 | - | |
1675 | - '@rspack/binding-darwin-x64@1.0.14': | |
1676 | - resolution: {integrity: sha512-q4Da1Bn/4xTLhhnOkT+fjP2STsSCfp4z03/J/h8tCVG/UYz56Ud3q1UEOK33c5Fxw1C4GlhEh5yYOlSAdxFQLQ==} | |
1677 | - cpu: [x64] | |
1678 | - os: [darwin] | |
1679 | - | |
1680 | - '@rspack/binding-darwin-x64@1.1.8': | |
1681 | - resolution: {integrity: sha512-vfqf/c+mcx8rr1M8LnqKmzDdnrgguflZnjGerBLjNerAc+dcUp3lCvNxRIvZ2TkSZZBW8BpCMgjj3n70CZ4VLQ==} | |
1721 | + '@rspack/binding-darwin-x64@1.3.5': | |
1722 | + resolution: {integrity: sha512-ysNn7bd/5NdVb0mTDBQl+D9GypCSS7FJoJJEeSpPcN01zFF8lRUsvdbOvzrG/CUBA2qbeWhwZvG2eKOy3p2NRA==} | |
1682 | 1723 | cpu: [x64] |
1683 | 1724 | os: [darwin] |
1684 | 1725 | |
1685 | - '@rspack/binding-linux-arm64-gnu@1.0.14': | |
1686 | - resolution: {integrity: sha512-JogYtL3VQS9wJ3p3FNhDqinm7avrMsdwz4erP7YCjD7idob93GYAE7dPrHUzSNVnCBYXRaHJYZHDQs7lKVcYZw==} | |
1687 | - cpu: [arm64] | |
1688 | - os: [linux] | |
1689 | - libc: [glibc] | |
1690 | - | |
1691 | - '@rspack/binding-linux-arm64-gnu@1.1.8': | |
1692 | - resolution: {integrity: sha512-lZlO/rAJSeozi+qtVLkGSXfe+riPawCwM4FsrflELfNlvvEXpANwtrdJ+LsaNVXcgvhh50ZX2KicTdmx9G2b6Q==} | |
1726 | + '@rspack/binding-linux-arm64-gnu@1.3.5': | |
1727 | + resolution: {integrity: sha512-oEfPjYx3RVsMeHG/kI9k96nLJUQhYfQS9HUKS37Ko3RWC84qTuzMAAdWIXE9ys8GHwpks7pL953AfYNK5PLhPw==} | |
1693 | 1728 | cpu: [arm64] |
1694 | 1729 | os: [linux] |
1695 | 1730 | libc: [glibc] |
1696 | 1731 | |
1697 | - '@rspack/binding-linux-arm64-musl@1.0.14': | |
1698 | - resolution: {integrity: sha512-qgybhxI/nnoa8CUz7zKTC0Oh37NZt9uRxsSV7+ZYrfxqbrVCoNVuutPpY724uUHy1M6W34kVEm1uT1N4Ka5cZg==} | |
1699 | - cpu: [arm64] | |
1700 | - os: [linux] | |
1701 | - libc: [musl] | |
1702 | - | |
1703 | - '@rspack/binding-linux-arm64-musl@1.1.8': | |
1704 | - resolution: {integrity: sha512-bX7exULSZwy8xtDh6Z65b6sRC4uSxGuyvSLCEKyhmG6AnJkg0gQMxk3hoO0hWnyGEZgdJEn+jEhk0fjl+6ZRAQ==} | |
1732 | + '@rspack/binding-linux-arm64-musl@1.3.5': | |
1733 | + resolution: {integrity: sha512-4cUoxd8nGsCCnqWBqortJRF+VKWzUm7ac9YRMQ+wpoL5i0abcQf8GqeilsNtRBRNqAlAh3mfgRlyeZgWvoS44g==} | |
1705 | 1734 | cpu: [arm64] |
1706 | 1735 | os: [linux] |
1707 | 1736 | libc: [musl] |
1708 | 1737 | |
1709 | - '@rspack/binding-linux-x64-gnu@1.0.14': | |
1710 | - resolution: {integrity: sha512-5vzaDRw3/sGKo3ax/1cU3/cxqNjajwlt2LU288vXNe1/n8oe/pcDfYcTugpOe/A1DqzadanudJszLpFcKsaFtQ==} | |
1711 | - cpu: [x64] | |
1712 | - os: [linux] | |
1713 | - libc: [glibc] | |
1714 | - | |
1715 | - '@rspack/binding-linux-x64-gnu@1.1.8': | |
1716 | - resolution: {integrity: sha512-2Prw2USgTJ3aLdLExfik8pAwAHbX4MZrACBGEmR7Vbb56kLjC+++fXkciRc50pUDK4JFr1VQ7eNZrJuDR6GG6Q==} | |
1738 | + '@rspack/binding-linux-x64-gnu@1.3.5': | |
1739 | + resolution: {integrity: sha512-JehI/z61Y9wwkcTxbAdPtjUnAyyAUCJZOqP3FwQTAd2gBFG/8k7v1quGwrfOLsCLOcT3azbd8YFoHmkveGQayQ==} | |
1717 | 1740 | cpu: [x64] |
1718 | 1741 | os: [linux] |
1719 | 1742 | libc: [glibc] |
1720 | 1743 | |
1721 | - '@rspack/binding-linux-x64-musl@1.0.14': | |
1722 | - resolution: {integrity: sha512-4U6QD9xVS1eGme52DuJr6Fg/KdcUfJ+iKwH49Up460dZ/fLvGylnVGA+V0mzPlKi8gfy7NwFuYXZdu3Pwi1YYg==} | |
1723 | - cpu: [x64] | |
1724 | - os: [linux] | |
1725 | - libc: [musl] | |
1726 | - | |
1727 | - '@rspack/binding-linux-x64-musl@1.1.8': | |
1728 | - resolution: {integrity: sha512-bnVGB/mQBKEdzOU/CPmcOE3qEXxGOGGW7/i6iLl2MamVOykJq8fYjL9j86yi6L0r009ja16OgWckykQGc4UqGw==} | |
1744 | + '@rspack/binding-linux-x64-musl@1.3.5': | |
1745 | + resolution: {integrity: sha512-t8BqaOXrqIXZHTrz4ItX/m6BOvbBkeb7qTewlkN5mMHtPAF/Xg203rQ814VXx59kjgGF7i79PXIK2dQxHnCYDA==} | |
1729 | 1746 | cpu: [x64] |
1730 | 1747 | os: [linux] |
1731 | 1748 | libc: [musl] |
1732 | 1749 | |
1733 | - '@rspack/binding-win32-arm64-msvc@1.0.14': | |
1734 | - resolution: {integrity: sha512-SjeYw7qqRHYZ5RPClu+ffKZsShQdU3amA1OwC3M0AS6dbfEcji8482St3Y8Z+QSzYRapCEZij9LMM/9ypEhISg==} | |
1735 | - cpu: [arm64] | |
1736 | - os: [win32] | |
1737 | - | |
1738 | - '@rspack/binding-win32-arm64-msvc@1.1.8': | |
1739 | - resolution: {integrity: sha512-u+na3gxhzeksm4xZyAzn1+XWo5a5j7hgWA/KcFPDQ8qQNkRknx4jnQMxVtcZ9pLskAYV4AcOV/AIximx7zvv8A==} | |
1750 | + '@rspack/binding-win32-arm64-msvc@1.3.5': | |
1751 | + resolution: {integrity: sha512-k9vf/WgEwxtXzV4la1H6eL07GIlvNjdPdvo1AJZdu0Zcnm600Kv5NSBjySJCp3zUHIKkCE9A0+ibifqbliG0fw==} | |
1740 | 1752 | cpu: [arm64] |
1741 | 1753 | os: [win32] |
1742 | 1754 | |
1743 | - '@rspack/binding-win32-ia32-msvc@1.0.14': | |
1744 | - resolution: {integrity: sha512-m1gUiVyz3Z3VYIK/Ayo5CVHBjnEeRk9a+KIpKSsq1yhZItnMgjtr4bKabU9vjxalO4UoaSmVzODJI8lJBlnn5Q==} | |
1745 | - cpu: [ia32] | |
1746 | - os: [win32] | |
1747 | - | |
1748 | - '@rspack/binding-win32-ia32-msvc@1.1.8': | |
1749 | - resolution: {integrity: sha512-FijUxym1INd5fFHwVCLuVP8XEAb4Sk1sMwEEQUlugiDra9ZsLaPw4OgPGxbxkD6SB0DeUz9Zq46Xbcf6d3OgfA==} | |
1755 | + '@rspack/binding-win32-ia32-msvc@1.3.5': | |
1756 | + resolution: {integrity: sha512-dGfGJySHC/ktbNkK/FY2vEpFNK4UT+fgChhmUxIyQaHWjloFGVmEr6NttS0GtdtvblfF3tTzkTe9pGMIkdlegw==} | |
1750 | 1757 | cpu: [ia32] |
1751 | 1758 | os: [win32] |
1752 | 1759 | |
1753 | - '@rspack/binding-win32-x64-msvc@1.0.14': | |
1754 | - resolution: {integrity: sha512-Gbeg+bayMF9VP9xmlxySL/TC2XrS6/LZM/pqcNOTLHx6LMG/VXCcmKB0rOZo8MzLXEt8D/lQmQ/B6g7pSaAw0g==} | |
1760 | + '@rspack/binding-win32-x64-msvc@1.3.5': | |
1761 | + resolution: {integrity: sha512-GujYFTr043jse5gdvofsRvltkH/E8G5h3Yu9JG/+6EyQpFJebYm/NpRQrOyqZLIQP39+tbdViTfW4nOpUuurNA==} | |
1755 | 1762 | cpu: [x64] |
1756 | 1763 | os: [win32] |
1757 | 1764 | |
1758 | - '@rspack/binding-win32-x64-msvc@1.1.8': | |
1759 | - resolution: {integrity: sha512-SBzIcND4qpDt71jlu1MCDxt335tqInT3YID9V4DoQ4t8wgM/uad7EgKOWKTK6vc2RRaOIShfS2XzqjNUxPXh4w==} | |
1760 | - cpu: [x64] | |
1761 | - os: [win32] | |
1762 | - | |
1763 | - '@rspack/binding@1.0.14': | |
1764 | - resolution: {integrity: sha512-0wWqFvr9hkF4LgNPgWfkTU0hhkZAMvOytoCs2p+wDX1Up1E/SgJ1U1JAsCxsl1XtUKm7mRvdWHzJmHbza3y89Q==} | |
1765 | - | |
1766 | - '@rspack/binding@1.1.8': | |
1767 | - resolution: {integrity: sha512-+/JzXx1HctfgPj+XtsCTbRkxiaOfAXGZZLEvs7jgp04WgWRSZ5u97WRCePNPvy+sCfOEH/2zw2ZK36Z7oQRGhQ==} | |
1765 | + '@rspack/binding@1.3.5': | |
1766 | + resolution: {integrity: sha512-2oluCT+iBnTg0w7XfR8AmfkvgMPSuqEndzhrlHY//qgyyI04CW1lCMgsh+9wcSOUWUKYSOMCiGiVlYFtae5Lcg==} | |
1768 | 1767 | |
1769 | - '@rspack/core@1.0.14': | |
1770 | - resolution: {integrity: sha512-xHl23lxJZNjItGc5YuE9alz3yjb56y7EgJmAcBMPHMqgjtUt8rBu4xd/cSUjbr9/lLF9N4hdyoJiPJOFs9LEjw==} | |
1768 | + '@rspack/core@1.3.5': | |
1769 | + resolution: {integrity: sha512-PwIpzXj9wjHM0Ohq6geIKPoh3yNb5oSK74gqzs0plR7pTYLbhrjG/1DSV/JLFF4C5WCpLHHiDEX5E0IYm2Aqeg==} | |
1771 | 1770 | engines: {node: '>=16.0.0'} |
1772 | 1771 | peerDependencies: |
1772 | + '@rspack/tracing': ^1.x | |
1773 | 1773 | '@swc/helpers': '>=0.5.1' |
1774 | 1774 | peerDependenciesMeta: |
1775 | - '@swc/helpers': | |
1775 | + '@rspack/tracing': | |
1776 | 1776 | optional: true |
1777 | - | |
1778 | - '@rspack/core@1.1.8': | |
1779 | - resolution: {integrity: sha512-pcZtcj5iXLCuw9oElTYC47bp/RQADm/MMEb3djHdwJuSlFWfWPQi5QFgJ/lJAxIW9UNHnTFrYtytycfjpuoEcA==} | |
1780 | - engines: {node: '>=16.0.0'} | |
1781 | - peerDependencies: | |
1782 | - '@swc/helpers': '>=0.5.1' | |
1783 | - peerDependenciesMeta: | |
1784 | 1777 | '@swc/helpers': |
1785 | 1778 | optional: true |
1786 | 1779 | |
... | ... | @@ -1788,17 +1781,15 @@ packages: |
1788 | 1781 | resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==} |
1789 | 1782 | engines: {node: '>=16.0.0'} |
1790 | 1783 | |
1791 | - '@rspack/plugin-react-refresh@1.0.1': | |
1792 | - resolution: {integrity: sha512-KSBc3bsr3mrAPViv7w9MpE9KEWm6q87EyRXyHlRfJ9PpQ56NbX9KZ7AXo7jPeECb0q5sfpM2PSEf+syBiMgLSw==} | |
1784 | + '@rspack/plugin-react-refresh@1.2.1': | |
1785 | + resolution: {integrity: sha512-zqf81473NYGpp/D4BOC0jmszZS4WFUUBNPK6auQB0zHxyyBzSIW+KjXpeNqCyTROJPZvwPr/Z33LCumR0Vd4Pg==} | |
1793 | 1786 | peerDependencies: |
1794 | 1787 | react-refresh: '>=0.10.0 <1.0.0' |
1788 | + webpack-hot-middleware: 2.x | |
1795 | 1789 | peerDependenciesMeta: |
1796 | - react-refresh: | |
1790 | + webpack-hot-middleware: | |
1797 | 1791 | optional: true |
1798 | 1792 | |
1799 | - '@rtsao/scc@1.1.0': | |
1800 | - resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} | |
1801 | - | |
1802 | 1793 | '@sinclair/typebox@0.27.8': |
1803 | 1794 | resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} |
1804 | 1795 | |
... | ... | @@ -1879,23 +1870,93 @@ packages: |
1879 | 1870 | peerDependencies: |
1880 | 1871 | '@svgr/core': '*' |
1881 | 1872 | |
1873 | + '@swc/core-darwin-arm64@1.10.18': | |
1874 | + resolution: {integrity: sha512-FdGqzAIKVQJu8ROlnHElP59XAUsUzCFSNsou+tY/9ba+lhu8R9v0OI5wXiPErrKGZpQFMmx/BPqqhx3X4SuGNg==} | |
1875 | + engines: {node: '>=10'} | |
1876 | + cpu: [arm64] | |
1877 | + os: [darwin] | |
1878 | + | |
1879 | + '@swc/core-darwin-x64@1.10.18': | |
1880 | + resolution: {integrity: sha512-RZ73gZRituL/ZVLgrW6BYnQ5g8tuStG4cLUiPGJsUZpUm0ullSH6lHFvZTCBNFTfpQChG6eEhi2IdG6DwFp1lw==} | |
1881 | + engines: {node: '>=10'} | |
1882 | + cpu: [x64] | |
1883 | + os: [darwin] | |
1884 | + | |
1885 | + '@swc/core-linux-arm-gnueabihf@1.10.18': | |
1886 | + resolution: {integrity: sha512-8iJqI3EkxJuuq21UHoen1VS+QlS23RvynRuk95K+Q2HBjygetztCGGEc+Xelx9a0uPkDaaAtFvds4JMDqb9SAA==} | |
1887 | + engines: {node: '>=10'} | |
1888 | + cpu: [arm] | |
1889 | + os: [linux] | |
1890 | + | |
1891 | + '@swc/core-linux-arm64-gnu@1.10.18': | |
1892 | + resolution: {integrity: sha512-8f1kSktWzMB6PG+r8lOlCfXz5E8Qhsmfwonn77T/OfjvGwQaWrcoASh2cdjpk3dydbf8jsKGPQE1lSc7GyjXRQ==} | |
1893 | + engines: {node: '>=10'} | |
1894 | + cpu: [arm64] | |
1895 | + os: [linux] | |
1896 | + libc: [glibc] | |
1897 | + | |
1898 | + '@swc/core-linux-arm64-musl@1.10.18': | |
1899 | + resolution: {integrity: sha512-4rv+E4VLdgQw6zjbTAauCAEExxChvxMpBUMCiZweTNPKbJJ2dY6BX2WGJ1ea8+RcgqR/Xysj3AFbOz1LBz6dGA==} | |
1900 | + engines: {node: '>=10'} | |
1901 | + cpu: [arm64] | |
1902 | + os: [linux] | |
1903 | + libc: [musl] | |
1904 | + | |
1905 | + '@swc/core-linux-x64-gnu@1.10.18': | |
1906 | + resolution: {integrity: sha512-vTNmyRBVP+sZca+vtwygYPGTNudTU6Gl6XhaZZ7cEUTBr8xvSTgEmYXoK/2uzyXpaTUI4Bmtp1x81cGN0mMoLQ==} | |
1907 | + engines: {node: '>=10'} | |
1908 | + cpu: [x64] | |
1909 | + os: [linux] | |
1910 | + libc: [glibc] | |
1911 | + | |
1912 | + '@swc/core-linux-x64-musl@1.10.18': | |
1913 | + resolution: {integrity: sha512-1TZPReKhFCeX776XaT6wegknfg+g3zODve+r4oslFHI+g7cInfWlxoGNDS3niPKyuafgCdOjme2g3OF+zzxfsQ==} | |
1914 | + engines: {node: '>=10'} | |
1915 | + cpu: [x64] | |
1916 | + os: [linux] | |
1917 | + libc: [musl] | |
1918 | + | |
1919 | + '@swc/core-win32-arm64-msvc@1.10.18': | |
1920 | + resolution: {integrity: sha512-o/2CsaWSN3bkzVQ6DA+BiFKSVEYvhWGA1h+wnL2zWmIDs2Knag54sOEXZkCaf8YQyZesGeXJtPEy9hh/vjJgkA==} | |
1921 | + engines: {node: '>=10'} | |
1922 | + cpu: [arm64] | |
1923 | + os: [win32] | |
1924 | + | |
1925 | + '@swc/core-win32-ia32-msvc@1.10.18': | |
1926 | + resolution: {integrity: sha512-eTPASeJtk4mJDfWiYEiOC6OYUi/N7meHbNHcU8e+aKABonhXrIo/FmnTE8vsUtC6+jakT1TQBdiQ8fzJ1kJVwA==} | |
1927 | + engines: {node: '>=10'} | |
1928 | + cpu: [ia32] | |
1929 | + os: [win32] | |
1930 | + | |
1931 | + '@swc/core-win32-x64-msvc@1.10.18': | |
1932 | + resolution: {integrity: sha512-1Dud8CDBnc34wkBOboFBQud9YlV1bcIQtKSg7zC8LtwR3h+XAaCayZPkpGmmAlCv1DLQPvkF+s0JcaVC9mfffQ==} | |
1933 | + engines: {node: '>=10'} | |
1934 | + cpu: [x64] | |
1935 | + os: [win32] | |
1936 | + | |
1937 | + '@swc/core@1.10.18': | |
1938 | + resolution: {integrity: sha512-IUWKD6uQYGRy8w2X9EZrtYg1O3SCijlHbCXzMaHQYc1X7yjijQh4H3IVL9ssZZyVp2ZDfQZu4bD5DWxxvpyjvg==} | |
1939 | + engines: {node: '>=10'} | |
1940 | + peerDependencies: | |
1941 | + '@swc/helpers': '*' | |
1942 | + peerDependenciesMeta: | |
1943 | + '@swc/helpers': | |
1944 | + optional: true | |
1945 | + | |
1882 | 1946 | '@swc/counter@0.1.3': |
1883 | 1947 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} |
1884 | 1948 | |
1885 | - '@swc/helpers@0.5.1': | |
1886 | - resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} | |
1887 | - | |
1888 | 1949 | '@swc/helpers@0.5.13': |
1889 | 1950 | resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} |
1890 | 1951 | |
1891 | - '@swc/helpers@0.5.15': | |
1892 | - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} | |
1952 | + '@swc/helpers@0.5.17': | |
1953 | + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} | |
1893 | 1954 | |
1894 | - '@swc/helpers@0.5.3': | |
1895 | - resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==} | |
1955 | + '@swc/plugin-styled-components@7.1.3': | |
1956 | + resolution: {integrity: sha512-aSGXNzGC8rvGHkhTsTDTq+8eeaN/LxvvBA5Yot7eT3uNSDEGFnrsZIeq3GBlKEDp6abJ3eFXdauxq0fItEXcbQ==} | |
1896 | 1957 | |
1897 | - '@swc/plugin-styled-components@5.0.0': | |
1898 | - resolution: {integrity: sha512-c9WCV2hU4OxfczzeABNFwkLftAovP7IeHPX0nxqu1HMn4x/T6MjWoJ22hspBv32NpUwGlvIgRG3SyHRHE80enw==} | |
1958 | + '@swc/types@0.1.21': | |
1959 | + resolution: {integrity: sha512-2YEtj5HJVbKivud9N4bpPBAyZhj4S2Ipe5LkUG94alTpr7in/GU/EARgPAd3BwU+YOmFVJC2+kjqhGRi3r0ZpQ==} | |
1899 | 1960 | |
1900 | 1961 | '@tanstack/react-virtual@3.11.2': |
1901 | 1962 | resolution: {integrity: sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==} |
... | ... | @@ -1970,9 +2031,6 @@ packages: |
1970 | 2031 | '@types/json-schema@7.0.15': |
1971 | 2032 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} |
1972 | 2033 | |
1973 | - '@types/json5@0.0.29': | |
1974 | - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} | |
1975 | - | |
1976 | 2034 | '@types/jsonfile@6.1.4': |
1977 | 2035 | resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} |
1978 | 2036 | |
... | ... | @@ -2109,13 +2167,8 @@ packages: |
2109 | 2167 | peerDependencies: |
2110 | 2168 | react: '>= 16.8.0' |
2111 | 2169 | |
2112 | - '@vercel/nft@0.26.5': | |
2113 | - resolution: {integrity: sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==} | |
2114 | - engines: {node: '>=16'} | |
2115 | - hasBin: true | |
2116 | - | |
2117 | - '@vercel/nft@0.27.10': | |
2118 | - resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==} | |
2170 | + '@vercel/nft@0.27.3': | |
2171 | + resolution: {integrity: sha512-oySTdDSzUAFDXpsSLk9Q943o+/Yu/+TCFxnehpFQEf/3khi2stMpTHPVNwFdvZq/Z4Ky93lE+MGHpXCRpMkSCA==} | |
2119 | 2172 | engines: {node: '>=16'} |
2120 | 2173 | hasBin: true |
2121 | 2174 | |
... | ... | @@ -2204,10 +2257,6 @@ packages: |
2204 | 2257 | abbrev@1.1.1: |
2205 | 2258 | resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} |
2206 | 2259 | |
2207 | - abbrev@2.0.0: | |
2208 | - resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==} | |
2209 | - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} | |
2210 | - | |
2211 | 2260 | abort-controller@3.0.0: |
2212 | 2261 | resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} |
2213 | 2262 | engines: {node: '>=6.5'} |
... | ... | @@ -2250,10 +2299,6 @@ packages: |
2250 | 2299 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} |
2251 | 2300 | engines: {node: '>= 6.0.0'} |
2252 | 2301 | |
2253 | - agent-base@7.1.3: | |
2254 | - resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} | |
2255 | - engines: {node: '>= 14'} | |
2256 | - | |
2257 | 2302 | ahooks@3.8.4: |
2258 | 2303 | resolution: {integrity: sha512-39wDEw2ZHvypaT14EpMMk4AzosHWt0z9bulY0BeDsvc9PqJEV+Kjh/4TZfftSsotBMq52iYIOFPd3PR56e0ZJg==} |
2259 | 2304 | engines: {node: '>=8.0.0'} |
... | ... | @@ -2268,11 +2313,6 @@ packages: |
2268 | 2313 | ajv: |
2269 | 2314 | optional: true |
2270 | 2315 | |
2271 | - ajv-keywords@3.5.2: | |
2272 | - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} | |
2273 | - peerDependencies: | |
2274 | - ajv: ^6.9.1 | |
2275 | - | |
2276 | 2316 | ajv-keywords@5.1.0: |
2277 | 2317 | resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} |
2278 | 2318 | peerDependencies: |
... | ... | @@ -2380,10 +2420,6 @@ packages: |
2380 | 2420 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} |
2381 | 2421 | engines: {node: '>= 0.4'} |
2382 | 2422 | |
2383 | - array.prototype.findlastindex@1.2.5: | |
2384 | - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} | |
2385 | - engines: {node: '>= 0.4'} | |
2386 | - | |
2387 | 2423 | array.prototype.flat@1.3.3: |
2388 | 2424 | resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} |
2389 | 2425 | engines: {node: '>= 0.4'} |
... | ... | @@ -2431,9 +2467,10 @@ packages: |
2431 | 2467 | |
2432 | 2468 | audio-context-polyfill@1.0.0: |
2433 | 2469 | resolution: {integrity: sha512-Ex1jZc8e3AIiOBm8Tn0oS4yZ8aT5VCLygaov+fxJ4ymgUB2GPqW5DtQ8NBpR2dfvSR6RjWvMU8+nDwIE/he49w==} |
2470 | + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. | |
2434 | 2471 | |
2435 | - autoprefixer@10.4.20: | |
2436 | - resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} | |
2472 | + autoprefixer@10.4.21: | |
2473 | + resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==} | |
2437 | 2474 | engines: {node: ^10 || ^12 || >=14} |
2438 | 2475 | hasBin: true |
2439 | 2476 | peerDependencies: |
... | ... | @@ -2446,8 +2483,8 @@ packages: |
2446 | 2483 | axios@1.7.9: |
2447 | 2484 | resolution: {integrity: sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==} |
2448 | 2485 | |
2449 | - babel-loader@9.1.3: | |
2450 | - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} | |
2486 | + babel-loader@9.2.1: | |
2487 | + resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} | |
2451 | 2488 | engines: {node: '>= 14.15.0'} |
2452 | 2489 | peerDependencies: |
2453 | 2490 | '@babel/core': ^7.12.0 |
... | ... | @@ -2584,6 +2621,11 @@ packages: |
2584 | 2621 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} |
2585 | 2622 | hasBin: true |
2586 | 2623 | |
2624 | + browserslist@4.24.4: | |
2625 | + resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} | |
2626 | + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} | |
2627 | + hasBin: true | |
2628 | + | |
2587 | 2629 | buffer-builder@0.2.0: |
2588 | 2630 | resolution: {integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==} |
2589 | 2631 | |
... | ... | @@ -2654,6 +2696,9 @@ packages: |
2654 | 2696 | caniuse-lite@1.0.30001690: |
2655 | 2697 | resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} |
2656 | 2698 | |
2699 | + caniuse-lite@1.0.30001714: | |
2700 | + resolution: {integrity: sha512-mtgapdwDLSSBnCI3JokHM7oEQBLxiJKVRtg10AxM1AyeiKcM96f0Mkbqeq+1AbiCtvMcHRulAAEMu693JrSWqg==} | |
2701 | + | |
2657 | 2702 | center-align@0.1.3: |
2658 | 2703 | resolution: {integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==} |
2659 | 2704 | engines: {node: '>=0.10.0'} |
... | ... | @@ -2681,10 +2726,6 @@ packages: |
2681 | 2726 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} |
2682 | 2727 | engines: {node: '>=10'} |
2683 | 2728 | |
2684 | - chownr@3.0.0: | |
2685 | - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} | |
2686 | - engines: {node: '>=18'} | |
2687 | - | |
2688 | 2729 | chrome-trace-event@1.0.4: |
2689 | 2730 | resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} |
2690 | 2731 | engines: {node: '>=6.0'} |
... | ... | @@ -2803,10 +2844,6 @@ packages: |
2803 | 2844 | resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} |
2804 | 2845 | engines: {node: '>= 0.10.0'} |
2805 | 2846 | |
2806 | - consola@3.3.3: | |
2807 | - resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==} | |
2808 | - engines: {node: ^14.18.0 || >=16.10.0} | |
2809 | - | |
2810 | 2847 | console-browserify@1.2.0: |
2811 | 2848 | resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} |
2812 | 2849 | |
... | ... | @@ -2845,14 +2882,11 @@ packages: |
2845 | 2882 | core-js-pure@3.39.0: |
2846 | 2883 | resolution: {integrity: sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==} |
2847 | 2884 | |
2848 | - core-js@3.37.1: | |
2849 | - resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} | |
2885 | + core-js@3.40.0: | |
2886 | + resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==} | |
2850 | 2887 | |
2851 | - core-js@3.38.1: | |
2852 | - resolution: {integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==} | |
2853 | - | |
2854 | - core-js@3.39.0: | |
2855 | - resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==} | |
2888 | + core-js@3.41.0: | |
2889 | + resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==} | |
2856 | 2890 | |
2857 | 2891 | core-util-is@1.0.3: |
2858 | 2892 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} |
... | ... | @@ -2977,11 +3011,11 @@ packages: |
2977 | 3011 | peerDependencies: |
2978 | 3012 | postcss: ^8.4.31 |
2979 | 3013 | |
2980 | - cssnano@6.0.1: | |
2981 | - resolution: {integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==} | |
3014 | + cssnano@6.1.2: | |
3015 | + resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} | |
2982 | 3016 | engines: {node: ^14 || ^16 || >=18.0} |
2983 | 3017 | peerDependencies: |
2984 | - postcss: ^8.2.15 | |
3018 | + postcss: ^8.4.31 | |
2985 | 3019 | |
2986 | 3020 | csso@5.0.5: |
2987 | 3021 | resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} |
... | ... | @@ -3023,14 +3057,6 @@ packages: |
3023 | 3057 | supports-color: |
3024 | 3058 | optional: true |
3025 | 3059 | |
3026 | - debug@3.2.7: | |
3027 | - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} | |
3028 | - peerDependencies: | |
3029 | - supports-color: '*' | |
3030 | - peerDependenciesMeta: | |
3031 | - supports-color: | |
3032 | - optional: true | |
3033 | - | |
3034 | 3060 | debug@4.1.1: |
3035 | 3061 | resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} |
3036 | 3062 | deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) |
... | ... | @@ -3253,6 +3279,10 @@ packages: |
3253 | 3279 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} |
3254 | 3280 | engines: {node: '>=0.12'} |
3255 | 3281 | |
3282 | + entities@6.0.0: | |
3283 | + resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} | |
3284 | + engines: {node: '>=0.12'} | |
3285 | + | |
3256 | 3286 | envinfo@7.14.0: |
3257 | 3287 | resolution: {integrity: sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==} |
3258 | 3288 | engines: {node: '>=4'} |
... | ... | @@ -3341,96 +3371,22 @@ packages: |
3341 | 3371 | resolution: {integrity: sha512-Uick451FoL22/wXqyScX3inW8ZlD/GQO7eFXj3bqb6N/ZtuuF00/CwSNIKLbFCJPrX5V4EdQBSgJ/UVnmLRnug==} |
3342 | 3372 | engines: {node: '>=14.16'} |
3343 | 3373 | |
3344 | - eslint-import-resolver-node@0.3.9: | |
3345 | - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} | |
3346 | - | |
3347 | - eslint-module-utils@2.12.0: | |
3348 | - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} | |
3349 | - engines: {node: '>=4'} | |
3374 | + eslint-plugin-jest@27.9.0: | |
3375 | + resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==} | |
3376 | + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} | |
3350 | 3377 | peerDependencies: |
3351 | - '@typescript-eslint/parser': '*' | |
3352 | - eslint: '*' | |
3353 | - eslint-import-resolver-node: '*' | |
3354 | - eslint-import-resolver-typescript: '*' | |
3355 | - eslint-import-resolver-webpack: '*' | |
3378 | + '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0 | |
3379 | + eslint: ^7.0.0 || ^8.0.0 | |
3380 | + jest: '*' | |
3356 | 3381 | peerDependenciesMeta: |
3357 | - '@typescript-eslint/parser': | |
3358 | - optional: true | |
3359 | - eslint: | |
3360 | - optional: true | |
3361 | - eslint-import-resolver-node: | |
3362 | - optional: true | |
3363 | - eslint-import-resolver-typescript: | |
3382 | + '@typescript-eslint/eslint-plugin': | |
3364 | 3383 | optional: true |
3365 | - eslint-import-resolver-webpack: | |
3384 | + jest: | |
3366 | 3385 | optional: true |
3367 | 3386 | |
3368 | - eslint-plugin-es@3.0.1: | |
3369 | - resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} | |
3370 | - engines: {node: '>=8.10.0'} | |
3371 | - peerDependencies: | |
3372 | - eslint: '>=4.19.1' | |
3373 | - | |
3374 | - eslint-plugin-eslint-comments@3.2.0: | |
3375 | - resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} | |
3376 | - engines: {node: '>=6.5.0'} | |
3377 | - peerDependencies: | |
3378 | - eslint: '>=4.19.1' | |
3379 | - | |
3380 | - eslint-plugin-filenames@1.3.2: | |
3381 | - resolution: {integrity: sha512-tqxJTiEM5a0JmRCUYQmxw23vtTxrb2+a3Q2mMOPhFxvt7ZQQJmdiuMby9B/vUAuVMghyP7oET+nIf6EO6CBd/w==} | |
3382 | - peerDependencies: | |
3383 | - eslint: '*' | |
3384 | - | |
3385 | - eslint-plugin-import@2.31.0: | |
3386 | - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} | |
3387 | - engines: {node: '>=4'} | |
3388 | - peerDependencies: | |
3389 | - '@typescript-eslint/parser': '*' | |
3390 | - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 | |
3391 | - peerDependenciesMeta: | |
3392 | - '@typescript-eslint/parser': | |
3393 | - optional: true | |
3394 | - | |
3395 | - eslint-plugin-jest@27.9.0: | |
3396 | - resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==} | |
3397 | - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} | |
3398 | - peerDependencies: | |
3399 | - '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0 | |
3400 | - eslint: ^7.0.0 || ^8.0.0 | |
3401 | - jest: '*' | |
3402 | - peerDependenciesMeta: | |
3403 | - '@typescript-eslint/eslint-plugin': | |
3404 | - optional: true | |
3405 | - jest: | |
3406 | - optional: true | |
3407 | - | |
3408 | - eslint-plugin-node@11.1.0: | |
3409 | - resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} | |
3410 | - engines: {node: '>=8.10.0'} | |
3411 | - peerDependencies: | |
3412 | - eslint: '>=5.16.0' | |
3413 | - | |
3414 | - eslint-plugin-prettier@4.2.1: | |
3415 | - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} | |
3416 | - engines: {node: '>=12.0.0'} | |
3417 | - peerDependencies: | |
3418 | - eslint: '>=7.28.0' | |
3419 | - eslint-config-prettier: '*' | |
3420 | - prettier: '>=2.0.0' | |
3421 | - peerDependenciesMeta: | |
3422 | - eslint-config-prettier: | |
3423 | - optional: true | |
3424 | - | |
3425 | - eslint-plugin-promise@6.6.0: | |
3426 | - resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} | |
3427 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
3428 | - peerDependencies: | |
3429 | - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 | |
3430 | - | |
3431 | - eslint-plugin-react-hooks@4.6.2: | |
3432 | - resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} | |
3433 | - engines: {node: '>=10'} | |
3387 | + eslint-plugin-react-hooks@4.6.2: | |
3388 | + resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==} | |
3389 | + engines: {node: '>=10'} | |
3434 | 3390 | peerDependencies: |
3435 | 3391 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 |
3436 | 3392 | |
... | ... | @@ -3461,20 +3417,12 @@ packages: |
3461 | 3417 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} |
3462 | 3418 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
3463 | 3419 | |
3464 | - eslint-utils@2.1.0: | |
3465 | - resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} | |
3466 | - engines: {node: '>=6'} | |
3467 | - | |
3468 | 3420 | eslint-utils@3.0.0: |
3469 | 3421 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} |
3470 | 3422 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} |
3471 | 3423 | peerDependencies: |
3472 | 3424 | eslint: '>=5' |
3473 | 3425 | |
3474 | - eslint-visitor-keys@1.3.0: | |
3475 | - resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} | |
3476 | - engines: {node: '>=4'} | |
3477 | - | |
3478 | 3426 | eslint-visitor-keys@2.1.0: |
3479 | 3427 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} |
3480 | 3428 | engines: {node: '>=10'} |
... | ... | @@ -3552,9 +3500,6 @@ packages: |
3552 | 3500 | fast-deep-equal@3.1.3: |
3553 | 3501 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} |
3554 | 3502 | |
3555 | - fast-diff@1.3.0: | |
3556 | - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} | |
3557 | - | |
3558 | 3503 | fast-glob@3.3.2: |
3559 | 3504 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} |
3560 | 3505 | engines: {node: '>=8.6.0'} |
... | ... | @@ -3870,6 +3815,9 @@ packages: |
3870 | 3815 | html-entities@2.5.2: |
3871 | 3816 | resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} |
3872 | 3817 | |
3818 | + html-entities@2.6.0: | |
3819 | + resolution: {integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==} | |
3820 | + | |
3873 | 3821 | html-escaper@2.0.2: |
3874 | 3822 | resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} |
3875 | 3823 | |
... | ... | @@ -3902,12 +3850,12 @@ packages: |
3902 | 3850 | html5shiv@3.7.3: |
3903 | 3851 | resolution: {integrity: sha512-SZwGvLGNtgp8GbgFX7oXEp8OR1aBt5LliX6dG0kdD1kl3KhMonN0QcSa/A3TsTgFewaGCbIryQunjayWDXzxmw==} |
3904 | 3852 | |
3853 | + htmlparser2@10.0.0: | |
3854 | + resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} | |
3855 | + | |
3905 | 3856 | htmlparser2@6.1.0: |
3906 | 3857 | resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} |
3907 | 3858 | |
3908 | - htmlparser2@9.1.0: | |
3909 | - resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} | |
3910 | - | |
3911 | 3859 | http-compression@1.0.6: |
3912 | 3860 | resolution: {integrity: sha512-Yy9VFT/0fJhbpSHmqA34CJKZDXLnHoQUP2wbFXY7duOx3nc9Qf8MVJezaXTP7IirvJ9DmUv/vm7qFNu/RntdWw==} |
3913 | 3861 | engines: {node: '>= 4'} |
... | ... | @@ -3923,10 +3871,6 @@ packages: |
3923 | 3871 | resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} |
3924 | 3872 | engines: {node: '>= 6'} |
3925 | 3873 | |
3926 | - https-proxy-agent@7.0.6: | |
3927 | - resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} | |
3928 | - engines: {node: '>= 14'} | |
3929 | - | |
3930 | 3874 | human-signals@1.1.1: |
3931 | 3875 | resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} |
3932 | 3876 | engines: {node: '>=8.12.0'} |
... | ... | @@ -3964,12 +3908,6 @@ packages: |
3964 | 3908 | immer@10.1.1: |
3965 | 3909 | resolution: {integrity: sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==} |
3966 | 3910 | |
3967 | - immer@9.0.21: | |
3968 | - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} | |
3969 | - | |
3970 | - immutable@4.3.7: | |
3971 | - resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==} | |
3972 | - | |
3973 | 3911 | immutable@5.0.3: |
3974 | 3912 | resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} |
3975 | 3913 | |
... | ... | @@ -4264,6 +4202,10 @@ packages: |
4264 | 4202 | resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==} |
4265 | 4203 | hasBin: true |
4266 | 4204 | |
4205 | + jiti@2.4.2: | |
4206 | + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} | |
4207 | + hasBin: true | |
4208 | + | |
4267 | 4209 | js-cookie@3.0.5: |
4268 | 4210 | resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==} |
4269 | 4211 | engines: {node: '>=14'} |
... | ... | @@ -4320,10 +4262,6 @@ packages: |
4320 | 4262 | json3@3.3.3: |
4321 | 4263 | resolution: {integrity: sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==} |
4322 | 4264 | |
4323 | - json5@1.0.2: | |
4324 | - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} | |
4325 | - hasBin: true | |
4326 | - | |
4327 | 4265 | json5@2.2.3: |
4328 | 4266 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} |
4329 | 4267 | engines: {node: '>=6'} |
... | ... | @@ -4371,10 +4309,6 @@ packages: |
4371 | 4309 | lie@3.1.1: |
4372 | 4310 | resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} |
4373 | 4311 | |
4374 | - lilconfig@2.1.0: | |
4375 | - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} | |
4376 | - engines: {node: '>=10'} | |
4377 | - | |
4378 | 4312 | lilconfig@3.1.3: |
4379 | 4313 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} |
4380 | 4314 | engines: {node: '>=14'} |
... | ... | @@ -4403,6 +4337,10 @@ packages: |
4403 | 4337 | resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} |
4404 | 4338 | engines: {node: '>=8.9.0'} |
4405 | 4339 | |
4340 | + loader-utils@3.3.1: | |
4341 | + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} | |
4342 | + engines: {node: '>= 12.13.0'} | |
4343 | + | |
4406 | 4344 | localforage@1.10.0: |
4407 | 4345 | resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} |
4408 | 4346 | |
... | ... | @@ -4422,9 +4360,6 @@ packages: |
4422 | 4360 | resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} |
4423 | 4361 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
4424 | 4362 | |
4425 | - lodash.camelcase@4.3.0: | |
4426 | - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} | |
4427 | - | |
4428 | 4363 | lodash.debounce@4.0.8: |
4429 | 4364 | resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} |
4430 | 4365 | |
... | ... | @@ -4440,18 +4375,12 @@ packages: |
4440 | 4375 | lodash.merge@4.6.2: |
4441 | 4376 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} |
4442 | 4377 | |
4443 | - lodash.snakecase@4.1.1: | |
4444 | - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} | |
4445 | - | |
4446 | 4378 | lodash.truncate@4.4.2: |
4447 | 4379 | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} |
4448 | 4380 | |
4449 | 4381 | lodash.uniq@4.5.0: |
4450 | 4382 | resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} |
4451 | 4383 | |
4452 | - lodash.upperfirst@4.3.1: | |
4453 | - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} | |
4454 | - | |
4455 | 4384 | lodash@4.17.21: |
4456 | 4385 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} |
4457 | 4386 | |
... | ... | @@ -4484,6 +4413,9 @@ packages: |
4484 | 4413 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} |
4485 | 4414 | engines: {node: '>=10'} |
4486 | 4415 | |
4416 | + magic-string@0.30.17: | |
4417 | + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} | |
4418 | + | |
4487 | 4419 | make-dir@2.1.0: |
4488 | 4420 | resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} |
4489 | 4421 | engines: {node: '>=6'} |
... | ... | @@ -4640,10 +4572,6 @@ packages: |
4640 | 4572 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} |
4641 | 4573 | engines: {node: '>= 8'} |
4642 | 4574 | |
4643 | - minizlib@3.0.1: | |
4644 | - resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==} | |
4645 | - engines: {node: '>= 18'} | |
4646 | - | |
4647 | 4575 | mkdirp@0.5.6: |
4648 | 4576 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} |
4649 | 4577 | hasBin: true |
... | ... | @@ -4653,11 +4581,6 @@ packages: |
4653 | 4581 | engines: {node: '>=10'} |
4654 | 4582 | hasBin: true |
4655 | 4583 | |
4656 | - mkdirp@3.0.1: | |
4657 | - resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} | |
4658 | - engines: {node: '>=10'} | |
4659 | - hasBin: true | |
4660 | - | |
4661 | 4584 | mlly@1.6.1: |
4662 | 4585 | resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==} |
4663 | 4586 | |
... | ... | @@ -4701,8 +4624,8 @@ packages: |
4701 | 4624 | natural-compare@1.4.0: |
4702 | 4625 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} |
4703 | 4626 | |
4704 | - ndepe@0.1.4: | |
4705 | - resolution: {integrity: sha512-7nDU02FP8huhswA1oarhpEmq6Vtf0ijL6wpY3WI867aBj4f5IKetEs90m24vifXNdChsyOYAN+ks4ywW5EgcOg==} | |
4627 | + ndepe@0.1.8: | |
4628 | + resolution: {integrity: sha512-0mvZ1o5F0GStEzsZIrlGAYmLOtrILwMCh2vHAT1J2qZdyCqgMUo/5FBVk1B54pmCZCDxOS8mMm3MAIW5nCDL3w==} | |
4706 | 4629 | |
4707 | 4630 | negotiator@0.6.3: |
4708 | 4631 | resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} |
... | ... | @@ -4735,11 +4658,6 @@ packages: |
4735 | 4658 | engines: {node: '>=6'} |
4736 | 4659 | hasBin: true |
4737 | 4660 | |
4738 | - nopt@8.0.0: | |
4739 | - resolution: {integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==} | |
4740 | - engines: {node: ^18.17.0 || >=20.5.0} | |
4741 | - hasBin: true | |
4742 | - | |
4743 | 4661 | normalize-package-data@2.5.0: |
4744 | 4662 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} |
4745 | 4663 | |
... | ... | @@ -4802,10 +4720,6 @@ packages: |
4802 | 4720 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} |
4803 | 4721 | engines: {node: '>= 0.4'} |
4804 | 4722 | |
4805 | - object.groupby@1.0.3: | |
4806 | - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} | |
4807 | - engines: {node: '>= 0.4'} | |
4808 | - | |
4809 | 4723 | object.values@1.2.1: |
4810 | 4724 | resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} |
4811 | 4725 | engines: {node: '>= 0.4'} |
... | ... | @@ -4978,10 +4892,6 @@ packages: |
4978 | 4892 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} |
4979 | 4893 | engines: {node: '>=8.6'} |
4980 | 4894 | |
4981 | - picomatch@4.0.2: | |
4982 | - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} | |
4983 | - engines: {node: '>=12'} | |
4984 | - | |
4985 | 4895 | picturefill@3.0.3: |
4986 | 4896 | resolution: {integrity: sha512-JDdx+3i4fs2pkqwWZJgGEM2vFWsq+01YsQFT9CKPGuv2Q0xSdrQZoxi9XwyNARTgxiOdgoAwWQRluLRe/JQX2g==} |
4987 | 4897 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -5297,14 +5207,14 @@ packages: |
5297 | 5207 | resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} |
5298 | 5208 | engines: {node: ^10 || ^12 || >=14} |
5299 | 5209 | |
5210 | + postcss@8.5.3: | |
5211 | + resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} | |
5212 | + engines: {node: ^10 || ^12 || >=14} | |
5213 | + | |
5300 | 5214 | prelude-ls@1.2.1: |
5301 | 5215 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} |
5302 | 5216 | engines: {node: '>= 0.8.0'} |
5303 | 5217 | |
5304 | - prettier-linter-helpers@1.0.0: | |
5305 | - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} | |
5306 | - engines: {node: '>=6.0.0'} | |
5307 | - | |
5308 | 5218 | prettier-plugin-organize-imports@3.2.4: |
5309 | 5219 | resolution: {integrity: sha512-6m8WBhIp0dfwu0SkgfOxJqh+HpdyfqSSLfKKRZSFbDuEQXDDndb8fTpRWkUrX/uBenkex3MgnVk0J3b3Y5byog==} |
5310 | 5220 | peerDependencies: |
... | ... | @@ -5323,11 +5233,6 @@ packages: |
5323 | 5233 | peerDependencies: |
5324 | 5234 | prettier: '>= 2.0.0' |
5325 | 5235 | |
5326 | - prettier@2.8.8: | |
5327 | - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} | |
5328 | - engines: {node: '>=10.13.0'} | |
5329 | - hasBin: true | |
5330 | - | |
5331 | 5236 | prettier@3.4.2: |
5332 | 5237 | resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} |
5333 | 5238 | engines: {node: '>=14'} |
... | ... | @@ -5715,8 +5620,8 @@ packages: |
5715 | 5620 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} |
5716 | 5621 | engines: {node: '>=0.10.0'} |
5717 | 5622 | |
5718 | - react-refresh@0.16.0: | |
5719 | - resolution: {integrity: sha512-FPvF2XxTSikpJxcr+bHut2H4gJ17+18Uy20D5/F+SKzFap62R3cM5wH6b8WN3LyGSYeQilLEcJcR1fjBSI2S1A==} | |
5623 | + react-refresh@0.17.0: | |
5624 | + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} | |
5720 | 5625 | engines: {node: '>=0.10.0'} |
5721 | 5626 | |
5722 | 5627 | react-router-dom@6.27.0: |
... | ... | @@ -5788,14 +5693,6 @@ packages: |
5788 | 5693 | reduce-configs@1.1.0: |
5789 | 5694 | resolution: {integrity: sha512-DQxy6liNadHfrLahZR7lMdc227NYVaQZhY5FMsxLEjX8X0SCuH+ESHSLCoz2yDZFq1/CLMDOAHdsEHwOEXKtvg==} |
5790 | 5695 | |
5791 | - redux-promise-middleware@6.2.0: | |
5792 | - resolution: {integrity: sha512-TEzfMeLX63gju2WqkdFQlQMvUGYzFvJNePIJJsBlbPHs3Txsbc/5Rjhmtha1XdMU6lkeiIlp1Qx7AR3Zo9he9g==} | |
5793 | - peerDependencies: | |
5794 | - redux: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 | |
5795 | - | |
5796 | - redux@4.2.1: | |
5797 | - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} | |
5798 | - | |
5799 | 5696 | reflect.getprototypeof@1.0.9: |
5800 | 5697 | resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} |
5801 | 5698 | engines: {node: '>= 0.4'} |
... | ... | @@ -5821,10 +5718,6 @@ packages: |
5821 | 5718 | resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} |
5822 | 5719 | engines: {node: '>= 0.4'} |
5823 | 5720 | |
5824 | - regexpp@3.2.0: | |
5825 | - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} | |
5826 | - engines: {node: '>=8'} | |
5827 | - | |
5828 | 5721 | regexpu-core@6.2.0: |
5829 | 5722 | resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} |
5830 | 5723 | engines: {node: '>=4'} |
... | ... | @@ -5901,12 +5794,15 @@ packages: |
5901 | 5794 | ripemd160@2.0.2: |
5902 | 5795 | resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} |
5903 | 5796 | |
5797 | + rsc-html-stream@0.0.5: | |
5798 | + resolution: {integrity: sha512-UhLsi8XLAu1NIBcFZjykoPiSLEAxfkGxkmr/Tnv4KnqhG18A65dVTCWovRvFdpzng6IyVW2f6nTAKz7lw+QhgQ==} | |
5799 | + | |
5904 | 5800 | rslog@1.2.3: |
5905 | 5801 | resolution: {integrity: sha512-antALPJaKBRPBU1X2q9t085K4htWDOOv/K1qhTUk7h0l1ePU/KbDqKJn19eKP0dk7PqMioeA0+fu3gyPXCsXxQ==} |
5906 | 5802 | engines: {node: '>=14.17.6'} |
5907 | 5803 | |
5908 | - rspack-manifest-plugin@5.0.2: | |
5909 | - resolution: {integrity: sha512-VnILlrJfDMM+KvAmbIYFboTwktrr29GtrewSUpwOZc0PGVyh/aoCD5O7i6eKZqVybY1GUv2+LTV/jX/rmOUYgg==} | |
5804 | + rspack-manifest-plugin@5.0.3: | |
5805 | + resolution: {integrity: sha512-DCLSu5KE/ReIOhK2JTCQSI0JIgJ40E2i+2noqINtfhu12+UsK29dgMITEHIpYNR0JggcmmgZIDxPxm9dOV/2vQ==} | |
5910 | 5806 | engines: {node: '>=14'} |
5911 | 5807 | peerDependencies: |
5912 | 5808 | '@rspack/core': 0.x || 1.x |
... | ... | @@ -5943,138 +5839,134 @@ packages: |
5943 | 5839 | safer-buffer@2.1.2: |
5944 | 5840 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} |
5945 | 5841 | |
5946 | - sass-embedded-android-arm64@1.83.0: | |
5947 | - resolution: {integrity: sha512-GBiCvM4a2rkWBLdYDxI6XYnprfk5U5c81g69RC2X6kqPuzxzx8qTArQ9M6keFK4+iDQ5N9QTwFCr0KbZTn+ZNQ==} | |
5842 | + sass-embedded-android-arm64@1.86.3: | |
5843 | + resolution: {integrity: sha512-q+XwFp6WgAv+UgnQhsB8KQ95kppvWAB7DSoJp+8Vino8b9ND+1ai3cUUZPE5u4SnLZrgo5NtrbPvN5KLc4Pfyg==} | |
5948 | 5844 | engines: {node: '>=14.0.0'} |
5949 | 5845 | cpu: [arm64] |
5950 | 5846 | os: [android] |
5951 | 5847 | |
5952 | - sass-embedded-android-arm@1.83.0: | |
5953 | - resolution: {integrity: sha512-uwFSXzJlfbd4Px189xE5l+cxN8+TQpXdQgJec7TIrb4HEY7imabtpYufpVdqUVwT1/uiis5V4+qIEC4Vl5XObQ==} | |
5848 | + sass-embedded-android-arm@1.86.3: | |
5849 | + resolution: {integrity: sha512-UyeXrFzZSvrGbvrWUBcspbsbivGgAgebLGJdSqJulgSyGbA6no3DWQ5Qpdd6+OAUC39BlpPu74Wx9s4RrVuaFw==} | |
5954 | 5850 | engines: {node: '>=14.0.0'} |
5955 | 5851 | cpu: [arm] |
5956 | 5852 | os: [android] |
5957 | 5853 | |
5958 | - sass-embedded-android-ia32@1.83.0: | |
5959 | - resolution: {integrity: sha512-5ATPdGo2SICqAhiJl/Z8KQ23zH4sGgobGgux0TnrNtt83uHZ+r+To/ubVJ7xTkZxed+KJZnIpolGD8dQyQqoTg==} | |
5854 | + sass-embedded-android-ia32@1.86.3: | |
5855 | + resolution: {integrity: sha512-gTJjVh2cRzvGujXj5ApPk/owUTL5SiO7rDtNLrzYAzi1N5HRuLYXqk3h1IQY3+eCOBjGl7mQ9XyySbJs/3hDvg==} | |
5960 | 5856 | engines: {node: '>=14.0.0'} |
5961 | 5857 | cpu: [ia32] |
5962 | 5858 | os: [android] |
5963 | 5859 | |
5964 | - sass-embedded-android-riscv64@1.83.0: | |
5965 | - resolution: {integrity: sha512-aveknUOB8GZewOzVn2Uwk+DKcncTR50Q6vtzslNMGbYnxtgQNHzy8A1qVEviNUruex+pHofppeMK4iMPFAbiEQ==} | |
5860 | + sass-embedded-android-riscv64@1.86.3: | |
5861 | + resolution: {integrity: sha512-Po3JnyiCS16kd6REo1IMUbFGYtvL9O0rmKaXx5vOuBaJD1LPy2LiSSp7TU7wkJ9IxsTDGzFaSeP1I9qb6D8VVg==} | |
5966 | 5862 | engines: {node: '>=14.0.0'} |
5967 | 5863 | cpu: [riscv64] |
5968 | 5864 | os: [android] |
5969 | 5865 | |
5970 | - sass-embedded-android-x64@1.83.0: | |
5971 | - resolution: {integrity: sha512-WqIay/72ncyf9Ph4vS742J3a73wZihWmzFUwpn1OD6lme1Aj4eWzWIve5IVnlTEJgcZcDHu6ECID9IZgehJKoA==} | |
5866 | + sass-embedded-android-x64@1.86.3: | |
5867 | + resolution: {integrity: sha512-+7h3jdDv/0kUFx0BvxYlq2fa7CcHiDPlta6k5OxO5K6jyqJwo9hc0Z052BoYEauWTqZ+vK6bB5rv2BIzq4U9nA==} | |
5972 | 5868 | engines: {node: '>=14.0.0'} |
5973 | 5869 | cpu: [x64] |
5974 | 5870 | os: [android] |
5975 | 5871 | |
5976 | - sass-embedded-darwin-arm64@1.83.0: | |
5977 | - resolution: {integrity: sha512-XQl9QqgxFFIPm/CzHhmppse5o9ocxrbaAdC2/DAnlAqvYWBBtgFqPjGoYlej13h9SzfvNoogx+y9r+Ap+e+hYg==} | |
5872 | + sass-embedded-darwin-arm64@1.86.3: | |
5873 | + resolution: {integrity: sha512-EgLwV4ORm5Hr0DmIXo0Xw/vlzwLnfAiqD2jDXIglkBsc5czJmo4/IBdGXOP65TRnsgJEqvbU3aQhuawX5++x9A==} | |
5978 | 5874 | engines: {node: '>=14.0.0'} |
5979 | 5875 | cpu: [arm64] |
5980 | 5876 | os: [darwin] |
5981 | 5877 | |
5982 | - sass-embedded-darwin-x64@1.83.0: | |
5983 | - resolution: {integrity: sha512-ERQ7Tvp1kFOW3ux4VDFIxb7tkYXHYc+zJpcrbs0hzcIO5ilIRU2tIOK1OrNwrFO6Qxyf7AUuBwYKLAtIU/Nz7g==} | |
5878 | + sass-embedded-darwin-x64@1.86.3: | |
5879 | + resolution: {integrity: sha512-dfKhfrGPRNLWLC82vy/vQGmNKmAiKWpdFuWiePRtg/E95pqw+sCu6080Y6oQLfFu37Iq3MpnXiSpDuSo7UnPWA==} | |
5984 | 5880 | engines: {node: '>=14.0.0'} |
5985 | 5881 | cpu: [x64] |
5986 | 5882 | os: [darwin] |
5987 | 5883 | |
5988 | - sass-embedded-linux-arm64@1.83.0: | |
5989 | - resolution: {integrity: sha512-syEAVTJt4qhaMLxrSwOWa46zdqHJdnqJkLUK+t9aCr8xqBZLPxSUeIGji76uOehQZ1C+KGFj6n9xstHN6wzOJw==} | |
5884 | + sass-embedded-linux-arm64@1.86.3: | |
5885 | + resolution: {integrity: sha512-tYq5rywR53Qtc+0KI6pPipOvW7a47ETY69VxfqI9BR2RKw2hBbaz0bIw6OaOgEBv2/XNwcWb7a4sr7TqgkqKAA==} | |
5990 | 5886 | engines: {node: '>=14.0.0'} |
5991 | 5887 | cpu: [arm64] |
5992 | 5888 | os: [linux] |
5993 | 5889 | |
5994 | - sass-embedded-linux-arm@1.83.0: | |
5995 | - resolution: {integrity: sha512-baG9RYBJxUFmqwDNC9h9ZFElgJoyO3jgHGjzEZ1wHhIS9anpG+zZQvO8bHx3dBpKEImX+DBeLX+CxsFR9n81gQ==} | |
5890 | + sass-embedded-linux-arm@1.86.3: | |
5891 | + resolution: {integrity: sha512-+fVCIH+OR0SMHn2NEhb/VfbpHuUxcPtqMS34OCV3Ka99LYZUJZqth4M3lT/ppGl52mwIVLNYzR4iLe6mdZ6mYA==} | |
5996 | 5892 | engines: {node: '>=14.0.0'} |
5997 | 5893 | cpu: [arm] |
5998 | 5894 | os: [linux] |
5999 | 5895 | |
6000 | - sass-embedded-linux-ia32@1.83.0: | |
6001 | - resolution: {integrity: sha512-RRBxQxMpoxu5+XcSSc6QR/o9asEwUzR8AbCS83RaXcdTIHTa/CccQsiAoDDoPlRsMTLqnzs0LKL4CfOsf7zBbA==} | |
5896 | + sass-embedded-linux-ia32@1.86.3: | |
5897 | + resolution: {integrity: sha512-CmQ5OkqnaeLdaF+bMqlYGooBuenqm3LvEN9H8BLhjkpWiFW8hnYMetiqMcJjhrXLvDw601KGqA5sr/Rsg5s45g==} | |
6002 | 5898 | engines: {node: '>=14.0.0'} |
6003 | 5899 | cpu: [ia32] |
6004 | 5900 | os: [linux] |
6005 | 5901 | |
6006 | - sass-embedded-linux-musl-arm64@1.83.0: | |
6007 | - resolution: {integrity: sha512-Y7juhPHClUO2H5O+u+StRy6SEAcwZ+hTEk5WJdEmo1Bb1gDtfHvJaWB/iFZJ2tW0W1e865AZeUrC4OcOFjyAQA==} | |
5902 | + sass-embedded-linux-musl-arm64@1.86.3: | |
5903 | + resolution: {integrity: sha512-4zOr2C/eW89rxb4ozTfn7lBzyyM5ZigA1ZSRTcAR26Qbg/t2UksLdGnVX9/yxga0d6aOi0IvO/7iM2DPPRRotg==} | |
6008 | 5904 | engines: {node: '>=14.0.0'} |
6009 | 5905 | cpu: [arm64] |
6010 | 5906 | os: [linux] |
6011 | 5907 | |
6012 | - sass-embedded-linux-musl-arm@1.83.0: | |
6013 | - resolution: {integrity: sha512-Yc7u2TelCfBab+PRob9/MNJFh3EooMiz4urvhejXkihTiKSHGCv5YqDdtWzvyb9tY2Jb7YtYREVuHwfdVn3dTQ==} | |
5908 | + sass-embedded-linux-musl-arm@1.86.3: | |
5909 | + resolution: {integrity: sha512-SEm65SQknI4pl+mH5Xf231hOkHJyrlgh5nj4qDbiBG6gFeutaNkNIeRgKEg3cflXchCr8iV/q/SyPgjhhzQb7w==} | |
6014 | 5910 | engines: {node: '>=14.0.0'} |
6015 | 5911 | cpu: [arm] |
6016 | 5912 | os: [linux] |
6017 | 5913 | |
6018 | - sass-embedded-linux-musl-ia32@1.83.0: | |
6019 | - resolution: {integrity: sha512-arQeYwGmwXV8byx5G1PtSzZWW1jbkfR5qrIHMEbTFSAvAxpqjgSvCvrHMOFd73FcMxVaYh4BX9LQNbKinkbEdg==} | |
5914 | + sass-embedded-linux-musl-ia32@1.86.3: | |
5915 | + resolution: {integrity: sha512-84Tcld32LB1loiqUvczWyVBQRCChm0wNLlkT59qF29nxh8njFIVf9yaPgXcSyyjpPoD9Tu0wnq3dvVzoMCh9AQ==} | |
6020 | 5916 | engines: {node: '>=14.0.0'} |
6021 | 5917 | cpu: [ia32] |
6022 | 5918 | os: [linux] |
6023 | 5919 | |
6024 | - sass-embedded-linux-musl-riscv64@1.83.0: | |
6025 | - resolution: {integrity: sha512-E6uzlIWz59rut+Z3XR6mLG915zNzv07ISvj3GUNZENdHM7dF8GQ//ANoIpl5PljMQKp89GnYdvo6kj2gnaBf/g==} | |
5920 | + sass-embedded-linux-musl-riscv64@1.86.3: | |
5921 | + resolution: {integrity: sha512-IxEqoiD7vdNpiOwccybbV93NljBy64wSTkUOknGy21SyV43C8uqESOwTwW9ywa3KufImKm8L3uQAW/B0KhJMWg==} | |
6026 | 5922 | engines: {node: '>=14.0.0'} |
6027 | 5923 | cpu: [riscv64] |
6028 | 5924 | os: [linux] |
6029 | 5925 | |
6030 | - sass-embedded-linux-musl-x64@1.83.0: | |
6031 | - resolution: {integrity: sha512-eAMK6tyGqvqr21r9g8BnR3fQc1rYFj85RGduSQ3xkITZ6jOAnOhuU94N5fwRS852Hpws0lXhET+7JHXgg3U18w==} | |
5926 | + sass-embedded-linux-musl-x64@1.86.3: | |
5927 | + resolution: {integrity: sha512-ePeTPXUxPK6JgHcUfnrkIyDtyt+zlAvF22mVZv6y1g/PZFm1lSfX+Za7TYHg9KaYqaaXDiw6zICX4i44HhR8rA==} | |
6032 | 5928 | engines: {node: '>=14.0.0'} |
6033 | 5929 | cpu: [x64] |
6034 | 5930 | os: [linux] |
6035 | 5931 | |
6036 | - sass-embedded-linux-riscv64@1.83.0: | |
6037 | - resolution: {integrity: sha512-Ojpi78pTv02sy2fUYirRGXHLY3fPnV/bvwuC2i5LwPQw2LpCcFyFTtN0c5h4LJDk9P6wr+/ZB/JXU8tHIOlK+Q==} | |
5932 | + sass-embedded-linux-riscv64@1.86.3: | |
5933 | + resolution: {integrity: sha512-NuXQ72dwfNLe35E+RaXJ4Noq4EkFwM65eWwCwxEWyJO9qxOx1EXiCAJii6x8kkOh5daWuMU0VAI1B9RsJaqqQQ==} | |
6038 | 5934 | engines: {node: '>=14.0.0'} |
6039 | 5935 | cpu: [riscv64] |
6040 | 5936 | os: [linux] |
6041 | 5937 | |
6042 | - sass-embedded-linux-x64@1.83.0: | |
6043 | - resolution: {integrity: sha512-3iLjlXdoPfgZRtX4odhRvka1BQs5mAXqfCtDIQBgh/o0JnGPzJIWWl9bYLpHxK8qb+uyVBxXYgXpI0sCzArBOw==} | |
5938 | + sass-embedded-linux-x64@1.86.3: | |
5939 | + resolution: {integrity: sha512-t8be9zJ5B82+og9bQmIQ83yMGYZMTMrlGA+uGWtYacmwg6w3093dk91Fx0YzNSZBp3Tk60qVYjCZnEIwy60x0g==} | |
6044 | 5940 | engines: {node: '>=14.0.0'} |
6045 | 5941 | cpu: [x64] |
6046 | 5942 | os: [linux] |
6047 | 5943 | |
6048 | - sass-embedded-win32-arm64@1.83.0: | |
6049 | - resolution: {integrity: sha512-iOHw/8/t2dlTW3lOFwG5eUbiwhEyGWawivlKWJ8lkXH7fjMpVx2VO9zCFAm8RvY9xOHJ9sf1L7g5bx3EnNP9BQ==} | |
5944 | + sass-embedded-win32-arm64@1.86.3: | |
5945 | + resolution: {integrity: sha512-4ghuAzjX4q8Nksm0aifRz8hgXMMxS0SuymrFfkfJlrSx68pIgvAge6AOw0edoZoe0Tf5ZbsWUWamhkNyNxkTvw==} | |
6050 | 5946 | engines: {node: '>=14.0.0'} |
6051 | 5947 | cpu: [arm64] |
6052 | 5948 | os: [win32] |
6053 | 5949 | |
6054 | - sass-embedded-win32-ia32@1.83.0: | |
6055 | - resolution: {integrity: sha512-2PxNXJ8Pad4geVcTXY4rkyTr5AwbF8nfrCTDv0ulbTvPhzX2mMKEGcBZUXWn5BeHZTBc6whNMfS7d5fQXR9dDQ==} | |
5950 | + sass-embedded-win32-ia32@1.86.3: | |
5951 | + resolution: {integrity: sha512-tCaK4zIRq9mLRPxLzBAdYlfCuS/xLNpmjunYxeWkIwlJo+k53h1udyXH/FInnQ2GgEz0xMXyvH3buuPgzwWYsw==} | |
6056 | 5952 | engines: {node: '>=14.0.0'} |
6057 | 5953 | cpu: [ia32] |
6058 | 5954 | os: [win32] |
6059 | 5955 | |
6060 | - sass-embedded-win32-x64@1.83.0: | |
6061 | - resolution: {integrity: sha512-muBXkFngM6eLTNqOV0FQi7Dv9s+YRQ42Yem26mosdan/GmJQc81deto6uDTgrYn+bzFNmiXcOdfm+0MkTWK3OQ==} | |
5956 | + sass-embedded-win32-x64@1.86.3: | |
5957 | + resolution: {integrity: sha512-zS+YNKfTF4SnOfpC77VTb0qNZyTXrxnAezSoRV0xnw6HlY+1WawMSSB6PbWtmbvyfXNgpmJUttoTtsvJjRCucg==} | |
6062 | 5958 | engines: {node: '>=14.0.0'} |
6063 | 5959 | cpu: [x64] |
6064 | 5960 | os: [win32] |
6065 | 5961 | |
6066 | - sass-embedded@1.83.0: | |
6067 | - resolution: {integrity: sha512-/8cYZeL39evUqe0o//193na51Q1VWZ61qhxioQvLJwOtWIrX+PgNhCyD8RSuTtmzc4+6+waFZf899bfp/MCUwA==} | |
5962 | + sass-embedded@1.86.3: | |
5963 | + resolution: {integrity: sha512-3pZSp24ibO1hdopj+W9DuiWsZOb2YY6AFRo/jjutKLBkqJGM1nJjXzhAYfzRV+Xn5BX1eTI4bBTE09P0XNHOZg==} | |
6068 | 5964 | engines: {node: '>=16.0.0'} |
6069 | 5965 | hasBin: true |
6070 | 5966 | |
6071 | 5967 | scheduler@0.23.2: |
6072 | 5968 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} |
6073 | 5969 | |
6074 | - schema-utils@3.3.0: | |
6075 | - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} | |
6076 | - engines: {node: '>= 10.13.0'} | |
6077 | - | |
6078 | 5970 | schema-utils@4.3.0: |
6079 | 5971 | resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} |
6080 | 5972 | engines: {node: '>= 10.13.0'} |
... | ... | @@ -6480,10 +6372,6 @@ packages: |
6480 | 6372 | resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} |
6481 | 6373 | engines: {node: '>=10'} |
6482 | 6374 | |
6483 | - tar@7.4.3: | |
6484 | - resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} | |
6485 | - engines: {node: '>=18'} | |
6486 | - | |
6487 | 6375 | terser-webpack-plugin@5.3.11: |
6488 | 6376 | resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==} |
6489 | 6377 | engines: {node: '>= 10.13.0'} |
... | ... | @@ -6500,6 +6388,22 @@ packages: |
6500 | 6388 | uglify-js: |
6501 | 6389 | optional: true |
6502 | 6390 | |
6391 | + terser-webpack-plugin@5.3.14: | |
6392 | + resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==} | |
6393 | + engines: {node: '>= 10.13.0'} | |
6394 | + peerDependencies: | |
6395 | + '@swc/core': '*' | |
6396 | + esbuild: '*' | |
6397 | + uglify-js: '*' | |
6398 | + webpack: ^5.1.0 | |
6399 | + peerDependenciesMeta: | |
6400 | + '@swc/core': | |
6401 | + optional: true | |
6402 | + esbuild: | |
6403 | + optional: true | |
6404 | + uglify-js: | |
6405 | + optional: true | |
6406 | + | |
6503 | 6407 | terser@5.37.0: |
6504 | 6408 | resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} |
6505 | 6409 | engines: {node: '>=10'} |
... | ... | @@ -6566,8 +6470,8 @@ packages: |
6566 | 6470 | resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==} |
6567 | 6471 | engines: {node: '>=12'} |
6568 | 6472 | |
6569 | - ts-checker-rspack-plugin@1.1.0: | |
6570 | - resolution: {integrity: sha512-nhUzSuSjfgVAJjc+vJa9q8uE7MxAbustG9InRp4ylMfIbkqyJjh7gSuEcL//l76ZSwoKcCod+5lv2mNO0Ugh8g==} | |
6473 | + ts-checker-rspack-plugin@1.1.1: | |
6474 | + resolution: {integrity: sha512-BlpPqnfAmV0TcDg58H+1qV8Zb57ilv0x+ajjnxrVQ6BWgC8HzAdc+TycqDOJ4sZZYIV+hywQGozZFGklzbCR6A==} | |
6571 | 6475 | engines: {node: '>=16.0.0'} |
6572 | 6476 | peerDependencies: |
6573 | 6477 | '@rspack/core': ^1.0.0 |
... | ... | @@ -6594,9 +6498,6 @@ packages: |
6594 | 6498 | resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==} |
6595 | 6499 | engines: {node: '>=10.13.0'} |
6596 | 6500 | |
6597 | - tsconfig-paths@3.15.0: | |
6598 | - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} | |
6599 | - | |
6600 | 6501 | tsconfig-paths@4.2.0: |
6601 | 6502 | resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} |
6602 | 6503 | engines: {node: '>=6'} |
... | ... | @@ -6819,8 +6720,8 @@ packages: |
6819 | 6720 | html-webpack-plugin: |
6820 | 6721 | optional: true |
6821 | 6722 | |
6822 | - webpack@5.97.1: | |
6823 | - resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==} | |
6723 | + webpack@5.99.5: | |
6724 | + resolution: {integrity: sha512-q+vHBa6H9qwBLUlHL4Y7L0L1/LlyBKZtS9FHNCQmtayxjI5RKC9yD8gpvLeqGv5lCQp1Re04yi0MF40pf30Pvg==} | |
6824 | 6725 | engines: {node: '>=10.13.0'} |
6825 | 6726 | hasBin: true |
6826 | 6727 | peerDependencies: |
... | ... | @@ -6950,10 +6851,6 @@ packages: |
6950 | 6851 | yallist@4.0.0: |
6951 | 6852 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} |
6952 | 6853 | |
6953 | - yallist@5.0.0: | |
6954 | - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} | |
6955 | - engines: {node: '>=18'} | |
6956 | - | |
6957 | 6854 | yaml@1.10.2: |
6958 | 6855 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} |
6959 | 6856 | engines: {node: '>= 6'} |
... | ... | @@ -7049,6 +6946,8 @@ snapshots: |
7049 | 6946 | |
7050 | 6947 | '@babel/compat-data@7.26.3': {} |
7051 | 6948 | |
6949 | + '@babel/compat-data@7.26.8': {} | |
6950 | + | |
7052 | 6951 | '@babel/core@7.26.0': |
7053 | 6952 | dependencies: |
7054 | 6953 | '@ampproject/remapping': 2.3.0 |
... | ... | @@ -7069,6 +6968,26 @@ snapshots: |
7069 | 6968 | transitivePeerDependencies: |
7070 | 6969 | - supports-color |
7071 | 6970 | |
6971 | + '@babel/core@7.26.10': | |
6972 | + dependencies: | |
6973 | + '@ampproject/remapping': 2.3.0 | |
6974 | + '@babel/code-frame': 7.26.2 | |
6975 | + '@babel/generator': 7.27.0 | |
6976 | + '@babel/helper-compilation-targets': 7.27.0 | |
6977 | + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) | |
6978 | + '@babel/helpers': 7.27.0 | |
6979 | + '@babel/parser': 7.27.0 | |
6980 | + '@babel/template': 7.27.0 | |
6981 | + '@babel/traverse': 7.27.0 | |
6982 | + '@babel/types': 7.27.0 | |
6983 | + convert-source-map: 2.0.0 | |
6984 | + debug: 4.4.0(supports-color@5.5.0) | |
6985 | + gensync: 1.0.0-beta.2 | |
6986 | + json5: 2.2.3 | |
6987 | + semver: 6.3.1 | |
6988 | + transitivePeerDependencies: | |
6989 | + - supports-color | |
6990 | + | |
7072 | 6991 | '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1)': |
7073 | 6992 | dependencies: |
7074 | 6993 | '@babel/core': 7.26.0 |
... | ... | @@ -7091,6 +7010,14 @@ snapshots: |
7091 | 7010 | '@jridgewell/trace-mapping': 0.3.25 |
7092 | 7011 | jsesc: 3.1.0 |
7093 | 7012 | |
7013 | + '@babel/generator@7.27.0': | |
7014 | + dependencies: | |
7015 | + '@babel/parser': 7.27.0 | |
7016 | + '@babel/types': 7.27.0 | |
7017 | + '@jridgewell/gen-mapping': 0.3.8 | |
7018 | + '@jridgewell/trace-mapping': 0.3.25 | |
7019 | + jsesc: 3.1.0 | |
7020 | + | |
7094 | 7021 | '@babel/helper-annotate-as-pure@7.25.9': |
7095 | 7022 | dependencies: |
7096 | 7023 | '@babel/types': 7.26.3 |
... | ... | @@ -7103,6 +7030,14 @@ snapshots: |
7103 | 7030 | lru-cache: 5.1.1 |
7104 | 7031 | semver: 6.3.1 |
7105 | 7032 | |
7033 | + '@babel/helper-compilation-targets@7.27.0': | |
7034 | + dependencies: | |
7035 | + '@babel/compat-data': 7.26.8 | |
7036 | + '@babel/helper-validator-option': 7.25.9 | |
7037 | + browserslist: 4.24.4 | |
7038 | + lru-cache: 5.1.1 | |
7039 | + semver: 6.3.1 | |
7040 | + | |
7106 | 7041 | '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)': |
7107 | 7042 | dependencies: |
7108 | 7043 | '@babel/core': 7.26.0 |
... | ... | @@ -7116,6 +7051,32 @@ snapshots: |
7116 | 7051 | transitivePeerDependencies: |
7117 | 7052 | - supports-color |
7118 | 7053 | |
7054 | + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.10)': | |
7055 | + dependencies: | |
7056 | + '@babel/core': 7.26.10 | |
7057 | + '@babel/helper-annotate-as-pure': 7.25.9 | |
7058 | + '@babel/helper-member-expression-to-functions': 7.25.9 | |
7059 | + '@babel/helper-optimise-call-expression': 7.25.9 | |
7060 | + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10) | |
7061 | + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 | |
7062 | + '@babel/traverse': 7.26.4(supports-color@5.5.0) | |
7063 | + semver: 6.3.1 | |
7064 | + transitivePeerDependencies: | |
7065 | + - supports-color | |
7066 | + | |
7067 | + '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)': | |
7068 | + dependencies: | |
7069 | + '@babel/core': 7.26.10 | |
7070 | + '@babel/helper-annotate-as-pure': 7.25.9 | |
7071 | + '@babel/helper-member-expression-to-functions': 7.25.9 | |
7072 | + '@babel/helper-optimise-call-expression': 7.25.9 | |
7073 | + '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10) | |
7074 | + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 | |
7075 | + '@babel/traverse': 7.27.0 | |
7076 | + semver: 6.3.1 | |
7077 | + transitivePeerDependencies: | |
7078 | + - supports-color | |
7079 | + | |
7119 | 7080 | '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)': |
7120 | 7081 | dependencies: |
7121 | 7082 | '@babel/core': 7.26.0 |
... | ... | @@ -7157,12 +7118,23 @@ snapshots: |
7157 | 7118 | transitivePeerDependencies: |
7158 | 7119 | - supports-color |
7159 | 7120 | |
7121 | + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': | |
7122 | + dependencies: | |
7123 | + '@babel/core': 7.26.10 | |
7124 | + '@babel/helper-module-imports': 7.25.9(supports-color@5.5.0) | |
7125 | + '@babel/helper-validator-identifier': 7.25.9 | |
7126 | + '@babel/traverse': 7.26.4(supports-color@5.5.0) | |
7127 | + transitivePeerDependencies: | |
7128 | + - supports-color | |
7129 | + | |
7160 | 7130 | '@babel/helper-optimise-call-expression@7.25.9': |
7161 | 7131 | dependencies: |
7162 | 7132 | '@babel/types': 7.26.3 |
7163 | 7133 | |
7164 | 7134 | '@babel/helper-plugin-utils@7.25.9': {} |
7165 | 7135 | |
7136 | + '@babel/helper-plugin-utils@7.26.5': {} | |
7137 | + | |
7166 | 7138 | '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)': |
7167 | 7139 | dependencies: |
7168 | 7140 | '@babel/core': 7.26.0 |
... | ... | @@ -7181,6 +7153,24 @@ snapshots: |
7181 | 7153 | transitivePeerDependencies: |
7182 | 7154 | - supports-color |
7183 | 7155 | |
7156 | + '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.10)': | |
7157 | + dependencies: | |
7158 | + '@babel/core': 7.26.10 | |
7159 | + '@babel/helper-member-expression-to-functions': 7.25.9 | |
7160 | + '@babel/helper-optimise-call-expression': 7.25.9 | |
7161 | + '@babel/traverse': 7.26.4(supports-color@5.5.0) | |
7162 | + transitivePeerDependencies: | |
7163 | + - supports-color | |
7164 | + | |
7165 | + '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)': | |
7166 | + dependencies: | |
7167 | + '@babel/core': 7.26.10 | |
7168 | + '@babel/helper-member-expression-to-functions': 7.25.9 | |
7169 | + '@babel/helper-optimise-call-expression': 7.25.9 | |
7170 | + '@babel/traverse': 7.27.0 | |
7171 | + transitivePeerDependencies: | |
7172 | + - supports-color | |
7173 | + | |
7184 | 7174 | '@babel/helper-skip-transparent-expression-wrappers@7.25.9': |
7185 | 7175 | dependencies: |
7186 | 7176 | '@babel/traverse': 7.26.4(supports-color@5.5.0) |
... | ... | @@ -7207,6 +7197,11 @@ snapshots: |
7207 | 7197 | '@babel/template': 7.25.9 |
7208 | 7198 | '@babel/types': 7.26.3 |
7209 | 7199 | |
7200 | + '@babel/helpers@7.27.0': | |
7201 | + dependencies: | |
7202 | + '@babel/template': 7.27.0 | |
7203 | + '@babel/types': 7.27.0 | |
7204 | + | |
7210 | 7205 | '@babel/highlight@7.25.9': |
7211 | 7206 | dependencies: |
7212 | 7207 | '@babel/helper-validator-identifier': 7.25.9 |
... | ... | @@ -7218,6 +7213,10 @@ snapshots: |
7218 | 7213 | dependencies: |
7219 | 7214 | '@babel/types': 7.26.3 |
7220 | 7215 | |
7216 | + '@babel/parser@7.27.0': | |
7217 | + dependencies: | |
7218 | + '@babel/types': 7.27.0 | |
7219 | + | |
7221 | 7220 | '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)': |
7222 | 7221 | dependencies: |
7223 | 7222 | '@babel/core': 7.26.0 |
... | ... | @@ -7262,6 +7261,15 @@ snapshots: |
7262 | 7261 | transitivePeerDependencies: |
7263 | 7262 | - supports-color |
7264 | 7263 | |
7264 | + '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10)': | |
7265 | + dependencies: | |
7266 | + '@babel/core': 7.26.10 | |
7267 | + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) | |
7268 | + '@babel/helper-plugin-utils': 7.25.9 | |
7269 | + '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10) | |
7270 | + transitivePeerDependencies: | |
7271 | + - supports-color | |
7272 | + | |
7265 | 7273 | '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.26.0)': |
7266 | 7274 | dependencies: |
7267 | 7275 | '@babel/core': 7.26.0 |
... | ... | @@ -7287,6 +7295,11 @@ snapshots: |
7287 | 7295 | '@babel/core': 7.26.0 |
7288 | 7296 | '@babel/helper-plugin-utils': 7.25.9 |
7289 | 7297 | |
7298 | + '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10)': | |
7299 | + dependencies: | |
7300 | + '@babel/core': 7.26.10 | |
7301 | + '@babel/helper-plugin-utils': 7.25.9 | |
7302 | + | |
7290 | 7303 | '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)': |
7291 | 7304 | dependencies: |
7292 | 7305 | '@babel/core': 7.26.0 |
... | ... | @@ -7307,6 +7320,11 @@ snapshots: |
7307 | 7320 | '@babel/core': 7.26.0 |
7308 | 7321 | '@babel/helper-plugin-utils': 7.25.9 |
7309 | 7322 | |
7323 | + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)': | |
7324 | + dependencies: | |
7325 | + '@babel/core': 7.26.10 | |
7326 | + '@babel/helper-plugin-utils': 7.25.9 | |
7327 | + | |
7310 | 7328 | '@babel/plugin-syntax-pipeline-operator@7.25.9(@babel/core@7.26.0)': |
7311 | 7329 | dependencies: |
7312 | 7330 | '@babel/core': 7.26.0 |
... | ... | @@ -7317,6 +7335,11 @@ snapshots: |
7317 | 7335 | '@babel/core': 7.26.0 |
7318 | 7336 | '@babel/helper-plugin-utils': 7.25.9 |
7319 | 7337 | |
7338 | + '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)': | |
7339 | + dependencies: | |
7340 | + '@babel/core': 7.26.10 | |
7341 | + '@babel/helper-plugin-utils': 7.25.9 | |
7342 | + | |
7320 | 7343 | '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)': |
7321 | 7344 | dependencies: |
7322 | 7345 | '@babel/core': 7.26.0 |
... | ... | @@ -7364,6 +7387,14 @@ snapshots: |
7364 | 7387 | transitivePeerDependencies: |
7365 | 7388 | - supports-color |
7366 | 7389 | |
7390 | + '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)': | |
7391 | + dependencies: | |
7392 | + '@babel/core': 7.26.10 | |
7393 | + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10) | |
7394 | + '@babel/helper-plugin-utils': 7.25.9 | |
7395 | + transitivePeerDependencies: | |
7396 | + - supports-color | |
7397 | + | |
7367 | 7398 | '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)': |
7368 | 7399 | dependencies: |
7369 | 7400 | '@babel/core': 7.26.0 |
... | ... | @@ -7480,6 +7511,14 @@ snapshots: |
7480 | 7511 | transitivePeerDependencies: |
7481 | 7512 | - supports-color |
7482 | 7513 | |
7514 | + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)': | |
7515 | + dependencies: | |
7516 | + '@babel/core': 7.26.10 | |
7517 | + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) | |
7518 | + '@babel/helper-plugin-utils': 7.25.9 | |
7519 | + transitivePeerDependencies: | |
7520 | + - supports-color | |
7521 | + | |
7483 | 7522 | '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)': |
7484 | 7523 | dependencies: |
7485 | 7524 | '@babel/core': 7.26.0 |
... | ... | @@ -7671,6 +7710,17 @@ snapshots: |
7671 | 7710 | transitivePeerDependencies: |
7672 | 7711 | - supports-color |
7673 | 7712 | |
7713 | + '@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)': | |
7714 | + dependencies: | |
7715 | + '@babel/core': 7.26.10 | |
7716 | + '@babel/helper-annotate-as-pure': 7.25.9 | |
7717 | + '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10) | |
7718 | + '@babel/helper-plugin-utils': 7.26.5 | |
7719 | + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 | |
7720 | + '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10) | |
7721 | + transitivePeerDependencies: | |
7722 | + - supports-color | |
7723 | + | |
7674 | 7724 | '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)': |
7675 | 7725 | dependencies: |
7676 | 7726 | '@babel/core': 7.26.0 |
... | ... | @@ -7799,6 +7849,17 @@ snapshots: |
7799 | 7849 | transitivePeerDependencies: |
7800 | 7850 | - supports-color |
7801 | 7851 | |
7852 | + '@babel/preset-typescript@7.27.0(@babel/core@7.26.10)': | |
7853 | + dependencies: | |
7854 | + '@babel/core': 7.26.10 | |
7855 | + '@babel/helper-plugin-utils': 7.26.5 | |
7856 | + '@babel/helper-validator-option': 7.25.9 | |
7857 | + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10) | |
7858 | + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10) | |
7859 | + '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10) | |
7860 | + transitivePeerDependencies: | |
7861 | + - supports-color | |
7862 | + | |
7802 | 7863 | '@babel/register@7.25.9(@babel/core@7.26.0)': |
7803 | 7864 | dependencies: |
7804 | 7865 | '@babel/core': 7.26.0 |
... | ... | @@ -7818,6 +7879,12 @@ snapshots: |
7818 | 7879 | '@babel/parser': 7.26.3 |
7819 | 7880 | '@babel/types': 7.26.3 |
7820 | 7881 | |
7882 | + '@babel/template@7.27.0': | |
7883 | + dependencies: | |
7884 | + '@babel/code-frame': 7.26.2 | |
7885 | + '@babel/parser': 7.27.0 | |
7886 | + '@babel/types': 7.27.0 | |
7887 | + | |
7821 | 7888 | '@babel/traverse@7.26.4(supports-color@5.5.0)': |
7822 | 7889 | dependencies: |
7823 | 7890 | '@babel/code-frame': 7.26.2 |
... | ... | @@ -7830,11 +7897,63 @@ snapshots: |
7830 | 7897 | transitivePeerDependencies: |
7831 | 7898 | - supports-color |
7832 | 7899 | |
7900 | + '@babel/traverse@7.27.0': | |
7901 | + dependencies: | |
7902 | + '@babel/code-frame': 7.26.2 | |
7903 | + '@babel/generator': 7.27.0 | |
7904 | + '@babel/parser': 7.27.0 | |
7905 | + '@babel/template': 7.27.0 | |
7906 | + '@babel/types': 7.27.0 | |
7907 | + debug: 4.4.0(supports-color@5.5.0) | |
7908 | + globals: 11.12.0 | |
7909 | + transitivePeerDependencies: | |
7910 | + - supports-color | |
7911 | + | |
7833 | 7912 | '@babel/types@7.26.3': |
7834 | 7913 | dependencies: |
7835 | 7914 | '@babel/helper-string-parser': 7.25.9 |
7836 | 7915 | '@babel/helper-validator-identifier': 7.25.9 |
7837 | 7916 | |
7917 | + '@babel/types@7.27.0': | |
7918 | + dependencies: | |
7919 | + '@babel/helper-string-parser': 7.25.9 | |
7920 | + '@babel/helper-validator-identifier': 7.25.9 | |
7921 | + | |
7922 | + '@biomejs/biome@1.9.4': | |
7923 | + optionalDependencies: | |
7924 | + '@biomejs/cli-darwin-arm64': 1.9.4 | |
7925 | + '@biomejs/cli-darwin-x64': 1.9.4 | |
7926 | + '@biomejs/cli-linux-arm64': 1.9.4 | |
7927 | + '@biomejs/cli-linux-arm64-musl': 1.9.4 | |
7928 | + '@biomejs/cli-linux-x64': 1.9.4 | |
7929 | + '@biomejs/cli-linux-x64-musl': 1.9.4 | |
7930 | + '@biomejs/cli-win32-arm64': 1.9.4 | |
7931 | + '@biomejs/cli-win32-x64': 1.9.4 | |
7932 | + | |
7933 | + '@biomejs/cli-darwin-arm64@1.9.4': | |
7934 | + optional: true | |
7935 | + | |
7936 | + '@biomejs/cli-darwin-x64@1.9.4': | |
7937 | + optional: true | |
7938 | + | |
7939 | + '@biomejs/cli-linux-arm64-musl@1.9.4': | |
7940 | + optional: true | |
7941 | + | |
7942 | + '@biomejs/cli-linux-arm64@1.9.4': | |
7943 | + optional: true | |
7944 | + | |
7945 | + '@biomejs/cli-linux-x64-musl@1.9.4': | |
7946 | + optional: true | |
7947 | + | |
7948 | + '@biomejs/cli-linux-x64@1.9.4': | |
7949 | + optional: true | |
7950 | + | |
7951 | + '@biomejs/cli-win32-arm64@1.9.4': | |
7952 | + optional: true | |
7953 | + | |
7954 | + '@biomejs/cli-win32-x64@1.9.4': | |
7955 | + optional: true | |
7956 | + | |
7838 | 7957 | '@bufbuild/protobuf@2.2.3': {} |
7839 | 7958 | |
7840 | 7959 | '@csstools/cascade-layer-name-parser@1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)': |
... | ... | @@ -8111,10 +8230,6 @@ snapshots: |
8111 | 8230 | wrap-ansi: 8.1.0 |
8112 | 8231 | wrap-ansi-cjs: wrap-ansi@7.0.0 |
8113 | 8232 | |
8114 | - '@isaacs/fs-minipass@4.0.1': | |
8115 | - dependencies: | |
8116 | - minipass: 7.1.2 | |
8117 | - | |
8118 | 8233 | '@jest/expect-utils@29.7.0': |
8119 | 8234 | dependencies: |
8120 | 8235 | jest-get-type: 29.6.3 |
... | ... | @@ -8205,120 +8320,34 @@ snapshots: |
8205 | 8320 | - encoding |
8206 | 8321 | - supports-color |
8207 | 8322 | |
8208 | - '@mapbox/node-pre-gyp@2.0.0-rc.0': | |
8209 | - dependencies: | |
8210 | - consola: 3.3.3 | |
8211 | - detect-libc: 2.0.3 | |
8212 | - https-proxy-agent: 7.0.6 | |
8213 | - node-fetch: 2.7.0 | |
8214 | - nopt: 8.0.0 | |
8215 | - semver: 7.6.3 | |
8216 | - tar: 7.4.3 | |
8217 | - transitivePeerDependencies: | |
8218 | - - encoding | |
8219 | - - supports-color | |
8220 | - | |
8221 | - '@modern-js-app/eslint-config@2.59.0(typescript@5.7.2)': | |
8222 | - dependencies: | |
8223 | - '@babel/core': 7.26.0 | |
8224 | - '@babel/eslint-parser': 7.25.9(@babel/core@7.26.0)(eslint@8.57.1) | |
8225 | - '@babel/eslint-plugin': 7.25.9(@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1))(eslint@8.57.1) | |
8226 | - '@modern-js/babel-preset': 2.59.0(@rsbuild/core@1.0.1-rc.4) | |
8227 | - '@rsbuild/core': 1.0.1-rc.4 | |
8228 | - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2) | |
8229 | - '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.7.2) | |
8230 | - eslint: 8.57.1 | |
8231 | - eslint-config-prettier: 8.10.0(eslint@8.57.1) | |
8232 | - eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.1) | |
8233 | - eslint-plugin-filenames: 1.3.2(eslint@8.57.1) | |
8234 | - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1) | |
8235 | - eslint-plugin-node: 11.1.0(eslint@8.57.1) | |
8236 | - eslint-plugin-prettier: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8) | |
8237 | - eslint-plugin-promise: 6.6.0(eslint@8.57.1) | |
8238 | - eslint-plugin-react: 7.37.3(eslint@8.57.1) | |
8239 | - eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1) | |
8240 | - prettier: 2.8.8 | |
8241 | - typescript: 5.7.2 | |
8242 | - transitivePeerDependencies: | |
8243 | - - eslint-import-resolver-typescript | |
8244 | - - eslint-import-resolver-webpack | |
8245 | - - supports-color | |
8246 | - | |
8247 | - '@modern-js-reduck/plugin-auto-actions@1.1.11(@modern-js-reduck/store@1.1.11)': | |
8248 | - dependencies: | |
8249 | - '@modern-js-reduck/store': 1.1.11 | |
8250 | - '@swc/helpers': 0.5.1 | |
8251 | - | |
8252 | - '@modern-js-reduck/plugin-devtools@1.1.11(@modern-js-reduck/store@1.1.11)': | |
8253 | - dependencies: | |
8254 | - '@modern-js-reduck/store': 1.1.11 | |
8255 | - '@redux-devtools/extension': 3.3.0(redux@4.2.1) | |
8256 | - '@swc/helpers': 0.5.1 | |
8257 | - redux: 4.2.1 | |
8258 | - | |
8259 | - '@modern-js-reduck/plugin-effects@1.1.11(@modern-js-reduck/store@1.1.11)': | |
8260 | - dependencies: | |
8261 | - '@modern-js-reduck/store': 1.1.11 | |
8262 | - '@swc/helpers': 0.5.1 | |
8263 | - redux: 4.2.1 | |
8264 | - redux-promise-middleware: 6.2.0(redux@4.2.1) | |
8265 | - | |
8266 | - '@modern-js-reduck/plugin-immutable@1.1.11(@modern-js-reduck/store@1.1.11)': | |
8267 | - dependencies: | |
8268 | - '@modern-js-reduck/store': 1.1.11 | |
8269 | - '@swc/helpers': 0.5.1 | |
8270 | - immer: 9.0.21 | |
8271 | - | |
8272 | - '@modern-js-reduck/react@1.1.11(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8273 | - dependencies: | |
8274 | - '@modern-js-reduck/plugin-auto-actions': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8275 | - '@modern-js-reduck/plugin-devtools': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8276 | - '@modern-js-reduck/plugin-effects': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8277 | - '@modern-js-reduck/plugin-immutable': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8278 | - '@modern-js-reduck/store': 1.1.11 | |
8279 | - '@swc/helpers': 0.5.1 | |
8280 | - hoist-non-react-statics: 3.3.2 | |
8281 | - invariant: 2.2.4 | |
8282 | - react: 18.3.1 | |
8283 | - react-dom: 18.3.1(react@18.3.1) | |
8284 | - optionalDependencies: | |
8285 | - '@types/react': 18.3.18 | |
8286 | - '@types/react-dom': 18.3.5(@types/react@18.3.18) | |
8287 | - | |
8288 | - '@modern-js-reduck/store@1.1.11': | |
8289 | - dependencies: | |
8290 | - '@swc/helpers': 0.5.1 | |
8291 | - redux: 4.2.1 | |
8292 | - | |
8293 | - '@modern-js/app-tools@2.63.4(@rspack/core@1.1.8(@swc/helpers@0.5.15))(@types/webpack@5.28.5(esbuild@0.17.19))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(tsconfig-paths@4.2.0)(type-fest@1.4.0)(typescript@5.7.2)': | |
8323 | + '@modern-js/app-tools@2.67.2(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@types/webpack@5.28.5(esbuild@0.17.19))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(tsconfig-paths@4.2.0)(type-fest@1.4.0)(typescript@5.7.2)': | |
8294 | 8324 | dependencies: |
8295 | 8325 | '@babel/parser': 7.26.3 |
8296 | 8326 | '@babel/traverse': 7.26.4(supports-color@5.5.0) |
8297 | 8327 | '@babel/types': 7.26.3 |
8298 | - '@modern-js/core': 2.63.4 | |
8299 | - '@modern-js/node-bundle-require': 2.63.4 | |
8300 | - '@modern-js/plugin': 2.63.4 | |
8301 | - '@modern-js/plugin-data-loader': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8302 | - '@modern-js/plugin-i18n': 2.63.4 | |
8303 | - '@modern-js/plugin-v2': 2.63.4 | |
8304 | - '@modern-js/prod-server': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8305 | - '@modern-js/rsbuild-plugin-esbuild': 2.63.4 | |
8306 | - '@modern-js/server': 2.63.4(@babel/traverse@7.26.4)(@rsbuild/core@1.1.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tsconfig-paths@4.2.0) | |
8307 | - '@modern-js/server-core': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8308 | - '@modern-js/server-utils': 2.63.4(@babel/traverse@7.26.4)(@rsbuild/core@1.1.12) | |
8309 | - '@modern-js/types': 2.63.4 | |
8310 | - '@modern-js/uni-builder': 2.63.4(@rspack/core@1.1.8(@swc/helpers@0.5.15))(@types/webpack@5.28.5(esbuild@0.17.19))(esbuild@0.17.19)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(type-fest@1.4.0)(typescript@5.7.2) | |
8311 | - '@modern-js/utils': 2.63.4 | |
8312 | - '@rsbuild/core': 1.1.12 | |
8313 | - '@rsbuild/plugin-node-polyfill': 1.2.0(@rsbuild/core@1.1.12) | |
8328 | + '@modern-js/core': 2.67.2 | |
8329 | + '@modern-js/node-bundle-require': 2.67.2 | |
8330 | + '@modern-js/plugin': 2.67.2 | |
8331 | + '@modern-js/plugin-data-loader': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8332 | + '@modern-js/plugin-i18n': 2.67.2 | |
8333 | + '@modern-js/plugin-v2': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8334 | + '@modern-js/prod-server': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8335 | + '@modern-js/rsbuild-plugin-esbuild': 2.67.2 | |
8336 | + '@modern-js/server': 2.67.2(@babel/traverse@7.26.4)(@rsbuild/core@1.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tsconfig-paths@4.2.0) | |
8337 | + '@modern-js/server-core': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8338 | + '@modern-js/server-utils': 2.67.2(@babel/traverse@7.26.4)(@rsbuild/core@1.3.7) | |
8339 | + '@modern-js/types': 2.67.2 | |
8340 | + '@modern-js/uni-builder': 2.67.2(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@types/webpack@5.28.5(esbuild@0.17.19))(esbuild@0.17.19)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(type-fest@1.4.0)(typescript@5.7.2) | |
8341 | + '@modern-js/utils': 2.67.2 | |
8342 | + '@rsbuild/core': 1.3.7 | |
8343 | + '@rsbuild/plugin-node-polyfill': 1.3.0(@rsbuild/core@1.3.7) | |
8314 | 8344 | '@swc/helpers': 0.5.13 |
8315 | - '@vercel/nft': 0.26.5 | |
8316 | 8345 | es-module-lexer: 1.6.0 |
8317 | 8346 | esbuild: 0.17.19 |
8318 | 8347 | esbuild-register: 3.6.0(esbuild@0.17.19) |
8319 | 8348 | flatted: 3.3.2 |
8320 | 8349 | mlly: 1.7.3 |
8321 | - ndepe: 0.1.4 | |
8350 | + ndepe: 0.1.8 | |
8322 | 8351 | pkg-types: 1.3.0 |
8323 | 8352 | std-env: 3.8.0 |
8324 | 8353 | optionalDependencies: |
... | ... | @@ -8326,6 +8355,7 @@ snapshots: |
8326 | 8355 | transitivePeerDependencies: |
8327 | 8356 | - '@parcel/css' |
8328 | 8357 | - '@rspack/core' |
8358 | + - '@rspack/tracing' | |
8329 | 8359 | - '@swc/core' |
8330 | 8360 | - '@swc/css' |
8331 | 8361 | - '@types/webpack' |
... | ... | @@ -8338,7 +8368,6 @@ snapshots: |
8338 | 8368 | - lightningcss |
8339 | 8369 | - react |
8340 | 8370 | - react-dom |
8341 | - - rollup | |
8342 | 8371 | - sockjs-client |
8343 | 8372 | - styled-components |
8344 | 8373 | - supports-color |
... | ... | @@ -8351,15 +8380,15 @@ snapshots: |
8351 | 8380 | - webpack-hot-middleware |
8352 | 8381 | - webpack-plugin-serve |
8353 | 8382 | |
8354 | - '@modern-js/babel-compiler@2.63.4': | |
8383 | + '@modern-js/babel-compiler@2.67.2': | |
8355 | 8384 | dependencies: |
8356 | 8385 | '@babel/core': 7.26.0 |
8357 | - '@modern-js/utils': 2.63.4 | |
8386 | + '@modern-js/utils': 2.67.2 | |
8358 | 8387 | '@swc/helpers': 0.5.13 |
8359 | 8388 | transitivePeerDependencies: |
8360 | 8389 | - supports-color |
8361 | 8390 | |
8362 | - '@modern-js/babel-plugin-module-resolver@2.63.4': | |
8391 | + '@modern-js/babel-plugin-module-resolver@2.67.2': | |
8363 | 8392 | dependencies: |
8364 | 8393 | '@swc/helpers': 0.5.13 |
8365 | 8394 | glob: 8.1.0 |
... | ... | @@ -8367,28 +8396,7 @@ snapshots: |
8367 | 8396 | reselect: 4.1.8 |
8368 | 8397 | resolve: 1.22.10 |
8369 | 8398 | |
8370 | - '@modern-js/babel-preset@2.59.0(@rsbuild/core@1.0.1-rc.4)': | |
8371 | - dependencies: | |
8372 | - '@babel/core': 7.26.0 | |
8373 | - '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) | |
8374 | - '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.26.0) | |
8375 | - '@babel/plugin-proposal-partial-application': 7.25.9(@babel/core@7.26.0) | |
8376 | - '@babel/plugin-proposal-pipeline-operator': 7.25.9(@babel/core@7.26.0) | |
8377 | - '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0) | |
8378 | - '@babel/preset-env': 7.26.0(@babel/core@7.26.0) | |
8379 | - '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) | |
8380 | - '@babel/runtime': 7.26.0 | |
8381 | - '@babel/types': 7.26.3 | |
8382 | - '@rsbuild/plugin-babel': 1.0.1-rc.4(@rsbuild/core@1.0.1-rc.4) | |
8383 | - '@swc/helpers': 0.5.3 | |
8384 | - '@types/babel__core': 7.20.5 | |
8385 | - babel-plugin-dynamic-import-node: 2.3.3 | |
8386 | - core-js: 3.37.1 | |
8387 | - transitivePeerDependencies: | |
8388 | - - '@rsbuild/core' | |
8389 | - - supports-color | |
8390 | - | |
8391 | - '@modern-js/babel-preset@2.63.4(@rsbuild/core@1.1.12)': | |
8399 | + '@modern-js/babel-preset@2.67.2(@rsbuild/core@1.3.7)': | |
8392 | 8400 | dependencies: |
8393 | 8401 | '@babel/core': 7.26.0 |
8394 | 8402 | '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) |
... | ... | @@ -8400,42 +8408,35 @@ snapshots: |
8400 | 8408 | '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) |
8401 | 8409 | '@babel/runtime': 7.26.0 |
8402 | 8410 | '@babel/types': 7.26.3 |
8403 | - '@rsbuild/plugin-babel': 1.0.3(@rsbuild/core@1.1.12) | |
8411 | + '@rsbuild/plugin-babel': 1.0.5(@rsbuild/core@1.3.7) | |
8404 | 8412 | '@swc/helpers': 0.5.13 |
8405 | 8413 | '@types/babel__core': 7.20.5 |
8406 | 8414 | babel-plugin-dynamic-import-node: 2.3.3 |
8407 | - core-js: 3.37.1 | |
8415 | + core-js: 3.40.0 | |
8408 | 8416 | transitivePeerDependencies: |
8409 | 8417 | - '@rsbuild/core' |
8410 | 8418 | - supports-color |
8411 | 8419 | |
8412 | - '@modern-js/core@2.63.4': | |
8420 | + '@modern-js/core@2.67.2': | |
8413 | 8421 | dependencies: |
8414 | - '@modern-js/node-bundle-require': 2.63.4 | |
8415 | - '@modern-js/plugin': 2.63.4 | |
8416 | - '@modern-js/utils': 2.63.4 | |
8422 | + '@modern-js/node-bundle-require': 2.67.2 | |
8423 | + '@modern-js/plugin': 2.67.2 | |
8424 | + '@modern-js/utils': 2.67.2 | |
8417 | 8425 | '@swc/helpers': 0.5.13 |
8418 | 8426 | |
8419 | - '@modern-js/eslint-config@2.59.0(typescript@5.7.2)': | |
8420 | - dependencies: | |
8421 | - '@modern-js-app/eslint-config': 2.59.0(typescript@5.7.2) | |
8422 | - transitivePeerDependencies: | |
8423 | - - eslint-import-resolver-typescript | |
8424 | - - eslint-import-resolver-webpack | |
8425 | - - supports-color | |
8426 | - - typescript | |
8427 | + '@modern-js/flight-server-transform-plugin@2.67.2': {} | |
8427 | 8428 | |
8428 | - '@modern-js/node-bundle-require@2.63.4': | |
8429 | + '@modern-js/node-bundle-require@2.67.2': | |
8429 | 8430 | dependencies: |
8430 | - '@modern-js/utils': 2.63.4 | |
8431 | + '@modern-js/utils': 2.67.2 | |
8431 | 8432 | '@swc/helpers': 0.5.13 |
8432 | 8433 | esbuild: 0.17.19 |
8433 | 8434 | |
8434 | - '@modern-js/plugin-data-loader@2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8435 | + '@modern-js/plugin-data-loader@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8435 | 8436 | dependencies: |
8436 | 8437 | '@babel/core': 7.26.0 |
8437 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8438 | - '@modern-js/utils': 2.63.4 | |
8438 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8439 | + '@modern-js/utils': 2.67.2 | |
8439 | 8440 | '@swc/helpers': 0.5.13 |
8440 | 8441 | path-to-regexp: 6.3.0 |
8441 | 8442 | react: 18.3.1 |
... | ... | @@ -8443,44 +8444,48 @@ snapshots: |
8443 | 8444 | - react-dom |
8444 | 8445 | - supports-color |
8445 | 8446 | |
8446 | - '@modern-js/plugin-i18n@2.63.4': | |
8447 | + '@modern-js/plugin-i18n@2.67.2': | |
8447 | 8448 | dependencies: |
8448 | - '@modern-js/utils': 2.63.4 | |
8449 | + '@modern-js/utils': 2.67.2 | |
8449 | 8450 | '@swc/helpers': 0.5.13 |
8450 | 8451 | |
8451 | - '@modern-js/plugin-polyfill@2.63.4': | |
8452 | + '@modern-js/plugin-polyfill@2.67.2': | |
8452 | 8453 | dependencies: |
8453 | 8454 | '@modern-js/polyfill-lib': 1.0.2 |
8454 | - '@modern-js/utils': 2.63.4 | |
8455 | + '@modern-js/utils': 2.67.2 | |
8455 | 8456 | '@swc/helpers': 0.5.13 |
8456 | 8457 | lru-cache: 6.0.0 |
8457 | 8458 | ua-parser-js: 0.7.40 |
8458 | 8459 | transitivePeerDependencies: |
8459 | 8460 | - supports-color |
8460 | 8461 | |
8461 | - '@modern-js/plugin-tailwindcss@2.63.4(@modern-js/runtime@2.63.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17)': | |
8462 | + '@modern-js/plugin-tailwindcss@2.67.2(@modern-js/runtime@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.17)': | |
8462 | 8463 | dependencies: |
8463 | - '@modern-js/node-bundle-require': 2.63.4 | |
8464 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8465 | - '@modern-js/utils': 2.63.4 | |
8464 | + '@modern-js/node-bundle-require': 2.67.2 | |
8465 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8466 | + '@modern-js/utils': 2.67.2 | |
8466 | 8467 | '@swc/helpers': 0.5.13 |
8467 | 8468 | babel-plugin-macros: 3.1.0 |
8468 | 8469 | tailwindcss: 3.4.17 |
8469 | 8470 | optionalDependencies: |
8470 | - '@modern-js/runtime': 2.63.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8471 | + '@modern-js/runtime': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8471 | 8472 | transitivePeerDependencies: |
8472 | 8473 | - react |
8473 | 8474 | - react-dom |
8474 | 8475 | |
8475 | - '@modern-js/plugin-v2@2.63.4': | |
8476 | + '@modern-js/plugin-v2@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8476 | 8477 | dependencies: |
8477 | - '@modern-js/node-bundle-require': 2.63.4 | |
8478 | - '@modern-js/utils': 2.63.4 | |
8478 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8479 | + '@modern-js/utils': 2.67.2 | |
8479 | 8480 | '@swc/helpers': 0.5.13 |
8481 | + jiti: 1.21.7 | |
8482 | + transitivePeerDependencies: | |
8483 | + - react | |
8484 | + - react-dom | |
8480 | 8485 | |
8481 | - '@modern-js/plugin@2.63.4': | |
8486 | + '@modern-js/plugin@2.67.2': | |
8482 | 8487 | dependencies: |
8483 | - '@modern-js/utils': 2.63.4 | |
8488 | + '@modern-js/utils': 2.67.2 | |
8484 | 8489 | '@swc/helpers': 0.5.13 |
8485 | 8490 | |
8486 | 8491 | '@modern-js/polyfill-lib@1.0.2': |
... | ... | @@ -8531,58 +8536,63 @@ snapshots: |
8531 | 8536 | transitivePeerDependencies: |
8532 | 8537 | - supports-color |
8533 | 8538 | |
8534 | - '@modern-js/prod-server@2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8539 | + '@modern-js/prod-server@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8535 | 8540 | dependencies: |
8536 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8537 | - '@modern-js/server-core': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8538 | - '@modern-js/utils': 2.63.4 | |
8541 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8542 | + '@modern-js/server-core': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8543 | + '@modern-js/utils': 2.67.2 | |
8539 | 8544 | '@swc/helpers': 0.5.13 |
8540 | 8545 | source-map-support: 0.5.21 |
8541 | 8546 | transitivePeerDependencies: |
8542 | 8547 | - react |
8543 | 8548 | - react-dom |
8544 | 8549 | |
8545 | - '@modern-js/rsbuild-plugin-esbuild@2.63.4': | |
8550 | + '@modern-js/render@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8551 | + dependencies: | |
8552 | + '@modern-js/types': 2.67.2 | |
8553 | + '@modern-js/utils': 2.67.2 | |
8554 | + '@swc/helpers': 0.5.13 | |
8555 | + react: 18.3.1 | |
8556 | + react-dom: 18.3.1(react@18.3.1) | |
8557 | + rsc-html-stream: 0.0.5 | |
8558 | + | |
8559 | + '@modern-js/rsbuild-plugin-esbuild@2.67.2': | |
8546 | 8560 | dependencies: |
8547 | 8561 | '@swc/helpers': 0.5.13 |
8548 | 8562 | esbuild: 0.17.19 |
8549 | - webpack: 5.97.1(esbuild@0.17.19) | |
8563 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
8550 | 8564 | transitivePeerDependencies: |
8551 | 8565 | - '@swc/core' |
8552 | 8566 | - uglify-js |
8553 | 8567 | - webpack-cli |
8554 | 8568 | |
8555 | - '@modern-js/runtime-utils@2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8569 | + '@modern-js/runtime-utils@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8556 | 8570 | dependencies: |
8557 | - '@modern-js/utils': 2.63.4 | |
8571 | + '@modern-js/types': 2.67.2 | |
8572 | + '@modern-js/utils': 2.67.2 | |
8558 | 8573 | '@remix-run/router': 1.20.0 |
8559 | 8574 | '@swc/helpers': 0.5.13 |
8560 | - lru-cache: 6.0.0 | |
8575 | + lru-cache: 10.4.3 | |
8561 | 8576 | react-router-dom: 6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) |
8562 | 8577 | serialize-javascript: 6.0.2 |
8563 | 8578 | optionalDependencies: |
8564 | 8579 | react: 18.3.1 |
8565 | 8580 | react-dom: 18.3.1(react@18.3.1) |
8566 | 8581 | |
8567 | - '@modern-js/runtime@2.63.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8582 | + '@modern-js/runtime@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8568 | 8583 | dependencies: |
8569 | 8584 | '@babel/core': 7.26.0 |
8570 | 8585 | '@babel/types': 7.26.3 |
8571 | 8586 | '@loadable/babel-plugin': 5.15.3(@babel/core@7.26.0) |
8572 | 8587 | '@loadable/component': 5.15.3(react@18.3.1) |
8573 | 8588 | '@loadable/server': 5.15.3(@loadable/component@5.15.3(react@18.3.1))(react@18.3.1) |
8574 | - '@modern-js-reduck/plugin-auto-actions': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8575 | - '@modern-js-reduck/plugin-devtools': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8576 | - '@modern-js-reduck/plugin-effects': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8577 | - '@modern-js-reduck/plugin-immutable': 1.1.11(@modern-js-reduck/store@1.1.11) | |
8578 | - '@modern-js-reduck/react': 1.1.11(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8579 | - '@modern-js-reduck/store': 1.1.11 | |
8580 | - '@modern-js/plugin': 2.63.4 | |
8581 | - '@modern-js/plugin-data-loader': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8582 | - '@modern-js/plugin-v2': 2.63.4 | |
8583 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8584 | - '@modern-js/types': 2.63.4 | |
8585 | - '@modern-js/utils': 2.63.4 | |
8589 | + '@modern-js/plugin': 2.67.2 | |
8590 | + '@modern-js/plugin-data-loader': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8591 | + '@modern-js/plugin-v2': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8592 | + '@modern-js/render': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8593 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8594 | + '@modern-js/types': 2.67.2 | |
8595 | + '@modern-js/utils': 2.67.2 | |
8586 | 8596 | '@swc/helpers': 0.5.13 |
8587 | 8597 | '@types/loadable__component': 5.13.9 |
8588 | 8598 | '@types/react-helmet': 6.1.11 |
... | ... | @@ -8599,15 +8609,14 @@ snapshots: |
8599 | 8609 | react-side-effect: 2.1.2(react@18.3.1) |
8600 | 8610 | styled-components: 5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1) |
8601 | 8611 | transitivePeerDependencies: |
8602 | - - '@types/react' | |
8603 | - - '@types/react-dom' | |
8604 | 8612 | - supports-color |
8605 | 8613 | |
8606 | - '@modern-js/server-core@2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8614 | + '@modern-js/server-core@2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': | |
8607 | 8615 | dependencies: |
8608 | - '@modern-js/plugin': 2.63.4 | |
8609 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8610 | - '@modern-js/utils': 2.63.4 | |
8616 | + '@modern-js/plugin': 2.67.2 | |
8617 | + '@modern-js/plugin-v2': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8618 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8619 | + '@modern-js/utils': 2.67.2 | |
8611 | 8620 | '@swc/helpers': 0.5.13 |
8612 | 8621 | '@web-std/fetch': 4.2.1 |
8613 | 8622 | '@web-std/file': 3.0.3 |
... | ... | @@ -8619,17 +8628,17 @@ snapshots: |
8619 | 8628 | - react |
8620 | 8629 | - react-dom |
8621 | 8630 | |
8622 | - '@modern-js/server-utils@2.63.4(@babel/traverse@7.26.4)(@rsbuild/core@1.1.12)': | |
8631 | + '@modern-js/server-utils@2.67.2(@babel/traverse@7.26.4)(@rsbuild/core@1.3.7)': | |
8623 | 8632 | dependencies: |
8624 | 8633 | '@babel/core': 7.26.0 |
8625 | 8634 | '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) |
8626 | 8635 | '@babel/preset-env': 7.26.0(@babel/core@7.26.0) |
8627 | 8636 | '@babel/preset-react': 7.26.3(@babel/core@7.26.0) |
8628 | 8637 | '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) |
8629 | - '@modern-js/babel-compiler': 2.63.4 | |
8630 | - '@modern-js/babel-plugin-module-resolver': 2.63.4 | |
8631 | - '@modern-js/babel-preset': 2.63.4(@rsbuild/core@1.1.12) | |
8632 | - '@modern-js/utils': 2.63.4 | |
8638 | + '@modern-js/babel-compiler': 2.67.2 | |
8639 | + '@modern-js/babel-plugin-module-resolver': 2.67.2 | |
8640 | + '@modern-js/babel-preset': 2.67.2(@rsbuild/core@1.3.7) | |
8641 | + '@modern-js/utils': 2.67.2 | |
8633 | 8642 | '@swc/helpers': 0.5.13 |
8634 | 8643 | babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0)(@babel/traverse@7.26.4) |
8635 | 8644 | transitivePeerDependencies: |
... | ... | @@ -8637,15 +8646,15 @@ snapshots: |
8637 | 8646 | - '@rsbuild/core' |
8638 | 8647 | - supports-color |
8639 | 8648 | |
8640 | - '@modern-js/server@2.63.4(@babel/traverse@7.26.4)(@rsbuild/core@1.1.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tsconfig-paths@4.2.0)': | |
8649 | + '@modern-js/server@2.67.2(@babel/traverse@7.26.4)(@rsbuild/core@1.3.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tsconfig-paths@4.2.0)': | |
8641 | 8650 | dependencies: |
8642 | 8651 | '@babel/core': 7.26.0 |
8643 | 8652 | '@babel/register': 7.25.9(@babel/core@7.26.0) |
8644 | - '@modern-js/runtime-utils': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8645 | - '@modern-js/server-core': 2.63.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8646 | - '@modern-js/server-utils': 2.63.4(@babel/traverse@7.26.4)(@rsbuild/core@1.1.12) | |
8647 | - '@modern-js/types': 2.63.4 | |
8648 | - '@modern-js/utils': 2.63.4 | |
8653 | + '@modern-js/runtime-utils': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8654 | + '@modern-js/server-core': 2.67.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) | |
8655 | + '@modern-js/server-utils': 2.67.2(@babel/traverse@7.26.4)(@rsbuild/core@1.3.7) | |
8656 | + '@modern-js/types': 2.67.2 | |
8657 | + '@modern-js/utils': 2.67.2 | |
8649 | 8658 | '@swc/helpers': 0.5.13 |
8650 | 8659 | axios: 1.7.9 |
8651 | 8660 | connect-history-api-fallback: 2.0.0 |
... | ... | @@ -8665,48 +8674,53 @@ snapshots: |
8665 | 8674 | - supports-color |
8666 | 8675 | - utf-8-validate |
8667 | 8676 | |
8668 | - '@modern-js/tsconfig@2.63.4': {} | |
8677 | + '@modern-js/tsconfig@2.67.2': {} | |
8669 | 8678 | |
8670 | - '@modern-js/types@2.63.4': {} | |
8679 | + '@modern-js/types@2.67.2': {} | |
8671 | 8680 | |
8672 | - '@modern-js/uni-builder@2.63.4(@rspack/core@1.1.8(@swc/helpers@0.5.15))(@types/webpack@5.28.5(esbuild@0.17.19))(esbuild@0.17.19)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(type-fest@1.4.0)(typescript@5.7.2)': | |
8681 | + '@modern-js/uni-builder@2.67.2(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@types/webpack@5.28.5(esbuild@0.17.19))(esbuild@0.17.19)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(type-fest@1.4.0)(typescript@5.7.2)': | |
8673 | 8682 | dependencies: |
8674 | 8683 | '@babel/core': 7.26.0 |
8675 | 8684 | '@babel/preset-react': 7.26.3(@babel/core@7.26.0) |
8676 | 8685 | '@babel/types': 7.26.3 |
8677 | - '@modern-js/babel-preset': 2.63.4(@rsbuild/core@1.1.12) | |
8678 | - '@modern-js/utils': 2.63.4 | |
8679 | - '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@5.28.5(esbuild@0.17.19))(react-refresh@0.14.2)(type-fest@1.4.0)(webpack@5.97.1(esbuild@0.17.19)) | |
8680 | - '@rsbuild/core': 1.1.12 | |
8681 | - '@rsbuild/plugin-assets-retry': 1.0.7(@rsbuild/core@1.1.12) | |
8682 | - '@rsbuild/plugin-babel': 1.0.3(@rsbuild/core@1.1.12) | |
8683 | - '@rsbuild/plugin-check-syntax': 1.2.0(@rsbuild/core@1.1.12) | |
8684 | - '@rsbuild/plugin-css-minimizer': 1.0.2(@rsbuild/core@1.1.12)(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)) | |
8685 | - '@rsbuild/plugin-less': 1.1.0(@rsbuild/core@1.1.12) | |
8686 | - '@rsbuild/plugin-pug': 1.0.2(@rsbuild/core@1.1.12) | |
8687 | - '@rsbuild/plugin-react': 1.1.0(@rsbuild/core@1.1.12) | |
8688 | - '@rsbuild/plugin-rem': 1.0.2(@rsbuild/core@1.1.12) | |
8689 | - '@rsbuild/plugin-sass': 1.1.2(@rsbuild/core@1.1.12) | |
8690 | - '@rsbuild/plugin-source-build': 1.0.2(@rsbuild/core@1.1.12) | |
8691 | - '@rsbuild/plugin-styled-components': 1.1.0(@rsbuild/core@1.1.12) | |
8692 | - '@rsbuild/plugin-svgr': 1.0.6(@rsbuild/core@1.1.12)(typescript@5.7.2) | |
8693 | - '@rsbuild/plugin-toml': 1.0.1(@rsbuild/core@1.1.12) | |
8694 | - '@rsbuild/plugin-type-check': 1.2.0(@rsbuild/core@1.1.12)(@rspack/core@1.1.8(@swc/helpers@0.5.15))(typescript@5.7.2) | |
8695 | - '@rsbuild/plugin-typed-css-modules': 1.0.2(@rsbuild/core@1.1.12) | |
8696 | - '@rsbuild/plugin-yaml': 1.0.2(@rsbuild/core@1.1.12) | |
8697 | - '@rsbuild/webpack': 1.1.6(@rsbuild/core@1.1.12)(@rspack/core@1.1.8(@swc/helpers@0.5.15))(esbuild@0.17.19) | |
8686 | + '@modern-js/babel-preset': 2.67.2(@rsbuild/core@1.3.7) | |
8687 | + '@modern-js/flight-server-transform-plugin': 2.67.2 | |
8688 | + '@modern-js/utils': 2.67.2 | |
8689 | + '@pmmmwh/react-refresh-webpack-plugin': 0.5.16(@types/webpack@5.28.5(esbuild@0.17.19))(react-refresh@0.14.2)(type-fest@1.4.0)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8690 | + '@rsbuild/core': 1.3.7 | |
8691 | + '@rsbuild/plugin-assets-retry': 1.2.1(@rsbuild/core@1.3.7) | |
8692 | + '@rsbuild/plugin-babel': 1.0.5(@rsbuild/core@1.3.7) | |
8693 | + '@rsbuild/plugin-check-syntax': 1.3.0(@rsbuild/core@1.3.7) | |
8694 | + '@rsbuild/plugin-css-minimizer': 1.0.2(@rsbuild/core@1.3.7)(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8695 | + '@rsbuild/plugin-less': 1.2.2(@rsbuild/core@1.3.7) | |
8696 | + '@rsbuild/plugin-pug': 1.0.2(@rsbuild/core@1.3.7) | |
8697 | + '@rsbuild/plugin-react': 1.2.0(@rsbuild/core@1.3.7) | |
8698 | + '@rsbuild/plugin-rem': 1.0.2(@rsbuild/core@1.3.7) | |
8699 | + '@rsbuild/plugin-sass': 1.3.1(@rsbuild/core@1.3.7) | |
8700 | + '@rsbuild/plugin-source-build': 1.0.2(@rsbuild/core@1.3.7) | |
8701 | + '@rsbuild/plugin-styled-components': 1.3.0(@rsbuild/core@1.3.7) | |
8702 | + '@rsbuild/plugin-svgr': 1.2.0(@rsbuild/core@1.3.7)(typescript@5.7.2) | |
8703 | + '@rsbuild/plugin-toml': 1.1.0(@rsbuild/core@1.3.7) | |
8704 | + '@rsbuild/plugin-type-check': 1.2.1(@rsbuild/core@1.3.7)(@rspack/core@1.3.5(@swc/helpers@0.5.13))(typescript@5.7.2) | |
8705 | + '@rsbuild/plugin-typed-css-modules': 1.0.2(@rsbuild/core@1.3.7) | |
8706 | + '@rsbuild/plugin-yaml': 1.0.2(@rsbuild/core@1.3.7) | |
8707 | + '@rsbuild/webpack': 1.3.0(@rsbuild/core@1.3.7)(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
8708 | + '@swc/core': 1.10.18(@swc/helpers@0.5.13) | |
8698 | 8709 | '@swc/helpers': 0.5.13 |
8699 | - autoprefixer: 10.4.20(postcss@8.4.49) | |
8700 | - babel-loader: 9.1.3(@babel/core@7.26.0)(webpack@5.97.1(esbuild@0.17.19)) | |
8710 | + autoprefixer: 10.4.21(postcss@8.4.49) | |
8711 | + babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8701 | 8712 | babel-plugin-import: 1.13.8 |
8702 | 8713 | babel-plugin-styled-components: 1.13.3(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)) |
8703 | 8714 | babel-plugin-transform-react-remove-prop-types: 0.4.24 |
8704 | - browserslist: 4.24.3 | |
8705 | - cssnano: 6.0.1(postcss@8.4.49) | |
8715 | + browserslist: 4.24.4 | |
8716 | + cssnano: 6.1.2(postcss@8.4.49) | |
8717 | + es-module-lexer: 1.6.0 | |
8706 | 8718 | glob: 9.3.5 |
8707 | 8719 | html-minifier-terser: 7.2.0 |
8708 | - html-webpack-plugin: 5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
8720 | + html-webpack-plugin: 5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8721 | + jiti: 1.21.7 | |
8709 | 8722 | lodash: 4.17.21 |
8723 | + magic-string: 0.30.17 | |
8710 | 8724 | picocolors: 1.1.1 |
8711 | 8725 | postcss: 8.4.49 |
8712 | 8726 | postcss-custom-properties: 13.3.12(postcss@8.4.49) |
... | ... | @@ -8717,16 +8731,16 @@ snapshots: |
8717 | 8731 | postcss-nesting: 12.1.5(postcss@8.4.49) |
8718 | 8732 | postcss-page-break: 3.0.4(postcss@8.4.49) |
8719 | 8733 | react-refresh: 0.14.2 |
8720 | - rspack-manifest-plugin: 5.0.2(@rspack/core@1.1.8(@swc/helpers@0.5.15)) | |
8721 | - terser-webpack-plugin: 5.3.11(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)) | |
8734 | + rspack-manifest-plugin: 5.0.3(@rspack/core@1.3.5(@swc/helpers@0.5.13)) | |
8735 | + terser-webpack-plugin: 5.3.14(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8722 | 8736 | ts-deepmerge: 7.0.2 |
8723 | - ts-loader: 9.4.4(typescript@5.7.2)(webpack@5.97.1(esbuild@0.17.19)) | |
8724 | - webpack: 5.97.1(esbuild@0.17.19) | |
8725 | - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)))(webpack@5.97.1(esbuild@0.17.19)) | |
8737 | + ts-loader: 9.4.4(typescript@5.7.2)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8738 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
8739 | + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
8726 | 8740 | transitivePeerDependencies: |
8727 | 8741 | - '@parcel/css' |
8728 | 8742 | - '@rspack/core' |
8729 | - - '@swc/core' | |
8743 | + - '@rspack/tracing' | |
8730 | 8744 | - '@swc/css' |
8731 | 8745 | - '@types/webpack' |
8732 | 8746 | - clean-css |
... | ... | @@ -8744,28 +8758,37 @@ snapshots: |
8744 | 8758 | - webpack-hot-middleware |
8745 | 8759 | - webpack-plugin-serve |
8746 | 8760 | |
8747 | - '@modern-js/utils@2.63.4': | |
8761 | + '@modern-js/utils@2.67.2': | |
8748 | 8762 | dependencies: |
8749 | 8763 | '@swc/helpers': 0.5.13 |
8750 | 8764 | caniuse-lite: 1.0.30001690 |
8751 | 8765 | lodash: 4.17.21 |
8752 | 8766 | rslog: 1.2.3 |
8753 | 8767 | |
8754 | - '@module-federation/runtime-tools@0.5.1': | |
8768 | + '@module-federation/error-codes@0.11.2': {} | |
8769 | + | |
8770 | + '@module-federation/runtime-core@0.11.2': | |
8771 | + dependencies: | |
8772 | + '@module-federation/error-codes': 0.11.2 | |
8773 | + '@module-federation/sdk': 0.11.2 | |
8774 | + | |
8775 | + '@module-federation/runtime-tools@0.11.2': | |
8755 | 8776 | dependencies: |
8756 | - '@module-federation/runtime': 0.5.1 | |
8757 | - '@module-federation/webpack-bundler-runtime': 0.5.1 | |
8777 | + '@module-federation/runtime': 0.11.2 | |
8778 | + '@module-federation/webpack-bundler-runtime': 0.11.2 | |
8758 | 8779 | |
8759 | - '@module-federation/runtime@0.5.1': | |
8780 | + '@module-federation/runtime@0.11.2': | |
8760 | 8781 | dependencies: |
8761 | - '@module-federation/sdk': 0.5.1 | |
8782 | + '@module-federation/error-codes': 0.11.2 | |
8783 | + '@module-federation/runtime-core': 0.11.2 | |
8784 | + '@module-federation/sdk': 0.11.2 | |
8762 | 8785 | |
8763 | - '@module-federation/sdk@0.5.1': {} | |
8786 | + '@module-federation/sdk@0.11.2': {} | |
8764 | 8787 | |
8765 | - '@module-federation/webpack-bundler-runtime@0.5.1': | |
8788 | + '@module-federation/webpack-bundler-runtime@0.11.2': | |
8766 | 8789 | dependencies: |
8767 | - '@module-federation/runtime': 0.5.1 | |
8768 | - '@module-federation/sdk': 0.5.1 | |
8790 | + '@module-federation/runtime': 0.11.2 | |
8791 | + '@module-federation/sdk': 0.11.2 | |
8769 | 8792 | |
8770 | 8793 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': |
8771 | 8794 | dependencies: |
... | ... | @@ -8809,7 +8832,7 @@ snapshots: |
8809 | 8832 | '@pkgjs/parseargs@0.11.0': |
8810 | 8833 | optional: true |
8811 | 8834 | |
8812 | - '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@5.28.5(esbuild@0.17.19))(react-refresh@0.14.2)(type-fest@1.4.0)(webpack@5.97.1(esbuild@0.17.19))': | |
8835 | + '@pmmmwh/react-refresh-webpack-plugin@0.5.16(@types/webpack@5.28.5(esbuild@0.17.19))(react-refresh@0.14.2)(type-fest@1.4.0)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
8813 | 8836 | dependencies: |
8814 | 8837 | ansi-html: 0.0.9 |
8815 | 8838 | core-js-pure: 3.39.0 |
... | ... | @@ -8819,7 +8842,7 @@ snapshots: |
8819 | 8842 | react-refresh: 0.14.2 |
8820 | 8843 | schema-utils: 4.3.0 |
8821 | 8844 | source-map: 0.7.4 |
8822 | - webpack: 5.97.1(esbuild@0.17.19) | |
8845 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
8823 | 8846 | optionalDependencies: |
8824 | 8847 | '@types/webpack': 5.28.5(esbuild@0.17.19) |
8825 | 8848 | type-fest: 1.4.0 |
... | ... | @@ -8928,12 +8951,6 @@ snapshots: |
8928 | 8951 | react: 18.3.1 |
8929 | 8952 | react-dom: 18.3.1(react@18.3.1) |
8930 | 8953 | |
8931 | - '@redux-devtools/extension@3.3.0(redux@4.2.1)': | |
8932 | - dependencies: | |
8933 | - '@babel/runtime': 7.26.0 | |
8934 | - immutable: 4.3.7 | |
8935 | - redux: 4.2.1 | |
8936 | - | |
8937 | 8954 | '@remix-run/router@1.20.0': {} |
8938 | 8955 | |
8939 | 8956 | '@rollup/pluginutils@4.2.1': |
... | ... | @@ -8941,54 +8958,27 @@ snapshots: |
8941 | 8958 | estree-walker: 2.0.2 |
8942 | 8959 | picomatch: 2.3.1 |
8943 | 8960 | |
8944 | - '@rollup/pluginutils@5.1.4': | |
8945 | - dependencies: | |
8946 | - '@types/estree': 1.0.6 | |
8947 | - estree-walker: 2.0.2 | |
8948 | - picomatch: 4.0.2 | |
8949 | - | |
8950 | - '@rsbuild/core@1.0.1-rc.4': | |
8951 | - dependencies: | |
8952 | - '@rspack/core': 1.0.14(@swc/helpers@0.5.15) | |
8953 | - '@rspack/lite-tapable': 1.0.1 | |
8954 | - '@swc/helpers': 0.5.15 | |
8955 | - caniuse-lite: 1.0.30001690 | |
8956 | - core-js: 3.38.1 | |
8957 | - optionalDependencies: | |
8958 | - fsevents: 2.3.3 | |
8959 | - | |
8960 | - '@rsbuild/core@1.1.12': | |
8961 | + '@rsbuild/core@1.3.7': | |
8961 | 8962 | dependencies: |
8962 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
8963 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.17) | |
8963 | 8964 | '@rspack/lite-tapable': 1.0.1 |
8964 | - '@swc/helpers': 0.5.15 | |
8965 | - core-js: 3.39.0 | |
8966 | - | |
8967 | - '@rsbuild/plugin-assets-retry@1.0.7(@rsbuild/core@1.1.12)': | |
8968 | - dependencies: | |
8969 | - '@rsbuild/core': 1.1.12 | |
8970 | - | |
8971 | - '@rsbuild/plugin-babel@1.0.1-rc.4(@rsbuild/core@1.0.1-rc.4)': | |
8972 | - dependencies: | |
8973 | - '@babel/core': 7.26.0 | |
8974 | - '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) | |
8975 | - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) | |
8976 | - '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) | |
8977 | - '@rsbuild/core': 1.0.1-rc.4 | |
8978 | - '@types/babel__core': 7.20.5 | |
8979 | - deepmerge: 4.3.1 | |
8980 | - reduce-configs: 1.1.0 | |
8981 | - upath: 2.0.1 | |
8965 | + '@swc/helpers': 0.5.17 | |
8966 | + core-js: 3.41.0 | |
8967 | + jiti: 2.4.2 | |
8982 | 8968 | transitivePeerDependencies: |
8983 | - - supports-color | |
8969 | + - '@rspack/tracing' | |
8984 | 8970 | |
8985 | - '@rsbuild/plugin-babel@1.0.3(@rsbuild/core@1.1.12)': | |
8986 | - dependencies: | |
8987 | - '@babel/core': 7.26.0 | |
8988 | - '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0) | |
8989 | - '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) | |
8990 | - '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) | |
8991 | - '@rsbuild/core': 1.1.12 | |
8971 | + '@rsbuild/plugin-assets-retry@1.2.1(@rsbuild/core@1.3.7)': | |
8972 | + optionalDependencies: | |
8973 | + '@rsbuild/core': 1.3.7 | |
8974 | + | |
8975 | + '@rsbuild/plugin-babel@1.0.5(@rsbuild/core@1.3.7)': | |
8976 | + dependencies: | |
8977 | + '@babel/core': 7.26.10 | |
8978 | + '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10) | |
8979 | + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10) | |
8980 | + '@babel/preset-typescript': 7.27.0(@babel/core@7.26.10) | |
8981 | + '@rsbuild/core': 1.3.7 | |
8992 | 8982 | '@types/babel__core': 7.20.5 |
8993 | 8983 | deepmerge: 4.3.1 |
8994 | 8984 | reduce-configs: 1.1.0 |
... | ... | @@ -8996,22 +8986,22 @@ snapshots: |
8996 | 8986 | transitivePeerDependencies: |
8997 | 8987 | - supports-color |
8998 | 8988 | |
8999 | - '@rsbuild/plugin-check-syntax@1.2.0(@rsbuild/core@1.1.12)': | |
8989 | + '@rsbuild/plugin-check-syntax@1.3.0(@rsbuild/core@1.3.7)': | |
9000 | 8990 | dependencies: |
9001 | 8991 | acorn: 8.14.0 |
9002 | 8992 | browserslist-to-es-version: 1.0.0 |
9003 | - htmlparser2: 9.1.0 | |
8993 | + htmlparser2: 10.0.0 | |
9004 | 8994 | picocolors: 1.1.1 |
9005 | 8995 | source-map: 0.7.4 |
9006 | 8996 | optionalDependencies: |
9007 | - '@rsbuild/core': 1.1.12 | |
8997 | + '@rsbuild/core': 1.3.7 | |
9008 | 8998 | |
9009 | - '@rsbuild/plugin-css-minimizer@1.0.2(@rsbuild/core@1.1.12)(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19))': | |
8999 | + '@rsbuild/plugin-css-minimizer@1.0.2(@rsbuild/core@1.3.7)(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9010 | 9000 | dependencies: |
9011 | - css-minimizer-webpack-plugin: 5.0.1(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)) | |
9001 | + css-minimizer-webpack-plugin: 5.0.1(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9012 | 9002 | reduce-configs: 1.1.0 |
9013 | 9003 | optionalDependencies: |
9014 | - '@rsbuild/core': 1.1.12 | |
9004 | + '@rsbuild/core': 1.3.7 | |
9015 | 9005 | transitivePeerDependencies: |
9016 | 9006 | - '@parcel/css' |
9017 | 9007 | - '@swc/css' |
... | ... | @@ -9021,13 +9011,13 @@ snapshots: |
9021 | 9011 | - lightningcss |
9022 | 9012 | - webpack |
9023 | 9013 | |
9024 | - '@rsbuild/plugin-less@1.1.0(@rsbuild/core@1.1.12)': | |
9014 | + '@rsbuild/plugin-less@1.2.2(@rsbuild/core@1.3.7)': | |
9025 | 9015 | dependencies: |
9026 | - '@rsbuild/core': 1.1.12 | |
9016 | + '@rsbuild/core': 1.3.7 | |
9027 | 9017 | deepmerge: 4.3.1 |
9028 | 9018 | reduce-configs: 1.1.0 |
9029 | 9019 | |
9030 | - '@rsbuild/plugin-node-polyfill@1.2.0(@rsbuild/core@1.1.12)': | |
9020 | + '@rsbuild/plugin-node-polyfill@1.3.0(@rsbuild/core@1.3.7)': | |
9031 | 9021 | dependencies: |
9032 | 9022 | assert: 2.1.0 |
9033 | 9023 | browserify-zlib: 0.2.0 |
... | ... | @@ -9053,102 +9043,105 @@ snapshots: |
9053 | 9043 | util: 0.12.5 |
9054 | 9044 | vm-browserify: 1.1.2 |
9055 | 9045 | optionalDependencies: |
9056 | - '@rsbuild/core': 1.1.12 | |
9046 | + '@rsbuild/core': 1.3.7 | |
9057 | 9047 | |
9058 | - '@rsbuild/plugin-pug@1.0.2(@rsbuild/core@1.1.12)': | |
9048 | + '@rsbuild/plugin-pug@1.0.2(@rsbuild/core@1.3.7)': | |
9059 | 9049 | dependencies: |
9060 | 9050 | '@types/pug': 2.0.10 |
9061 | 9051 | pug: 3.0.3 |
9062 | 9052 | reduce-configs: 1.1.0 |
9063 | 9053 | optionalDependencies: |
9064 | - '@rsbuild/core': 1.1.12 | |
9054 | + '@rsbuild/core': 1.3.7 | |
9065 | 9055 | |
9066 | - '@rsbuild/plugin-react@1.1.0(@rsbuild/core@1.1.12)': | |
9056 | + '@rsbuild/plugin-react@1.2.0(@rsbuild/core@1.3.7)': | |
9067 | 9057 | dependencies: |
9068 | - '@rsbuild/core': 1.1.12 | |
9069 | - '@rspack/plugin-react-refresh': 1.0.1(react-refresh@0.16.0) | |
9070 | - react-refresh: 0.16.0 | |
9058 | + '@rsbuild/core': 1.3.7 | |
9059 | + '@rspack/plugin-react-refresh': 1.2.1(react-refresh@0.17.0) | |
9060 | + react-refresh: 0.17.0 | |
9061 | + transitivePeerDependencies: | |
9062 | + - webpack-hot-middleware | |
9071 | 9063 | |
9072 | - '@rsbuild/plugin-rem@1.0.2(@rsbuild/core@1.1.12)': | |
9064 | + '@rsbuild/plugin-rem@1.0.2(@rsbuild/core@1.3.7)': | |
9073 | 9065 | dependencies: |
9074 | 9066 | deepmerge: 4.3.1 |
9075 | 9067 | terser: 5.37.0 |
9076 | 9068 | optionalDependencies: |
9077 | - '@rsbuild/core': 1.1.12 | |
9069 | + '@rsbuild/core': 1.3.7 | |
9078 | 9070 | |
9079 | - '@rsbuild/plugin-sass@1.1.2(@rsbuild/core@1.1.12)': | |
9071 | + '@rsbuild/plugin-sass@1.3.1(@rsbuild/core@1.3.7)': | |
9080 | 9072 | dependencies: |
9081 | - '@rsbuild/core': 1.1.12 | |
9073 | + '@rsbuild/core': 1.3.7 | |
9082 | 9074 | deepmerge: 4.3.1 |
9083 | 9075 | loader-utils: 2.0.4 |
9084 | - postcss: 8.4.49 | |
9076 | + postcss: 8.5.3 | |
9085 | 9077 | reduce-configs: 1.1.0 |
9086 | - sass-embedded: 1.83.0 | |
9078 | + sass-embedded: 1.86.3 | |
9087 | 9079 | |
9088 | - '@rsbuild/plugin-source-build@1.0.2(@rsbuild/core@1.1.12)': | |
9080 | + '@rsbuild/plugin-source-build@1.0.2(@rsbuild/core@1.3.7)': | |
9089 | 9081 | dependencies: |
9090 | 9082 | fast-glob: 3.3.2 |
9091 | 9083 | json5: 2.2.3 |
9092 | 9084 | yaml: 2.6.1 |
9093 | 9085 | optionalDependencies: |
9094 | - '@rsbuild/core': 1.1.12 | |
9086 | + '@rsbuild/core': 1.3.7 | |
9095 | 9087 | |
9096 | - '@rsbuild/plugin-styled-components@1.1.0(@rsbuild/core@1.1.12)': | |
9088 | + '@rsbuild/plugin-styled-components@1.3.0(@rsbuild/core@1.3.7)': | |
9097 | 9089 | dependencies: |
9098 | - '@swc/plugin-styled-components': 5.0.0 | |
9090 | + '@swc/plugin-styled-components': 7.1.3 | |
9099 | 9091 | reduce-configs: 1.1.0 |
9100 | 9092 | optionalDependencies: |
9101 | - '@rsbuild/core': 1.1.12 | |
9093 | + '@rsbuild/core': 1.3.7 | |
9102 | 9094 | |
9103 | - '@rsbuild/plugin-svgr@1.0.6(@rsbuild/core@1.1.12)(typescript@5.7.2)': | |
9095 | + '@rsbuild/plugin-svgr@1.2.0(@rsbuild/core@1.3.7)(typescript@5.7.2)': | |
9104 | 9096 | dependencies: |
9105 | - '@rsbuild/core': 1.1.12 | |
9106 | - '@rsbuild/plugin-react': 1.1.0(@rsbuild/core@1.1.12) | |
9097 | + '@rsbuild/core': 1.3.7 | |
9098 | + '@rsbuild/plugin-react': 1.2.0(@rsbuild/core@1.3.7) | |
9107 | 9099 | '@svgr/core': 8.1.0(typescript@5.7.2) |
9108 | 9100 | '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2)) |
9109 | 9101 | '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.2))(typescript@5.7.2) |
9110 | 9102 | deepmerge: 4.3.1 |
9111 | - loader-utils: 2.0.4 | |
9103 | + loader-utils: 3.3.1 | |
9112 | 9104 | transitivePeerDependencies: |
9113 | 9105 | - supports-color |
9114 | 9106 | - typescript |
9107 | + - webpack-hot-middleware | |
9115 | 9108 | |
9116 | - '@rsbuild/plugin-toml@1.0.1(@rsbuild/core@1.1.12)': | |
9109 | + '@rsbuild/plugin-toml@1.1.0(@rsbuild/core@1.3.7)': | |
9117 | 9110 | dependencies: |
9118 | 9111 | toml: 3.0.0 |
9119 | 9112 | optionalDependencies: |
9120 | - '@rsbuild/core': 1.1.12 | |
9113 | + '@rsbuild/core': 1.3.7 | |
9121 | 9114 | |
9122 | - '@rsbuild/plugin-type-check@1.2.0(@rsbuild/core@1.1.12)(@rspack/core@1.1.8(@swc/helpers@0.5.15))(typescript@5.7.2)': | |
9115 | + '@rsbuild/plugin-type-check@1.2.1(@rsbuild/core@1.3.7)(@rspack/core@1.3.5(@swc/helpers@0.5.13))(typescript@5.7.2)': | |
9123 | 9116 | dependencies: |
9124 | 9117 | deepmerge: 4.3.1 |
9125 | 9118 | json5: 2.2.3 |
9126 | 9119 | reduce-configs: 1.1.0 |
9127 | - ts-checker-rspack-plugin: 1.1.0(@rspack/core@1.1.8(@swc/helpers@0.5.15))(typescript@5.7.2) | |
9120 | + ts-checker-rspack-plugin: 1.1.1(@rspack/core@1.3.5(@swc/helpers@0.5.13))(typescript@5.7.2) | |
9128 | 9121 | optionalDependencies: |
9129 | - '@rsbuild/core': 1.1.12 | |
9122 | + '@rsbuild/core': 1.3.7 | |
9130 | 9123 | transitivePeerDependencies: |
9131 | 9124 | - '@rspack/core' |
9132 | 9125 | - typescript |
9133 | 9126 | |
9134 | - '@rsbuild/plugin-typed-css-modules@1.0.2(@rsbuild/core@1.1.12)': | |
9127 | + '@rsbuild/plugin-typed-css-modules@1.0.2(@rsbuild/core@1.3.7)': | |
9135 | 9128 | optionalDependencies: |
9136 | - '@rsbuild/core': 1.1.12 | |
9129 | + '@rsbuild/core': 1.3.7 | |
9137 | 9130 | |
9138 | - '@rsbuild/plugin-yaml@1.0.2(@rsbuild/core@1.1.12)': | |
9131 | + '@rsbuild/plugin-yaml@1.0.2(@rsbuild/core@1.3.7)': | |
9139 | 9132 | optionalDependencies: |
9140 | - '@rsbuild/core': 1.1.12 | |
9133 | + '@rsbuild/core': 1.3.7 | |
9141 | 9134 | |
9142 | - '@rsbuild/webpack@1.1.6(@rsbuild/core@1.1.12)(@rspack/core@1.1.8(@swc/helpers@0.5.15))(esbuild@0.17.19)': | |
9135 | + '@rsbuild/webpack@1.3.0(@rsbuild/core@1.3.7)(@rspack/core@1.3.5(@swc/helpers@0.5.13))(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)': | |
9143 | 9136 | dependencies: |
9144 | - '@rsbuild/core': 1.1.12 | |
9145 | - copy-webpack-plugin: 11.0.0(webpack@5.97.1(esbuild@0.17.19)) | |
9146 | - html-webpack-plugin: 5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9147 | - mini-css-extract-plugin: 2.9.2(webpack@5.97.1(esbuild@0.17.19)) | |
9137 | + '@rsbuild/core': 1.3.7 | |
9138 | + copy-webpack-plugin: 11.0.0(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9139 | + html-webpack-plugin: 5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9140 | + mini-css-extract-plugin: 2.9.2(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9148 | 9141 | picocolors: 1.1.1 |
9149 | 9142 | reduce-configs: 1.1.0 |
9150 | 9143 | tsconfig-paths-webpack-plugin: 4.2.0 |
9151 | - webpack: 5.97.1(esbuild@0.17.19) | |
9144 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
9152 | 9145 | transitivePeerDependencies: |
9153 | 9146 | - '@rspack/core' |
9154 | 9147 | - '@swc/core' |
... | ... | @@ -9158,12 +9151,12 @@ snapshots: |
9158 | 9151 | |
9159 | 9152 | '@rsdoctor/client@0.4.12': {} |
9160 | 9153 | |
9161 | - '@rsdoctor/core@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9154 | + '@rsdoctor/core@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9162 | 9155 | dependencies: |
9163 | - '@rsdoctor/graph': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9164 | - '@rsdoctor/sdk': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9165 | - '@rsdoctor/types': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9166 | - '@rsdoctor/utils': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9156 | + '@rsdoctor/graph': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9157 | + '@rsdoctor/sdk': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9158 | + '@rsdoctor/types': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9159 | + '@rsdoctor/utils': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9167 | 9160 | axios: 1.7.9 |
9168 | 9161 | enhanced-resolve: 5.12.0 |
9169 | 9162 | filesize: 10.1.6 |
... | ... | @@ -9181,10 +9174,10 @@ snapshots: |
9181 | 9174 | - utf-8-validate |
9182 | 9175 | - webpack |
9183 | 9176 | |
9184 | - '@rsdoctor/graph@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9177 | + '@rsdoctor/graph@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9185 | 9178 | dependencies: |
9186 | - '@rsdoctor/types': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9187 | - '@rsdoctor/utils': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9179 | + '@rsdoctor/types': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9180 | + '@rsdoctor/utils': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9188 | 9181 | lodash: 4.17.21 |
9189 | 9182 | socket.io: 4.8.1 |
9190 | 9183 | source-map: 0.7.4 |
... | ... | @@ -9195,14 +9188,14 @@ snapshots: |
9195 | 9188 | - utf-8-validate |
9196 | 9189 | - webpack |
9197 | 9190 | |
9198 | - '@rsdoctor/rspack-plugin@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9191 | + '@rsdoctor/rspack-plugin@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9199 | 9192 | dependencies: |
9200 | - '@rsdoctor/core': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9201 | - '@rsdoctor/graph': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9202 | - '@rsdoctor/sdk': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9203 | - '@rsdoctor/types': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9204 | - '@rsdoctor/utils': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9205 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
9193 | + '@rsdoctor/core': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9194 | + '@rsdoctor/graph': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9195 | + '@rsdoctor/sdk': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9196 | + '@rsdoctor/types': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9197 | + '@rsdoctor/utils': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9198 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.13) | |
9206 | 9199 | lodash: 4.17.21 |
9207 | 9200 | transitivePeerDependencies: |
9208 | 9201 | - bufferutil |
... | ... | @@ -9211,12 +9204,12 @@ snapshots: |
9211 | 9204 | - utf-8-validate |
9212 | 9205 | - webpack |
9213 | 9206 | |
9214 | - '@rsdoctor/sdk@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9207 | + '@rsdoctor/sdk@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9215 | 9208 | dependencies: |
9216 | 9209 | '@rsdoctor/client': 0.4.12 |
9217 | - '@rsdoctor/graph': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9218 | - '@rsdoctor/types': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9219 | - '@rsdoctor/utils': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9210 | + '@rsdoctor/graph': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9211 | + '@rsdoctor/types': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9212 | + '@rsdoctor/utils': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9220 | 9213 | '@types/fs-extra': 11.0.4 |
9221 | 9214 | body-parser: 1.20.3 |
9222 | 9215 | cors: 2.8.5 |
... | ... | @@ -9236,20 +9229,20 @@ snapshots: |
9236 | 9229 | - utf-8-validate |
9237 | 9230 | - webpack |
9238 | 9231 | |
9239 | - '@rsdoctor/types@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9232 | + '@rsdoctor/types@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9240 | 9233 | dependencies: |
9241 | 9234 | '@types/connect': 3.4.38 |
9242 | 9235 | '@types/estree': 1.0.5 |
9243 | 9236 | '@types/tapable': 2.2.7 |
9244 | 9237 | source-map: 0.7.4 |
9245 | - webpack: 5.97.1(esbuild@0.17.19) | |
9238 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
9246 | 9239 | optionalDependencies: |
9247 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
9240 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.13) | |
9248 | 9241 | |
9249 | - '@rsdoctor/utils@0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19))': | |
9242 | + '@rsdoctor/utils@0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19))': | |
9250 | 9243 | dependencies: |
9251 | 9244 | '@babel/code-frame': 7.25.7 |
9252 | - '@rsdoctor/types': 0.4.12(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
9245 | + '@rsdoctor/types': 0.4.12(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
9253 | 9246 | '@types/estree': 1.0.5 |
9254 | 9247 | acorn: 8.14.0 |
9255 | 9248 | acorn-import-assertions: 1.9.0(acorn@8.14.0) |
... | ... | @@ -9271,112 +9264,70 @@ snapshots: |
9271 | 9264 | - supports-color |
9272 | 9265 | - webpack |
9273 | 9266 | |
9274 | - '@rspack/binding-darwin-arm64@1.0.14': | |
9275 | - optional: true | |
9276 | - | |
9277 | - '@rspack/binding-darwin-arm64@1.1.8': | |
9278 | - optional: true | |
9279 | - | |
9280 | - '@rspack/binding-darwin-x64@1.0.14': | |
9281 | - optional: true | |
9282 | - | |
9283 | - '@rspack/binding-darwin-x64@1.1.8': | |
9284 | - optional: true | |
9285 | - | |
9286 | - '@rspack/binding-linux-arm64-gnu@1.0.14': | |
9287 | - optional: true | |
9288 | - | |
9289 | - '@rspack/binding-linux-arm64-gnu@1.1.8': | |
9267 | + '@rspack/binding-darwin-arm64@1.3.5': | |
9290 | 9268 | optional: true |
9291 | 9269 | |
9292 | - '@rspack/binding-linux-arm64-musl@1.0.14': | |
9270 | + '@rspack/binding-darwin-x64@1.3.5': | |
9293 | 9271 | optional: true |
9294 | 9272 | |
9295 | - '@rspack/binding-linux-arm64-musl@1.1.8': | |
9273 | + '@rspack/binding-linux-arm64-gnu@1.3.5': | |
9296 | 9274 | optional: true |
9297 | 9275 | |
9298 | - '@rspack/binding-linux-x64-gnu@1.0.14': | |
9276 | + '@rspack/binding-linux-arm64-musl@1.3.5': | |
9299 | 9277 | optional: true |
9300 | 9278 | |
9301 | - '@rspack/binding-linux-x64-gnu@1.1.8': | |
9279 | + '@rspack/binding-linux-x64-gnu@1.3.5': | |
9302 | 9280 | optional: true |
9303 | 9281 | |
9304 | - '@rspack/binding-linux-x64-musl@1.0.14': | |
9282 | + '@rspack/binding-linux-x64-musl@1.3.5': | |
9305 | 9283 | optional: true |
9306 | 9284 | |
9307 | - '@rspack/binding-linux-x64-musl@1.1.8': | |
9285 | + '@rspack/binding-win32-arm64-msvc@1.3.5': | |
9308 | 9286 | optional: true |
9309 | 9287 | |
9310 | - '@rspack/binding-win32-arm64-msvc@1.0.14': | |
9288 | + '@rspack/binding-win32-ia32-msvc@1.3.5': | |
9311 | 9289 | optional: true |
9312 | 9290 | |
9313 | - '@rspack/binding-win32-arm64-msvc@1.1.8': | |
9291 | + '@rspack/binding-win32-x64-msvc@1.3.5': | |
9314 | 9292 | optional: true |
9315 | 9293 | |
9316 | - '@rspack/binding-win32-ia32-msvc@1.0.14': | |
9317 | - optional: true | |
9318 | - | |
9319 | - '@rspack/binding-win32-ia32-msvc@1.1.8': | |
9320 | - optional: true | |
9321 | - | |
9322 | - '@rspack/binding-win32-x64-msvc@1.0.14': | |
9323 | - optional: true | |
9324 | - | |
9325 | - '@rspack/binding-win32-x64-msvc@1.1.8': | |
9326 | - optional: true | |
9327 | - | |
9328 | - '@rspack/binding@1.0.14': | |
9294 | + '@rspack/binding@1.3.5': | |
9329 | 9295 | optionalDependencies: |
9330 | - '@rspack/binding-darwin-arm64': 1.0.14 | |
9331 | - '@rspack/binding-darwin-x64': 1.0.14 | |
9332 | - '@rspack/binding-linux-arm64-gnu': 1.0.14 | |
9333 | - '@rspack/binding-linux-arm64-musl': 1.0.14 | |
9334 | - '@rspack/binding-linux-x64-gnu': 1.0.14 | |
9335 | - '@rspack/binding-linux-x64-musl': 1.0.14 | |
9336 | - '@rspack/binding-win32-arm64-msvc': 1.0.14 | |
9337 | - '@rspack/binding-win32-ia32-msvc': 1.0.14 | |
9338 | - '@rspack/binding-win32-x64-msvc': 1.0.14 | |
9339 | - | |
9340 | - '@rspack/binding@1.1.8': | |
9341 | - optionalDependencies: | |
9342 | - '@rspack/binding-darwin-arm64': 1.1.8 | |
9343 | - '@rspack/binding-darwin-x64': 1.1.8 | |
9344 | - '@rspack/binding-linux-arm64-gnu': 1.1.8 | |
9345 | - '@rspack/binding-linux-arm64-musl': 1.1.8 | |
9346 | - '@rspack/binding-linux-x64-gnu': 1.1.8 | |
9347 | - '@rspack/binding-linux-x64-musl': 1.1.8 | |
9348 | - '@rspack/binding-win32-arm64-msvc': 1.1.8 | |
9349 | - '@rspack/binding-win32-ia32-msvc': 1.1.8 | |
9350 | - '@rspack/binding-win32-x64-msvc': 1.1.8 | |
9351 | - | |
9352 | - '@rspack/core@1.0.14(@swc/helpers@0.5.15)': | |
9353 | - dependencies: | |
9354 | - '@module-federation/runtime-tools': 0.5.1 | |
9355 | - '@rspack/binding': 1.0.14 | |
9296 | + '@rspack/binding-darwin-arm64': 1.3.5 | |
9297 | + '@rspack/binding-darwin-x64': 1.3.5 | |
9298 | + '@rspack/binding-linux-arm64-gnu': 1.3.5 | |
9299 | + '@rspack/binding-linux-arm64-musl': 1.3.5 | |
9300 | + '@rspack/binding-linux-x64-gnu': 1.3.5 | |
9301 | + '@rspack/binding-linux-x64-musl': 1.3.5 | |
9302 | + '@rspack/binding-win32-arm64-msvc': 1.3.5 | |
9303 | + '@rspack/binding-win32-ia32-msvc': 1.3.5 | |
9304 | + '@rspack/binding-win32-x64-msvc': 1.3.5 | |
9305 | + | |
9306 | + '@rspack/core@1.3.5(@swc/helpers@0.5.13)': | |
9307 | + dependencies: | |
9308 | + '@module-federation/runtime-tools': 0.11.2 | |
9309 | + '@rspack/binding': 1.3.5 | |
9356 | 9310 | '@rspack/lite-tapable': 1.0.1 |
9357 | - caniuse-lite: 1.0.30001690 | |
9311 | + caniuse-lite: 1.0.30001714 | |
9358 | 9312 | optionalDependencies: |
9359 | - '@swc/helpers': 0.5.15 | |
9313 | + '@swc/helpers': 0.5.13 | |
9360 | 9314 | |
9361 | - '@rspack/core@1.1.8(@swc/helpers@0.5.15)': | |
9315 | + '@rspack/core@1.3.5(@swc/helpers@0.5.17)': | |
9362 | 9316 | dependencies: |
9363 | - '@module-federation/runtime-tools': 0.5.1 | |
9364 | - '@rspack/binding': 1.1.8 | |
9317 | + '@module-federation/runtime-tools': 0.11.2 | |
9318 | + '@rspack/binding': 1.3.5 | |
9365 | 9319 | '@rspack/lite-tapable': 1.0.1 |
9366 | - caniuse-lite: 1.0.30001690 | |
9320 | + caniuse-lite: 1.0.30001714 | |
9367 | 9321 | optionalDependencies: |
9368 | - '@swc/helpers': 0.5.15 | |
9322 | + '@swc/helpers': 0.5.17 | |
9369 | 9323 | |
9370 | 9324 | '@rspack/lite-tapable@1.0.1': {} |
9371 | 9325 | |
9372 | - '@rspack/plugin-react-refresh@1.0.1(react-refresh@0.16.0)': | |
9326 | + '@rspack/plugin-react-refresh@1.2.1(react-refresh@0.17.0)': | |
9373 | 9327 | dependencies: |
9374 | 9328 | error-stack-parser: 2.1.4 |
9375 | - html-entities: 2.5.2 | |
9376 | - optionalDependencies: | |
9377 | - react-refresh: 0.16.0 | |
9378 | - | |
9379 | - '@rtsao/scc@1.1.0': {} | |
9329 | + html-entities: 2.6.0 | |
9330 | + react-refresh: 0.17.0 | |
9380 | 9331 | |
9381 | 9332 | '@sinclair/typebox@0.27.8': {} |
9382 | 9333 | |
... | ... | @@ -9461,25 +9412,68 @@ snapshots: |
9461 | 9412 | transitivePeerDependencies: |
9462 | 9413 | - typescript |
9463 | 9414 | |
9464 | - '@swc/counter@0.1.3': {} | |
9415 | + '@swc/core-darwin-arm64@1.10.18': | |
9416 | + optional: true | |
9417 | + | |
9418 | + '@swc/core-darwin-x64@1.10.18': | |
9419 | + optional: true | |
9420 | + | |
9421 | + '@swc/core-linux-arm-gnueabihf@1.10.18': | |
9422 | + optional: true | |
9423 | + | |
9424 | + '@swc/core-linux-arm64-gnu@1.10.18': | |
9425 | + optional: true | |
9426 | + | |
9427 | + '@swc/core-linux-arm64-musl@1.10.18': | |
9428 | + optional: true | |
9429 | + | |
9430 | + '@swc/core-linux-x64-gnu@1.10.18': | |
9431 | + optional: true | |
9432 | + | |
9433 | + '@swc/core-linux-x64-musl@1.10.18': | |
9434 | + optional: true | |
9435 | + | |
9436 | + '@swc/core-win32-arm64-msvc@1.10.18': | |
9437 | + optional: true | |
9438 | + | |
9439 | + '@swc/core-win32-ia32-msvc@1.10.18': | |
9440 | + optional: true | |
9441 | + | |
9442 | + '@swc/core-win32-x64-msvc@1.10.18': | |
9443 | + optional: true | |
9465 | 9444 | |
9466 | - '@swc/helpers@0.5.1': | |
9445 | + '@swc/core@1.10.18(@swc/helpers@0.5.13)': | |
9467 | 9446 | dependencies: |
9468 | - tslib: 2.8.1 | |
9447 | + '@swc/counter': 0.1.3 | |
9448 | + '@swc/types': 0.1.21 | |
9449 | + optionalDependencies: | |
9450 | + '@swc/core-darwin-arm64': 1.10.18 | |
9451 | + '@swc/core-darwin-x64': 1.10.18 | |
9452 | + '@swc/core-linux-arm-gnueabihf': 1.10.18 | |
9453 | + '@swc/core-linux-arm64-gnu': 1.10.18 | |
9454 | + '@swc/core-linux-arm64-musl': 1.10.18 | |
9455 | + '@swc/core-linux-x64-gnu': 1.10.18 | |
9456 | + '@swc/core-linux-x64-musl': 1.10.18 | |
9457 | + '@swc/core-win32-arm64-msvc': 1.10.18 | |
9458 | + '@swc/core-win32-ia32-msvc': 1.10.18 | |
9459 | + '@swc/core-win32-x64-msvc': 1.10.18 | |
9460 | + '@swc/helpers': 0.5.13 | |
9461 | + | |
9462 | + '@swc/counter@0.1.3': {} | |
9469 | 9463 | |
9470 | 9464 | '@swc/helpers@0.5.13': |
9471 | 9465 | dependencies: |
9472 | 9466 | tslib: 2.8.1 |
9473 | 9467 | |
9474 | - '@swc/helpers@0.5.15': | |
9468 | + '@swc/helpers@0.5.17': | |
9475 | 9469 | dependencies: |
9476 | 9470 | tslib: 2.8.1 |
9477 | 9471 | |
9478 | - '@swc/helpers@0.5.3': | |
9472 | + '@swc/plugin-styled-components@7.1.3': | |
9479 | 9473 | dependencies: |
9480 | - tslib: 2.8.1 | |
9474 | + '@swc/counter': 0.1.3 | |
9481 | 9475 | |
9482 | - '@swc/plugin-styled-components@5.0.0': | |
9476 | + '@swc/types@0.1.21': | |
9483 | 9477 | dependencies: |
9484 | 9478 | '@swc/counter': 0.1.3 |
9485 | 9479 | |
... | ... | @@ -9572,8 +9566,6 @@ snapshots: |
9572 | 9566 | |
9573 | 9567 | '@types/json-schema@7.0.15': {} |
9574 | 9568 | |
9575 | - '@types/json5@0.0.29': {} | |
9576 | - | |
9577 | 9569 | '@types/jsonfile@6.1.4': |
9578 | 9570 | dependencies: |
9579 | 9571 | '@types/node': 18.19.68 |
... | ... | @@ -9629,7 +9621,7 @@ snapshots: |
9629 | 9621 | dependencies: |
9630 | 9622 | '@types/node': 18.19.68 |
9631 | 9623 | tapable: 2.2.1 |
9632 | - webpack: 5.97.1(esbuild@0.17.19) | |
9624 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
9633 | 9625 | transitivePeerDependencies: |
9634 | 9626 | - '@swc/core' |
9635 | 9627 | - esbuild |
... | ... | @@ -9743,7 +9735,7 @@ snapshots: |
9743 | 9735 | '@use-gesture/core': 10.3.0 |
9744 | 9736 | react: 18.3.1 |
9745 | 9737 | |
9746 | - '@vercel/nft@0.26.5': | |
9738 | + '@vercel/nft@0.27.3': | |
9747 | 9739 | dependencies: |
9748 | 9740 | '@mapbox/node-pre-gyp': 1.0.11 |
9749 | 9741 | '@rollup/pluginutils': 4.2.1 |
... | ... | @@ -9761,25 +9753,6 @@ snapshots: |
9761 | 9753 | - encoding |
9762 | 9754 | - supports-color |
9763 | 9755 | |
9764 | - '@vercel/nft@0.27.10': | |
9765 | - dependencies: | |
9766 | - '@mapbox/node-pre-gyp': 2.0.0-rc.0 | |
9767 | - '@rollup/pluginutils': 5.1.4 | |
9768 | - acorn: 8.14.0 | |
9769 | - acorn-import-attributes: 1.9.5(acorn@8.14.0) | |
9770 | - async-sema: 3.1.1 | |
9771 | - bindings: 1.5.0 | |
9772 | - estree-walker: 2.0.2 | |
9773 | - glob: 7.2.3 | |
9774 | - graceful-fs: 4.2.11 | |
9775 | - node-gyp-build: 4.8.4 | |
9776 | - picomatch: 4.0.2 | |
9777 | - resolve-from: 5.0.0 | |
9778 | - transitivePeerDependencies: | |
9779 | - - encoding | |
9780 | - - rollup | |
9781 | - - supports-color | |
9782 | - | |
9783 | 9756 | '@web-std/blob@3.0.5': |
9784 | 9757 | dependencies: |
9785 | 9758 | '@web-std/stream': 1.0.0 |
... | ... | @@ -9903,8 +9876,6 @@ snapshots: |
9903 | 9876 | |
9904 | 9877 | abbrev@1.1.1: {} |
9905 | 9878 | |
9906 | - abbrev@2.0.0: {} | |
9907 | - | |
9908 | 9879 | abort-controller@3.0.0: |
9909 | 9880 | dependencies: |
9910 | 9881 | event-target-shim: 5.0.1 |
... | ... | @@ -9940,8 +9911,6 @@ snapshots: |
9940 | 9911 | transitivePeerDependencies: |
9941 | 9912 | - supports-color |
9942 | 9913 | |
9943 | - agent-base@7.1.3: {} | |
9944 | - | |
9945 | 9914 | ahooks@3.8.4(react@18.3.1): |
9946 | 9915 | dependencies: |
9947 | 9916 | '@babel/runtime': 7.26.0 |
... | ... | @@ -9959,10 +9928,6 @@ snapshots: |
9959 | 9928 | optionalDependencies: |
9960 | 9929 | ajv: 8.17.1 |
9961 | 9930 | |
9962 | - ajv-keywords@3.5.2(ajv@6.12.6): | |
9963 | - dependencies: | |
9964 | - ajv: 6.12.6 | |
9965 | - | |
9966 | 9931 | ajv-keywords@5.1.0(ajv@8.17.1): |
9967 | 9932 | dependencies: |
9968 | 9933 | ajv: 8.17.1 |
... | ... | @@ -10144,15 +10109,6 @@ snapshots: |
10144 | 10109 | es-object-atoms: 1.0.0 |
10145 | 10110 | es-shim-unscopables: 1.0.2 |
10146 | 10111 | |
10147 | - array.prototype.findlastindex@1.2.5: | |
10148 | - dependencies: | |
10149 | - call-bind: 1.0.8 | |
10150 | - define-properties: 1.2.1 | |
10151 | - es-abstract: 1.23.7 | |
10152 | - es-errors: 1.3.0 | |
10153 | - es-object-atoms: 1.0.0 | |
10154 | - es-shim-unscopables: 1.0.2 | |
10155 | - | |
10156 | 10112 | array.prototype.flat@1.3.3: |
10157 | 10113 | dependencies: |
10158 | 10114 | call-bind: 1.0.8 |
... | ... | @@ -10215,10 +10171,10 @@ snapshots: |
10215 | 10171 | |
10216 | 10172 | audio-context-polyfill@1.0.0: {} |
10217 | 10173 | |
10218 | - autoprefixer@10.4.20(postcss@8.4.49): | |
10174 | + autoprefixer@10.4.21(postcss@8.4.49): | |
10219 | 10175 | dependencies: |
10220 | - browserslist: 4.24.3 | |
10221 | - caniuse-lite: 1.0.30001690 | |
10176 | + browserslist: 4.24.4 | |
10177 | + caniuse-lite: 1.0.30001714 | |
10222 | 10178 | fraction.js: 4.3.7 |
10223 | 10179 | normalize-range: 0.1.2 |
10224 | 10180 | picocolors: 1.1.1 |
... | ... | @@ -10237,12 +10193,12 @@ snapshots: |
10237 | 10193 | transitivePeerDependencies: |
10238 | 10194 | - debug |
10239 | 10195 | |
10240 | - babel-loader@9.1.3(@babel/core@7.26.0)(webpack@5.97.1(esbuild@0.17.19)): | |
10196 | + babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
10241 | 10197 | dependencies: |
10242 | 10198 | '@babel/core': 7.26.0 |
10243 | 10199 | find-cache-dir: 4.0.0 |
10244 | 10200 | schema-utils: 4.3.0 |
10245 | - webpack: 5.97.1(esbuild@0.17.19) | |
10201 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
10246 | 10202 | |
10247 | 10203 | babel-plugin-dynamic-import-node@2.3.3: |
10248 | 10204 | dependencies: |
... | ... | @@ -10422,7 +10378,7 @@ snapshots: |
10422 | 10378 | |
10423 | 10379 | browserslist-to-es-version@1.0.0: |
10424 | 10380 | dependencies: |
10425 | - browserslist: 4.24.3 | |
10381 | + browserslist: 4.24.4 | |
10426 | 10382 | |
10427 | 10383 | browserslist@4.24.3: |
10428 | 10384 | dependencies: |
... | ... | @@ -10431,6 +10387,13 @@ snapshots: |
10431 | 10387 | node-releases: 2.0.19 |
10432 | 10388 | update-browserslist-db: 1.1.1(browserslist@4.24.3) |
10433 | 10389 | |
10390 | + browserslist@4.24.4: | |
10391 | + dependencies: | |
10392 | + caniuse-lite: 1.0.30001690 | |
10393 | + electron-to-chromium: 1.5.76 | |
10394 | + node-releases: 2.0.19 | |
10395 | + update-browserslist-db: 1.1.1(browserslist@4.24.4) | |
10396 | + | |
10434 | 10397 | buffer-builder@0.2.0: {} |
10435 | 10398 | |
10436 | 10399 | buffer-from@1.1.2: {} |
... | ... | @@ -10494,13 +10457,15 @@ snapshots: |
10494 | 10457 | |
10495 | 10458 | caniuse-api@3.0.0: |
10496 | 10459 | dependencies: |
10497 | - browserslist: 4.24.3 | |
10460 | + browserslist: 4.24.4 | |
10498 | 10461 | caniuse-lite: 1.0.30001690 |
10499 | 10462 | lodash.memoize: 4.1.2 |
10500 | 10463 | lodash.uniq: 4.5.0 |
10501 | 10464 | |
10502 | 10465 | caniuse-lite@1.0.30001690: {} |
10503 | 10466 | |
10467 | + caniuse-lite@1.0.30001714: {} | |
10468 | + | |
10504 | 10469 | center-align@0.1.3: |
10505 | 10470 | dependencies: |
10506 | 10471 | align-text: 0.1.4 |
... | ... | @@ -10537,8 +10502,6 @@ snapshots: |
10537 | 10502 | |
10538 | 10503 | chownr@2.0.0: {} |
10539 | 10504 | |
10540 | - chownr@3.0.0: {} | |
10541 | - | |
10542 | 10505 | chrome-trace-event@1.0.4: {} |
10543 | 10506 | |
10544 | 10507 | ci-info@3.9.0: {} |
... | ... | @@ -10638,8 +10601,6 @@ snapshots: |
10638 | 10601 | transitivePeerDependencies: |
10639 | 10602 | - supports-color |
10640 | 10603 | |
10641 | - consola@3.3.3: {} | |
10642 | - | |
10643 | 10604 | console-browserify@1.2.0: {} |
10644 | 10605 | |
10645 | 10606 | console-control-strings@1.1.0: {} |
... | ... | @@ -10661,7 +10622,7 @@ snapshots: |
10661 | 10622 | dependencies: |
10662 | 10623 | toggle-selection: 1.0.6 |
10663 | 10624 | |
10664 | - copy-webpack-plugin@11.0.0(webpack@5.97.1(esbuild@0.17.19)): | |
10625 | + copy-webpack-plugin@11.0.0(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
10665 | 10626 | dependencies: |
10666 | 10627 | fast-glob: 3.3.2 |
10667 | 10628 | glob-parent: 6.0.2 |
... | ... | @@ -10669,7 +10630,7 @@ snapshots: |
10669 | 10630 | normalize-path: 3.0.0 |
10670 | 10631 | schema-utils: 4.3.0 |
10671 | 10632 | serialize-javascript: 6.0.2 |
10672 | - webpack: 5.97.1(esbuild@0.17.19) | |
10633 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
10673 | 10634 | |
10674 | 10635 | core-js-compat@3.39.0: |
10675 | 10636 | dependencies: |
... | ... | @@ -10677,11 +10638,9 @@ snapshots: |
10677 | 10638 | |
10678 | 10639 | core-js-pure@3.39.0: {} |
10679 | 10640 | |
10680 | - core-js@3.37.1: {} | |
10681 | - | |
10682 | - core-js@3.38.1: {} | |
10641 | + core-js@3.40.0: {} | |
10683 | 10642 | |
10684 | - core-js@3.39.0: {} | |
10643 | + core-js@3.41.0: {} | |
10685 | 10644 | |
10686 | 10645 | core-util-is@1.0.3: {} |
10687 | 10646 | |
... | ... | @@ -10762,15 +10721,15 @@ snapshots: |
10762 | 10721 | |
10763 | 10722 | css-functions-list@3.2.3: {} |
10764 | 10723 | |
10765 | - css-minimizer-webpack-plugin@5.0.1(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)): | |
10724 | + css-minimizer-webpack-plugin@5.0.1(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
10766 | 10725 | dependencies: |
10767 | 10726 | '@jridgewell/trace-mapping': 0.3.25 |
10768 | - cssnano: 6.0.1(postcss@8.4.49) | |
10727 | + cssnano: 6.1.2(postcss@8.4.49) | |
10769 | 10728 | jest-worker: 29.7.0 |
10770 | 10729 | postcss: 8.4.49 |
10771 | 10730 | schema-utils: 4.3.0 |
10772 | 10731 | serialize-javascript: 6.0.2 |
10773 | - webpack: 5.97.1(esbuild@0.17.19) | |
10732 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
10774 | 10733 | optionalDependencies: |
10775 | 10734 | esbuild: 0.17.19 |
10776 | 10735 | |
... | ... | @@ -10818,7 +10777,7 @@ snapshots: |
10818 | 10777 | |
10819 | 10778 | cssnano-preset-default@6.1.2(postcss@8.4.49): |
10820 | 10779 | dependencies: |
10821 | - browserslist: 4.24.3 | |
10780 | + browserslist: 4.24.4 | |
10822 | 10781 | css-declaration-sorter: 7.2.0(postcss@8.4.49) |
10823 | 10782 | cssnano-utils: 4.0.2(postcss@8.4.49) |
10824 | 10783 | postcss: 8.4.49 |
... | ... | @@ -10854,10 +10813,10 @@ snapshots: |
10854 | 10813 | dependencies: |
10855 | 10814 | postcss: 8.4.49 |
10856 | 10815 | |
10857 | - cssnano@6.0.1(postcss@8.4.49): | |
10816 | + cssnano@6.1.2(postcss@8.4.49): | |
10858 | 10817 | dependencies: |
10859 | 10818 | cssnano-preset-default: 6.1.2(postcss@8.4.49) |
10860 | - lilconfig: 2.1.0 | |
10819 | + lilconfig: 3.1.3 | |
10861 | 10820 | postcss: 8.4.49 |
10862 | 10821 | |
10863 | 10822 | csso@5.0.5: |
... | ... | @@ -10896,10 +10855,6 @@ snapshots: |
10896 | 10855 | dependencies: |
10897 | 10856 | ms: 2.0.0 |
10898 | 10857 | |
10899 | - debug@3.2.7: | |
10900 | - dependencies: | |
10901 | - ms: 2.1.3 | |
10902 | - | |
10903 | 10858 | debug@4.1.1: |
10904 | 10859 | dependencies: |
10905 | 10860 | ms: 2.1.3 |
... | ... | @@ -11113,6 +11068,8 @@ snapshots: |
11113 | 11068 | |
11114 | 11069 | entities@4.5.0: {} |
11115 | 11070 | |
11071 | + entities@6.0.0: {} | |
11072 | + | |
11116 | 11073 | envinfo@7.14.0: {} |
11117 | 11074 | |
11118 | 11075 | environment@1.1.0: {} |
... | ... | @@ -11277,73 +11234,6 @@ snapshots: |
11277 | 11234 | string-width: 4.2.3 |
11278 | 11235 | supports-hyperlinks: 2.3.0 |
11279 | 11236 | |
11280 | - eslint-import-resolver-node@0.3.9: | |
11281 | - dependencies: | |
11282 | - debug: 3.2.7 | |
11283 | - is-core-module: 2.16.1 | |
11284 | - resolve: 1.22.10 | |
11285 | - transitivePeerDependencies: | |
11286 | - - supports-color | |
11287 | - | |
11288 | - eslint-module-utils@2.12.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1): | |
11289 | - dependencies: | |
11290 | - debug: 3.2.7 | |
11291 | - optionalDependencies: | |
11292 | - '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.7.2) | |
11293 | - eslint: 8.57.1 | |
11294 | - eslint-import-resolver-node: 0.3.9 | |
11295 | - transitivePeerDependencies: | |
11296 | - - supports-color | |
11297 | - | |
11298 | - eslint-plugin-es@3.0.1(eslint@8.57.1): | |
11299 | - dependencies: | |
11300 | - eslint: 8.57.1 | |
11301 | - eslint-utils: 2.1.0 | |
11302 | - regexpp: 3.2.0 | |
11303 | - | |
11304 | - eslint-plugin-eslint-comments@3.2.0(eslint@8.57.1): | |
11305 | - dependencies: | |
11306 | - escape-string-regexp: 1.0.5 | |
11307 | - eslint: 8.57.1 | |
11308 | - ignore: 5.3.2 | |
11309 | - | |
11310 | - eslint-plugin-filenames@1.3.2(eslint@8.57.1): | |
11311 | - dependencies: | |
11312 | - eslint: 8.57.1 | |
11313 | - lodash.camelcase: 4.3.0 | |
11314 | - lodash.kebabcase: 4.1.1 | |
11315 | - lodash.snakecase: 4.1.1 | |
11316 | - lodash.upperfirst: 4.3.1 | |
11317 | - | |
11318 | - eslint-plugin-import@2.31.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1): | |
11319 | - dependencies: | |
11320 | - '@rtsao/scc': 1.1.0 | |
11321 | - array-includes: 3.1.8 | |
11322 | - array.prototype.findlastindex: 1.2.5 | |
11323 | - array.prototype.flat: 1.3.3 | |
11324 | - array.prototype.flatmap: 1.3.3 | |
11325 | - debug: 3.2.7 | |
11326 | - doctrine: 2.1.0 | |
11327 | - eslint: 8.57.1 | |
11328 | - eslint-import-resolver-node: 0.3.9 | |
11329 | - eslint-module-utils: 2.12.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.1) | |
11330 | - hasown: 2.0.2 | |
11331 | - is-core-module: 2.16.1 | |
11332 | - is-glob: 4.0.3 | |
11333 | - minimatch: 3.1.2 | |
11334 | - object.fromentries: 2.0.8 | |
11335 | - object.groupby: 1.0.3 | |
11336 | - object.values: 1.2.1 | |
11337 | - semver: 6.3.1 | |
11338 | - string.prototype.trimend: 1.0.9 | |
11339 | - tsconfig-paths: 3.15.0 | |
11340 | - optionalDependencies: | |
11341 | - '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.7.2) | |
11342 | - transitivePeerDependencies: | |
11343 | - - eslint-import-resolver-typescript | |
11344 | - - eslint-import-resolver-webpack | |
11345 | - - supports-color | |
11346 | - | |
11347 | 11237 | eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2): |
11348 | 11238 | dependencies: |
11349 | 11239 | '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.2) |
... | ... | @@ -11354,28 +11244,6 @@ snapshots: |
11354 | 11244 | - supports-color |
11355 | 11245 | - typescript |
11356 | 11246 | |
11357 | - eslint-plugin-node@11.1.0(eslint@8.57.1): | |
11358 | - dependencies: | |
11359 | - eslint: 8.57.1 | |
11360 | - eslint-plugin-es: 3.0.1(eslint@8.57.1) | |
11361 | - eslint-utils: 2.1.0 | |
11362 | - ignore: 5.3.2 | |
11363 | - minimatch: 3.1.2 | |
11364 | - resolve: 1.22.10 | |
11365 | - semver: 6.3.1 | |
11366 | - | |
11367 | - eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@2.8.8): | |
11368 | - dependencies: | |
11369 | - eslint: 8.57.1 | |
11370 | - prettier: 2.8.8 | |
11371 | - prettier-linter-helpers: 1.0.0 | |
11372 | - optionalDependencies: | |
11373 | - eslint-config-prettier: 8.10.0(eslint@8.57.1) | |
11374 | - | |
11375 | - eslint-plugin-promise@6.6.0(eslint@8.57.1): | |
11376 | - dependencies: | |
11377 | - eslint: 8.57.1 | |
11378 | - | |
11379 | 11247 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.1): |
11380 | 11248 | dependencies: |
11381 | 11249 | eslint: 8.57.1 |
... | ... | @@ -11434,17 +11302,11 @@ snapshots: |
11434 | 11302 | esrecurse: 4.3.0 |
11435 | 11303 | estraverse: 5.3.0 |
11436 | 11304 | |
11437 | - eslint-utils@2.1.0: | |
11438 | - dependencies: | |
11439 | - eslint-visitor-keys: 1.3.0 | |
11440 | - | |
11441 | 11305 | eslint-utils@3.0.0(eslint@8.57.1): |
11442 | 11306 | dependencies: |
11443 | 11307 | eslint: 8.57.1 |
11444 | 11308 | eslint-visitor-keys: 2.1.0 |
11445 | 11309 | |
11446 | - eslint-visitor-keys@1.3.0: {} | |
11447 | - | |
11448 | 11310 | eslint-visitor-keys@2.1.0: {} |
11449 | 11311 | |
11450 | 11312 | eslint-visitor-keys@3.4.3: {} |
... | ... | @@ -11563,8 +11425,6 @@ snapshots: |
11563 | 11425 | |
11564 | 11426 | fast-deep-equal@3.1.3: {} |
11565 | 11427 | |
11566 | - fast-diff@1.3.0: {} | |
11567 | - | |
11568 | 11428 | fast-glob@3.3.2: |
11569 | 11429 | dependencies: |
11570 | 11430 | '@nodelib/fs.stat': 2.0.5 |
... | ... | @@ -11909,6 +11769,8 @@ snapshots: |
11909 | 11769 | |
11910 | 11770 | html-entities@2.5.2: {} |
11911 | 11771 | |
11772 | + html-entities@2.6.0: {} | |
11773 | + | |
11912 | 11774 | html-escaper@2.0.2: {} |
11913 | 11775 | |
11914 | 11776 | html-minifier-terser@6.1.0: |
... | ... | @@ -11933,7 +11795,7 @@ snapshots: |
11933 | 11795 | |
11934 | 11796 | html-tags@3.3.1: {} |
11935 | 11797 | |
11936 | - html-webpack-plugin@5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)): | |
11798 | + html-webpack-plugin@5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
11937 | 11799 | dependencies: |
11938 | 11800 | '@types/html-minifier-terser': 6.1.0 |
11939 | 11801 | html-minifier-terser: 6.1.0 |
... | ... | @@ -11941,11 +11803,18 @@ snapshots: |
11941 | 11803 | pretty-error: 4.0.0 |
11942 | 11804 | tapable: 2.2.1 |
11943 | 11805 | optionalDependencies: |
11944 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
11945 | - webpack: 5.97.1(esbuild@0.17.19) | |
11806 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.13) | |
11807 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
11946 | 11808 | |
11947 | 11809 | html5shiv@3.7.3: {} |
11948 | 11810 | |
11811 | + htmlparser2@10.0.0: | |
11812 | + dependencies: | |
11813 | + domelementtype: 2.3.0 | |
11814 | + domhandler: 5.0.3 | |
11815 | + domutils: 3.2.1 | |
11816 | + entities: 6.0.0 | |
11817 | + | |
11949 | 11818 | htmlparser2@6.1.0: |
11950 | 11819 | dependencies: |
11951 | 11820 | domelementtype: 2.3.0 |
... | ... | @@ -11953,13 +11822,6 @@ snapshots: |
11953 | 11822 | domutils: 2.8.0 |
11954 | 11823 | entities: 2.2.0 |
11955 | 11824 | |
11956 | - htmlparser2@9.1.0: | |
11957 | - dependencies: | |
11958 | - domelementtype: 2.3.0 | |
11959 | - domhandler: 5.0.3 | |
11960 | - domutils: 3.2.1 | |
11961 | - entities: 4.5.0 | |
11962 | - | |
11963 | 11825 | http-compression@1.0.6: {} |
11964 | 11826 | |
11965 | 11827 | http-errors@2.0.0: |
... | ... | @@ -11979,13 +11841,6 @@ snapshots: |
11979 | 11841 | transitivePeerDependencies: |
11980 | 11842 | - supports-color |
11981 | 11843 | |
11982 | - https-proxy-agent@7.0.6: | |
11983 | - dependencies: | |
11984 | - agent-base: 7.1.3 | |
11985 | - debug: 4.4.0(supports-color@5.5.0) | |
11986 | - transitivePeerDependencies: | |
11987 | - - supports-color | |
11988 | - | |
11989 | 11844 | human-signals@1.1.1: {} |
11990 | 11845 | |
11991 | 11846 | human-signals@5.0.0: {} |
... | ... | @@ -12008,10 +11863,6 @@ snapshots: |
12008 | 11863 | |
12009 | 11864 | immer@10.1.1: {} |
12010 | 11865 | |
12011 | - immer@9.0.21: {} | |
12012 | - | |
12013 | - immutable@4.3.7: {} | |
12014 | - | |
12015 | 11866 | immutable@5.0.3: {} |
12016 | 11867 | |
12017 | 11868 | import-fresh@3.3.0: |
... | ... | @@ -12298,6 +12149,8 @@ snapshots: |
12298 | 12149 | |
12299 | 12150 | jiti@1.21.7: {} |
12300 | 12151 | |
12152 | + jiti@2.4.2: {} | |
12153 | + | |
12301 | 12154 | js-cookie@3.0.5: {} |
12302 | 12155 | |
12303 | 12156 | js-polyfills@0.1.43: {} |
... | ... | @@ -12334,10 +12187,6 @@ snapshots: |
12334 | 12187 | |
12335 | 12188 | json3@3.3.3: {} |
12336 | 12189 | |
12337 | - json5@1.0.2: | |
12338 | - dependencies: | |
12339 | - minimist: 1.2.8 | |
12340 | - | |
12341 | 12190 | json5@2.2.3: {} |
12342 | 12191 | |
12343 | 12192 | jsonfile@6.1.0: |
... | ... | @@ -12388,8 +12237,6 @@ snapshots: |
12388 | 12237 | dependencies: |
12389 | 12238 | immediate: 3.0.6 |
12390 | 12239 | |
12391 | - lilconfig@2.1.0: {} | |
12392 | - | |
12393 | 12240 | lilconfig@3.1.3: {} |
12394 | 12241 | |
12395 | 12242 | lines-and-columns@1.2.4: {} |
... | ... | @@ -12428,6 +12275,8 @@ snapshots: |
12428 | 12275 | emojis-list: 3.0.0 |
12429 | 12276 | json5: 2.2.3 |
12430 | 12277 | |
12278 | + loader-utils@3.3.1: {} | |
12279 | + | |
12431 | 12280 | localforage@1.10.0: |
12432 | 12281 | dependencies: |
12433 | 12282 | lie: 3.1.1 |
... | ... | @@ -12449,8 +12298,6 @@ snapshots: |
12449 | 12298 | dependencies: |
12450 | 12299 | p-locate: 6.0.0 |
12451 | 12300 | |
12452 | - lodash.camelcase@4.3.0: {} | |
12453 | - | |
12454 | 12301 | lodash.debounce@4.0.8: {} |
12455 | 12302 | |
12456 | 12303 | lodash.isequal@4.5.0: {} |
... | ... | @@ -12461,14 +12308,10 @@ snapshots: |
12461 | 12308 | |
12462 | 12309 | lodash.merge@4.6.2: {} |
12463 | 12310 | |
12464 | - lodash.snakecase@4.1.1: {} | |
12465 | - | |
12466 | 12311 | lodash.truncate@4.4.2: {} |
12467 | 12312 | |
12468 | 12313 | lodash.uniq@4.5.0: {} |
12469 | 12314 | |
12470 | - lodash.upperfirst@4.3.1: {} | |
12471 | - | |
12472 | 12315 | lodash@4.17.21: {} |
12473 | 12316 | |
12474 | 12317 | log-symbols@4.1.0: |
... | ... | @@ -12504,6 +12347,10 @@ snapshots: |
12504 | 12347 | dependencies: |
12505 | 12348 | yallist: 4.0.0 |
12506 | 12349 | |
12350 | + magic-string@0.30.17: | |
12351 | + dependencies: | |
12352 | + '@jridgewell/sourcemap-codec': 1.5.0 | |
12353 | + | |
12507 | 12354 | make-dir@2.1.0: |
12508 | 12355 | dependencies: |
12509 | 12356 | pify: 4.0.1 |
... | ... | @@ -12601,11 +12448,11 @@ snapshots: |
12601 | 12448 | |
12602 | 12449 | min-indent@1.0.1: {} |
12603 | 12450 | |
12604 | - mini-css-extract-plugin@2.9.2(webpack@5.97.1(esbuild@0.17.19)): | |
12451 | + mini-css-extract-plugin@2.9.2(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
12605 | 12452 | dependencies: |
12606 | 12453 | schema-utils: 4.3.0 |
12607 | 12454 | tapable: 2.2.1 |
12608 | - webpack: 5.97.1(esbuild@0.17.19) | |
12455 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
12609 | 12456 | |
12610 | 12457 | minimalistic-assert@1.0.1: {} |
12611 | 12458 | |
... | ... | @@ -12650,19 +12497,12 @@ snapshots: |
12650 | 12497 | minipass: 3.3.6 |
12651 | 12498 | yallist: 4.0.0 |
12652 | 12499 | |
12653 | - minizlib@3.0.1: | |
12654 | - dependencies: | |
12655 | - minipass: 7.1.2 | |
12656 | - rimraf: 5.0.10 | |
12657 | - | |
12658 | 12500 | mkdirp@0.5.6: |
12659 | 12501 | dependencies: |
12660 | 12502 | minimist: 1.2.8 |
12661 | 12503 | |
12662 | 12504 | mkdirp@1.0.4: {} |
12663 | 12505 | |
12664 | - mkdirp@3.0.1: {} | |
12665 | - | |
12666 | 12506 | mlly@1.6.1: |
12667 | 12507 | dependencies: |
12668 | 12508 | acorn: 8.14.0 |
... | ... | @@ -12705,9 +12545,9 @@ snapshots: |
12705 | 12545 | |
12706 | 12546 | natural-compare@1.4.0: {} |
12707 | 12547 | |
12708 | - ndepe@0.1.4: | |
12548 | + ndepe@0.1.8: | |
12709 | 12549 | dependencies: |
12710 | - '@vercel/nft': 0.27.10 | |
12550 | + '@vercel/nft': 0.27.3 | |
12711 | 12551 | debug: 4.4.0(supports-color@5.5.0) |
12712 | 12552 | fs-extra: 11.2.0 |
12713 | 12553 | mlly: 1.6.1 |
... | ... | @@ -12716,7 +12556,6 @@ snapshots: |
12716 | 12556 | semver: 7.6.3 |
12717 | 12557 | transitivePeerDependencies: |
12718 | 12558 | - encoding |
12719 | - - rollup | |
12720 | 12559 | - supports-color |
12721 | 12560 | |
12722 | 12561 | negotiator@0.6.3: {} |
... | ... | @@ -12740,10 +12579,6 @@ snapshots: |
12740 | 12579 | dependencies: |
12741 | 12580 | abbrev: 1.1.1 |
12742 | 12581 | |
12743 | - nopt@8.0.0: | |
12744 | - dependencies: | |
12745 | - abbrev: 2.0.0 | |
12746 | - | |
12747 | 12582 | normalize-package-data@2.5.0: |
12748 | 12583 | dependencies: |
12749 | 12584 | hosted-git-info: 2.8.9 |
... | ... | @@ -12816,12 +12651,6 @@ snapshots: |
12816 | 12651 | es-abstract: 1.23.7 |
12817 | 12652 | es-object-atoms: 1.0.0 |
12818 | 12653 | |
12819 | - object.groupby@1.0.3: | |
12820 | - dependencies: | |
12821 | - call-bind: 1.0.8 | |
12822 | - define-properties: 1.2.1 | |
12823 | - es-abstract: 1.23.7 | |
12824 | - | |
12825 | 12654 | object.values@1.2.1: |
12826 | 12655 | dependencies: |
12827 | 12656 | call-bind: 1.0.8 |
... | ... | @@ -12989,8 +12818,6 @@ snapshots: |
12989 | 12818 | |
12990 | 12819 | picomatch@2.3.1: {} |
12991 | 12820 | |
12992 | - picomatch@4.0.2: {} | |
12993 | - | |
12994 | 12821 | picturefill@3.0.3: {} |
12995 | 12822 | |
12996 | 12823 | pidtree@0.6.0: {} |
... | ... | @@ -13035,7 +12862,7 @@ snapshots: |
13035 | 12862 | |
13036 | 12863 | postcss-colormin@6.1.0(postcss@8.4.49): |
13037 | 12864 | dependencies: |
13038 | - browserslist: 4.24.3 | |
12865 | + browserslist: 4.24.4 | |
13039 | 12866 | caniuse-api: 3.0.0 |
13040 | 12867 | colord: 2.9.3 |
13041 | 12868 | postcss: 8.4.49 |
... | ... | @@ -13043,7 +12870,7 @@ snapshots: |
13043 | 12870 | |
13044 | 12871 | postcss-convert-values@6.1.0(postcss@8.4.49): |
13045 | 12872 | dependencies: |
13046 | - browserslist: 4.24.3 | |
12873 | + browserslist: 4.24.4 | |
13047 | 12874 | postcss: 8.4.49 |
13048 | 12875 | postcss-value-parser: 4.2.0 |
13049 | 12876 | |
... | ... | @@ -13122,7 +12949,7 @@ snapshots: |
13122 | 12949 | |
13123 | 12950 | postcss-merge-rules@6.1.1(postcss@8.4.49): |
13124 | 12951 | dependencies: |
13125 | - browserslist: 4.24.3 | |
12952 | + browserslist: 4.24.4 | |
13126 | 12953 | caniuse-api: 3.0.0 |
13127 | 12954 | cssnano-utils: 4.0.2(postcss@8.4.49) |
13128 | 12955 | postcss: 8.4.49 |
... | ... | @@ -13142,7 +12969,7 @@ snapshots: |
13142 | 12969 | |
13143 | 12970 | postcss-minify-params@6.1.0(postcss@8.4.49): |
13144 | 12971 | dependencies: |
13145 | - browserslist: 4.24.3 | |
12972 | + browserslist: 4.24.4 | |
13146 | 12973 | cssnano-utils: 4.0.2(postcss@8.4.49) |
13147 | 12974 | postcss: 8.4.49 |
13148 | 12975 | postcss-value-parser: 4.2.0 |
... | ... | @@ -13195,7 +13022,7 @@ snapshots: |
13195 | 13022 | |
13196 | 13023 | postcss-normalize-unicode@6.1.0(postcss@8.4.49): |
13197 | 13024 | dependencies: |
13198 | - browserslist: 4.24.3 | |
13025 | + browserslist: 4.24.4 | |
13199 | 13026 | postcss: 8.4.49 |
13200 | 13027 | postcss-value-parser: 4.2.0 |
13201 | 13028 | |
... | ... | @@ -13221,7 +13048,7 @@ snapshots: |
13221 | 13048 | |
13222 | 13049 | postcss-reduce-initial@6.1.0(postcss@8.4.49): |
13223 | 13050 | dependencies: |
13224 | - browserslist: 4.24.3 | |
13051 | + browserslist: 4.24.4 | |
13225 | 13052 | caniuse-api: 3.0.0 |
13226 | 13053 | postcss: 8.4.49 |
13227 | 13054 | |
... | ... | @@ -13271,11 +13098,13 @@ snapshots: |
13271 | 13098 | picocolors: 1.1.1 |
13272 | 13099 | source-map-js: 1.2.1 |
13273 | 13100 | |
13274 | - prelude-ls@1.2.1: {} | |
13275 | - | |
13276 | - prettier-linter-helpers@1.0.0: | |
13101 | + postcss@8.5.3: | |
13277 | 13102 | dependencies: |
13278 | - fast-diff: 1.3.0 | |
13103 | + nanoid: 3.3.8 | |
13104 | + picocolors: 1.1.1 | |
13105 | + source-map-js: 1.2.1 | |
13106 | + | |
13107 | + prelude-ls@1.2.1: {} | |
13279 | 13108 | |
13280 | 13109 | prettier-plugin-organize-imports@3.2.4(prettier@3.4.2)(typescript@5.7.2): |
13281 | 13110 | dependencies: |
... | ... | @@ -13289,8 +13118,6 @@ snapshots: |
13289 | 13118 | postcss-sorting: 6.0.0(postcss@8.4.49) |
13290 | 13119 | prettier: 3.4.2 |
13291 | 13120 | |
13292 | - prettier@2.8.8: {} | |
13293 | - | |
13294 | 13121 | prettier@3.4.2: {} |
13295 | 13122 | |
13296 | 13123 | pretty-error@4.0.0: |
... | ... | @@ -13807,7 +13634,7 @@ snapshots: |
13807 | 13634 | |
13808 | 13635 | react-refresh@0.14.2: {} |
13809 | 13636 | |
13810 | - react-refresh@0.16.0: {} | |
13637 | + react-refresh@0.17.0: {} | |
13811 | 13638 | |
13812 | 13639 | react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): |
13813 | 13640 | dependencies: |
... | ... | @@ -13903,14 +13730,6 @@ snapshots: |
13903 | 13730 | |
13904 | 13731 | reduce-configs@1.1.0: {} |
13905 | 13732 | |
13906 | - redux-promise-middleware@6.2.0(redux@4.2.1): | |
13907 | - dependencies: | |
13908 | - redux: 4.2.1 | |
13909 | - | |
13910 | - redux@4.2.1: | |
13911 | - dependencies: | |
13912 | - '@babel/runtime': 7.26.0 | |
13913 | - | |
13914 | 13733 | reflect.getprototypeof@1.0.9: |
13915 | 13734 | dependencies: |
13916 | 13735 | call-bind: 1.0.8 |
... | ... | @@ -13943,8 +13762,6 @@ snapshots: |
13943 | 13762 | es-errors: 1.3.0 |
13944 | 13763 | set-function-name: 2.0.2 |
13945 | 13764 | |
13946 | - regexpp@3.2.0: {} | |
13947 | - | |
13948 | 13765 | regexpu-core@6.2.0: |
13949 | 13766 | dependencies: |
13950 | 13767 | regenerate: 1.4.2 |
... | ... | @@ -14020,13 +13837,15 @@ snapshots: |
14020 | 13837 | hash-base: 3.0.5 |
14021 | 13838 | inherits: 2.0.4 |
14022 | 13839 | |
13840 | + rsc-html-stream@0.0.5: {} | |
13841 | + | |
14023 | 13842 | rslog@1.2.3: {} |
14024 | 13843 | |
14025 | - rspack-manifest-plugin@5.0.2(@rspack/core@1.1.8(@swc/helpers@0.5.15)): | |
13844 | + rspack-manifest-plugin@5.0.3(@rspack/core@1.3.5(@swc/helpers@0.5.13)): | |
14026 | 13845 | dependencies: |
14027 | 13846 | '@rspack/lite-tapable': 1.0.1 |
14028 | 13847 | optionalDependencies: |
14029 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
13848 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.13) | |
14030 | 13849 | |
14031 | 13850 | run-parallel@1.2.0: |
14032 | 13851 | dependencies: |
... | ... | @@ -14062,67 +13881,67 @@ snapshots: |
14062 | 13881 | |
14063 | 13882 | safer-buffer@2.1.2: {} |
14064 | 13883 | |
14065 | - sass-embedded-android-arm64@1.83.0: | |
13884 | + sass-embedded-android-arm64@1.86.3: | |
14066 | 13885 | optional: true |
14067 | 13886 | |
14068 | - sass-embedded-android-arm@1.83.0: | |
13887 | + sass-embedded-android-arm@1.86.3: | |
14069 | 13888 | optional: true |
14070 | 13889 | |
14071 | - sass-embedded-android-ia32@1.83.0: | |
13890 | + sass-embedded-android-ia32@1.86.3: | |
14072 | 13891 | optional: true |
14073 | 13892 | |
14074 | - sass-embedded-android-riscv64@1.83.0: | |
13893 | + sass-embedded-android-riscv64@1.86.3: | |
14075 | 13894 | optional: true |
14076 | 13895 | |
14077 | - sass-embedded-android-x64@1.83.0: | |
13896 | + sass-embedded-android-x64@1.86.3: | |
14078 | 13897 | optional: true |
14079 | 13898 | |
14080 | - sass-embedded-darwin-arm64@1.83.0: | |
13899 | + sass-embedded-darwin-arm64@1.86.3: | |
14081 | 13900 | optional: true |
14082 | 13901 | |
14083 | - sass-embedded-darwin-x64@1.83.0: | |
13902 | + sass-embedded-darwin-x64@1.86.3: | |
14084 | 13903 | optional: true |
14085 | 13904 | |
14086 | - sass-embedded-linux-arm64@1.83.0: | |
13905 | + sass-embedded-linux-arm64@1.86.3: | |
14087 | 13906 | optional: true |
14088 | 13907 | |
14089 | - sass-embedded-linux-arm@1.83.0: | |
13908 | + sass-embedded-linux-arm@1.86.3: | |
14090 | 13909 | optional: true |
14091 | 13910 | |
14092 | - sass-embedded-linux-ia32@1.83.0: | |
13911 | + sass-embedded-linux-ia32@1.86.3: | |
14093 | 13912 | optional: true |
14094 | 13913 | |
14095 | - sass-embedded-linux-musl-arm64@1.83.0: | |
13914 | + sass-embedded-linux-musl-arm64@1.86.3: | |
14096 | 13915 | optional: true |
14097 | 13916 | |
14098 | - sass-embedded-linux-musl-arm@1.83.0: | |
13917 | + sass-embedded-linux-musl-arm@1.86.3: | |
14099 | 13918 | optional: true |
14100 | 13919 | |
14101 | - sass-embedded-linux-musl-ia32@1.83.0: | |
13920 | + sass-embedded-linux-musl-ia32@1.86.3: | |
14102 | 13921 | optional: true |
14103 | 13922 | |
14104 | - sass-embedded-linux-musl-riscv64@1.83.0: | |
13923 | + sass-embedded-linux-musl-riscv64@1.86.3: | |
14105 | 13924 | optional: true |
14106 | 13925 | |
14107 | - sass-embedded-linux-musl-x64@1.83.0: | |
13926 | + sass-embedded-linux-musl-x64@1.86.3: | |
14108 | 13927 | optional: true |
14109 | 13928 | |
14110 | - sass-embedded-linux-riscv64@1.83.0: | |
13929 | + sass-embedded-linux-riscv64@1.86.3: | |
14111 | 13930 | optional: true |
14112 | 13931 | |
14113 | - sass-embedded-linux-x64@1.83.0: | |
13932 | + sass-embedded-linux-x64@1.86.3: | |
14114 | 13933 | optional: true |
14115 | 13934 | |
14116 | - sass-embedded-win32-arm64@1.83.0: | |
13935 | + sass-embedded-win32-arm64@1.86.3: | |
14117 | 13936 | optional: true |
14118 | 13937 | |
14119 | - sass-embedded-win32-ia32@1.83.0: | |
13938 | + sass-embedded-win32-ia32@1.86.3: | |
14120 | 13939 | optional: true |
14121 | 13940 | |
14122 | - sass-embedded-win32-x64@1.83.0: | |
13941 | + sass-embedded-win32-x64@1.86.3: | |
14123 | 13942 | optional: true |
14124 | 13943 | |
14125 | - sass-embedded@1.83.0: | |
13944 | + sass-embedded@1.86.3: | |
14126 | 13945 | dependencies: |
14127 | 13946 | '@bufbuild/protobuf': 2.2.3 |
14128 | 13947 | buffer-builder: 0.2.0 |
... | ... | @@ -14133,37 +13952,31 @@ snapshots: |
14133 | 13952 | sync-child-process: 1.0.2 |
14134 | 13953 | varint: 6.0.0 |
14135 | 13954 | optionalDependencies: |
14136 | - sass-embedded-android-arm: 1.83.0 | |
14137 | - sass-embedded-android-arm64: 1.83.0 | |
14138 | - sass-embedded-android-ia32: 1.83.0 | |
14139 | - sass-embedded-android-riscv64: 1.83.0 | |
14140 | - sass-embedded-android-x64: 1.83.0 | |
14141 | - sass-embedded-darwin-arm64: 1.83.0 | |
14142 | - sass-embedded-darwin-x64: 1.83.0 | |
14143 | - sass-embedded-linux-arm: 1.83.0 | |
14144 | - sass-embedded-linux-arm64: 1.83.0 | |
14145 | - sass-embedded-linux-ia32: 1.83.0 | |
14146 | - sass-embedded-linux-musl-arm: 1.83.0 | |
14147 | - sass-embedded-linux-musl-arm64: 1.83.0 | |
14148 | - sass-embedded-linux-musl-ia32: 1.83.0 | |
14149 | - sass-embedded-linux-musl-riscv64: 1.83.0 | |
14150 | - sass-embedded-linux-musl-x64: 1.83.0 | |
14151 | - sass-embedded-linux-riscv64: 1.83.0 | |
14152 | - sass-embedded-linux-x64: 1.83.0 | |
14153 | - sass-embedded-win32-arm64: 1.83.0 | |
14154 | - sass-embedded-win32-ia32: 1.83.0 | |
14155 | - sass-embedded-win32-x64: 1.83.0 | |
13955 | + sass-embedded-android-arm: 1.86.3 | |
13956 | + sass-embedded-android-arm64: 1.86.3 | |
13957 | + sass-embedded-android-ia32: 1.86.3 | |
13958 | + sass-embedded-android-riscv64: 1.86.3 | |
13959 | + sass-embedded-android-x64: 1.86.3 | |
13960 | + sass-embedded-darwin-arm64: 1.86.3 | |
13961 | + sass-embedded-darwin-x64: 1.86.3 | |
13962 | + sass-embedded-linux-arm: 1.86.3 | |
13963 | + sass-embedded-linux-arm64: 1.86.3 | |
13964 | + sass-embedded-linux-ia32: 1.86.3 | |
13965 | + sass-embedded-linux-musl-arm: 1.86.3 | |
13966 | + sass-embedded-linux-musl-arm64: 1.86.3 | |
13967 | + sass-embedded-linux-musl-ia32: 1.86.3 | |
13968 | + sass-embedded-linux-musl-riscv64: 1.86.3 | |
13969 | + sass-embedded-linux-musl-x64: 1.86.3 | |
13970 | + sass-embedded-linux-riscv64: 1.86.3 | |
13971 | + sass-embedded-linux-x64: 1.86.3 | |
13972 | + sass-embedded-win32-arm64: 1.86.3 | |
13973 | + sass-embedded-win32-ia32: 1.86.3 | |
13974 | + sass-embedded-win32-x64: 1.86.3 | |
14156 | 13975 | |
14157 | 13976 | scheduler@0.23.2: |
14158 | 13977 | dependencies: |
14159 | 13978 | loose-envify: 1.4.0 |
14160 | 13979 | |
14161 | - schema-utils@3.3.0: | |
14162 | - dependencies: | |
14163 | - '@types/json-schema': 7.0.15 | |
14164 | - ajv: 6.12.6 | |
14165 | - ajv-keywords: 3.5.2(ajv@6.12.6) | |
14166 | - | |
14167 | 13980 | schema-utils@4.3.0: |
14168 | 13981 | dependencies: |
14169 | 13982 | '@types/json-schema': 7.0.15 |
... | ... | @@ -14540,7 +14353,7 @@ snapshots: |
14540 | 14353 | |
14541 | 14354 | stylehacks@6.1.1(postcss@8.4.49): |
14542 | 14355 | dependencies: |
14543 | - browserslist: 4.24.3 | |
14356 | + browserslist: 4.24.4 | |
14544 | 14357 | postcss: 8.4.49 |
14545 | 14358 | postcss-selector-parser: 6.1.2 |
14546 | 14359 | |
... | ... | @@ -14724,24 +14537,28 @@ snapshots: |
14724 | 14537 | mkdirp: 1.0.4 |
14725 | 14538 | yallist: 4.0.0 |
14726 | 14539 | |
14727 | - tar@7.4.3: | |
14540 | + terser-webpack-plugin@5.3.11(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
14728 | 14541 | dependencies: |
14729 | - '@isaacs/fs-minipass': 4.0.1 | |
14730 | - chownr: 3.0.0 | |
14731 | - minipass: 7.1.2 | |
14732 | - minizlib: 3.0.1 | |
14733 | - mkdirp: 3.0.1 | |
14734 | - yallist: 5.0.0 | |
14542 | + '@jridgewell/trace-mapping': 0.3.25 | |
14543 | + jest-worker: 27.5.1 | |
14544 | + schema-utils: 4.3.0 | |
14545 | + serialize-javascript: 6.0.2 | |
14546 | + terser: 5.37.0 | |
14547 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
14548 | + optionalDependencies: | |
14549 | + '@swc/core': 1.10.18(@swc/helpers@0.5.13) | |
14550 | + esbuild: 0.17.19 | |
14735 | 14551 | |
14736 | - terser-webpack-plugin@5.3.11(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)): | |
14552 | + terser-webpack-plugin@5.3.14(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
14737 | 14553 | dependencies: |
14738 | 14554 | '@jridgewell/trace-mapping': 0.3.25 |
14739 | 14555 | jest-worker: 27.5.1 |
14740 | 14556 | schema-utils: 4.3.0 |
14741 | 14557 | serialize-javascript: 6.0.2 |
14742 | 14558 | terser: 5.37.0 |
14743 | - webpack: 5.97.1(esbuild@0.17.19) | |
14559 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
14744 | 14560 | optionalDependencies: |
14561 | + '@swc/core': 1.10.18(@swc/helpers@0.5.13) | |
14745 | 14562 | esbuild: 0.17.19 |
14746 | 14563 | |
14747 | 14564 | terser@5.37.0: |
... | ... | @@ -14795,7 +14612,7 @@ snapshots: |
14795 | 14612 | |
14796 | 14613 | trim-newlines@4.1.1: {} |
14797 | 14614 | |
14798 | - ts-checker-rspack-plugin@1.1.0(@rspack/core@1.1.8(@swc/helpers@0.5.15))(typescript@5.7.2): | |
14615 | + ts-checker-rspack-plugin@1.1.1(@rspack/core@1.3.5(@swc/helpers@0.5.13))(typescript@5.7.2): | |
14799 | 14616 | dependencies: |
14800 | 14617 | '@babel/code-frame': 7.26.2 |
14801 | 14618 | '@rspack/lite-tapable': 1.0.1 |
... | ... | @@ -14805,20 +14622,20 @@ snapshots: |
14805 | 14622 | picocolors: 1.1.1 |
14806 | 14623 | typescript: 5.7.2 |
14807 | 14624 | optionalDependencies: |
14808 | - '@rspack/core': 1.1.8(@swc/helpers@0.5.15) | |
14625 | + '@rspack/core': 1.3.5(@swc/helpers@0.5.13) | |
14809 | 14626 | |
14810 | 14627 | ts-deepmerge@7.0.2: {} |
14811 | 14628 | |
14812 | 14629 | ts-interface-checker@0.1.13: {} |
14813 | 14630 | |
14814 | - ts-loader@9.4.4(typescript@5.7.2)(webpack@5.97.1(esbuild@0.17.19)): | |
14631 | + ts-loader@9.4.4(typescript@5.7.2)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
14815 | 14632 | dependencies: |
14816 | 14633 | chalk: 4.1.2 |
14817 | 14634 | enhanced-resolve: 5.18.0 |
14818 | 14635 | micromatch: 4.0.8 |
14819 | 14636 | semver: 7.6.3 |
14820 | 14637 | typescript: 5.7.2 |
14821 | - webpack: 5.97.1(esbuild@0.17.19) | |
14638 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
14822 | 14639 | |
14823 | 14640 | tsconfig-paths-webpack-plugin@4.2.0: |
14824 | 14641 | dependencies: |
... | ... | @@ -14827,13 +14644,6 @@ snapshots: |
14827 | 14644 | tapable: 2.2.1 |
14828 | 14645 | tsconfig-paths: 4.2.0 |
14829 | 14646 | |
14830 | - tsconfig-paths@3.15.0: | |
14831 | - dependencies: | |
14832 | - '@types/json5': 0.0.29 | |
14833 | - json5: 1.0.2 | |
14834 | - minimist: 1.2.8 | |
14835 | - strip-bom: 3.0.0 | |
14836 | - | |
14837 | 14647 | tsconfig-paths@4.2.0: |
14838 | 14648 | dependencies: |
14839 | 14649 | json5: 2.2.3 |
... | ... | @@ -14957,6 +14767,12 @@ snapshots: |
14957 | 14767 | escalade: 3.2.0 |
14958 | 14768 | picocolors: 1.1.1 |
14959 | 14769 | |
14770 | + update-browserslist-db@1.1.1(browserslist@4.24.4): | |
14771 | + dependencies: | |
14772 | + browserslist: 4.24.4 | |
14773 | + escalade: 3.2.0 | |
14774 | + picocolors: 1.1.1 | |
14775 | + | |
14960 | 14776 | uri-js@4.4.1: |
14961 | 14777 | dependencies: |
14962 | 14778 | punycode: 2.3.1 |
... | ... | @@ -15041,14 +14857,14 @@ snapshots: |
15041 | 14857 | |
15042 | 14858 | webpack-sources@3.2.3: {} |
15043 | 14859 | |
15044 | - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)))(webpack@5.97.1(esbuild@0.17.19)): | |
14860 | + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)): | |
15045 | 14861 | dependencies: |
15046 | 14862 | typed-assert: 1.0.9 |
15047 | - webpack: 5.97.1(esbuild@0.17.19) | |
14863 | + webpack: 5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) | |
15048 | 14864 | optionalDependencies: |
15049 | - html-webpack-plugin: 5.6.3(@rspack/core@1.1.8(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.17.19)) | |
14865 | + html-webpack-plugin: 5.6.3(@rspack/core@1.3.5(@swc/helpers@0.5.13))(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
15050 | 14866 | |
15051 | - webpack@5.97.1(esbuild@0.17.19): | |
14867 | + webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19): | |
15052 | 14868 | dependencies: |
15053 | 14869 | '@types/eslint-scope': 3.7.7 |
15054 | 14870 | '@types/estree': 1.0.6 |
... | ... | @@ -15068,9 +14884,9 @@ snapshots: |
15068 | 14884 | loader-runner: 4.3.0 |
15069 | 14885 | mime-types: 2.1.35 |
15070 | 14886 | neo-async: 2.6.2 |
15071 | - schema-utils: 3.3.0 | |
14887 | + schema-utils: 4.3.0 | |
15072 | 14888 | tapable: 2.2.1 |
15073 | - terser-webpack-plugin: 5.3.11(esbuild@0.17.19)(webpack@5.97.1(esbuild@0.17.19)) | |
14889 | + terser-webpack-plugin: 5.3.11(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)(webpack@5.99.5(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)) | |
15074 | 14890 | watchpack: 2.4.2 |
15075 | 14891 | webpack-sources: 3.2.3 |
15076 | 14892 | transitivePeerDependencies: |
... | ... | @@ -15191,8 +15007,6 @@ snapshots: |
15191 | 15007 | |
15192 | 15008 | yallist@4.0.0: {} |
15193 | 15009 | |
15194 | - yallist@5.0.0: {} | |
15195 | - | |
15196 | 15010 | yaml@1.10.2: {} |
15197 | 15011 | |
15198 | 15012 | yaml@2.6.1: {} | ... | ... |