diff --git a/.changeset/mighty-seas-jump.md b/.changeset/mighty-seas-jump.md new file mode 100644 index 00000000000..4a59601e786 --- /dev/null +++ b/.changeset/mighty-seas-jump.md @@ -0,0 +1,5 @@ +--- +'@module-federation/nextjs-mf': patch +--- + +add next 15 to peer deps diff --git a/apps/3000-home/package.json b/apps/3000-home/package.json index dc0c0b7c506..d8d0a131c1d 100644 --- a/apps/3000-home/package.json +++ b/apps/3000-home/package.json @@ -3,16 +3,16 @@ "version": "1.0.0", "private": true, "dependencies": { - "antd": "5.19.1", "@ant-design/cssinjs": "^1.21.0", + "antd": "5.19.1", "lodash": "4.17.21", - "next": "14.2.15", + "next": "14.2.0", "react": "18.3.1" }, "devDependencies": { "@module-federation/nextjs-mf": "workspace:*", - "@module-federation/utilities": "workspace:*", - "@module-federation/runtime": "workspace:*" + "@module-federation/runtime": "workspace:*", + "@module-federation/utilities": "workspace:*" }, "scripts": { "start": "next start", diff --git a/apps/3001-shop/package.json b/apps/3001-shop/package.json index be70c5e5a09..7be6d9ed7a9 100644 --- a/apps/3001-shop/package.json +++ b/apps/3001-shop/package.json @@ -3,16 +3,16 @@ "version": "1.0.0", "private": true, "dependencies": { - "antd": "5.19.1", "@ant-design/cssinjs": "^1.21.0", + "antd": "5.19.1", "lodash": "4.17.21", - "next": "14.2.15", + "next": "14.2.0", "react": "18.3.1" }, "devDependencies": { "@module-federation/nextjs-mf": "workspace:*", - "@module-federation/sdk": "workspace:*", "@module-federation/runtime": "workspace:*", + "@module-federation/sdk": "workspace:*", "@module-federation/utilities": "workspace:*" }, "scripts": { diff --git a/apps/3002-checkout/package.json b/apps/3002-checkout/package.json index 6bf51b15a2e..5a627b87ec3 100644 --- a/apps/3002-checkout/package.json +++ b/apps/3002-checkout/package.json @@ -3,10 +3,10 @@ "version": "1.0.0", "private": true, "dependencies": { - "antd": "5.19.1", "@ant-design/cssinjs": "^1.21.0", + "antd": "5.19.1", "lodash": "4.17.21", - "next": "14.2.15", + "next": "14.2.0", "react": "18.3.1" }, "devDependencies": { diff --git a/apps/website-new/docs/en/guide/framework/nextjs.mdx b/apps/website-new/docs/en/guide/framework/nextjs.mdx index 1f40bddb089..323fef5c81e 100644 --- a/apps/website-new/docs/en/guide/framework/nextjs.mdx +++ b/apps/website-new/docs/en/guide/framework/nextjs.mdx @@ -8,7 +8,7 @@ This plugin enables Module Federation on Next.js ## Supports -- next ^14 || ^13 || ^12 +- next ^15 || ^14 || ^13 || ^12 - Server-Side Rendering - Pages router @@ -21,7 +21,7 @@ I set `process.env.NEXT_PRIVATE_LOCAL_WEBPACK = 'true'` inside this plugin, but "Local Webpack" means you must have webpack installed as a dependency, and next will not use its bundled copy of webpack which cannot be used as i need access to all of webpack internals -- `NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` or `next build` +- `cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` or `next build` - `npm install webpack` ## Usage diff --git a/apps/website-new/docs/en/practice/frameworks/next/index.mdx b/apps/website-new/docs/en/practice/frameworks/next/index.mdx index 4fade56cd77..ea224cf3b7d 100644 --- a/apps/website-new/docs/en/practice/frameworks/next/index.mdx +++ b/apps/website-new/docs/en/practice/frameworks/next/index.mdx @@ -11,9 +11,11 @@ import {Steps, Tabs, Tab, Badge, SourceCode} from '@theme'; + + # :::tip Demo Reference @@ -157,9 +159,9 @@ export default nextConfig; "Local Webpack" means you must have webpack installed as a dependency, and next will not use its bundled copy of webpack which cannot be used as it does not export all of Webpacks internals ```bash title="shell" -NEXT_PRIVATE_LOCAL_WEBPACK=true next dev +cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next dev # or -NEXT_PRIVATE_LOCAL_WEBPACK=true next build +cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next build ``` `.env` can be set as well, but can be unreliable in setting `NEXT_PRIVATE_LOCAL_WEBPACK` in time. diff --git a/apps/website-new/docs/zh/guide/framework/nextjs.mdx b/apps/website-new/docs/zh/guide/framework/nextjs.mdx index 4a0855e610b..e93578cd842 100644 --- a/apps/website-new/docs/zh/guide/framework/nextjs.mdx +++ b/apps/website-new/docs/zh/guide/framework/nextjs.mdx @@ -109,7 +109,7 @@ export const DEFAULT_SHARE_SCOPE: SharedObject = { "本地 Webpack" 意味着你必须将 webpack 安装为依赖项,并且 next 不会使用其捆绑的 webpack 副本,因为需要访问所有 webpack 内部 -- 使用 `NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` 或 `next build` +- 使用 `cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` 或 `next build` - `npm install webpack` ## 使用方法 diff --git a/apps/website-new/docs/zh/practice/frameworks/next/index.mdx b/apps/website-new/docs/zh/practice/frameworks/next/index.mdx index 92ab8644219..4bb55f2e48e 100644 --- a/apps/website-new/docs/zh/practice/frameworks/next/index.mdx +++ b/apps/website-new/docs/zh/practice/frameworks/next/index.mdx @@ -157,9 +157,9 @@ export default nextConfig; “本地 Webpack”意味着你必须将 webpack 作为依赖项安装,接下来将不会使用其捆绑的 webpack 副本,该副本无法使用,因为它不会导出所有 Webpack 内部结构 ```bash title="shell" -NEXT_PRIVATE_LOCAL_WEBPACK=true next dev +cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next dev # or -NEXT_PRIVATE_LOCAL_WEBPACK=true next build +cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next build ``` `.env` 也可以设置,但及时设置 `NEXT_PRIVATE_LOCAL_WEBPACK` 可能不可靠。 diff --git a/package.json b/package.json index 0f7cb5c30ab..e55c0e3d600 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "glob": "^11.0.0", "kill-port": "^2.0.1", "lodash.get": "4.4.2", - "next": "14.2.15", + "next": "14.2.0", "openai": "^4.63.0", "rambda": "7.5.0", "react": "18.3.1", @@ -101,11 +101,11 @@ "@nx/cypress": "20.0.0", "@nx/devkit": "20.0.0", "@nx/esbuild": "20.0.0", + "@nx/eslint": "20.0.0", "@nx/eslint-plugin": "20.0.0", "@nx/express": "20.0.0", "@nx/jest": "20.0.0", "@nx/js": "20.0.3", - "@nx/eslint": "20.0.0", "@nx/next": "20.0.0", "@nx/node": "20.0.0", "@nx/react": "20.0.0", diff --git a/packages/nextjs-mf/README.md b/packages/nextjs-mf/README.md index 6fa687fccb1..2191eadab42 100644 --- a/packages/nextjs-mf/README.md +++ b/packages/nextjs-mf/README.md @@ -133,7 +133,7 @@ I set `process.env.NEXT_PRIVATE_LOCAL_WEBPACK = 'true'` inside this plugin, but "Local Webpack" means you must have webpack installed as a dependency, and next will not use its bundled copy of webpack which cannot be used as i need access to all of webpack internals -- `NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` or `next build` +- `cross-env NEXT_PRIVATE_LOCAL_WEBPACK=true next dev` or `next build` - `npm install webpack` ## Usage diff --git a/packages/nextjs-mf/package.json b/packages/nextjs-mf/package.json index 4fb76f050e8..8d8e11c7f36 100644 --- a/packages/nextjs-mf/package.json +++ b/packages/nextjs-mf/package.json @@ -43,9 +43,9 @@ }, "peerDependencies": { "webpack": "^5.40.0", - "next": "^12 || ^13 || ^14", - "react": "^17 || ^18", - "react-dom": "^17 || ^18", + "next": "^12 || ^13 || ^14 || ^15", + "react": "^17 || ^18 || ^19", + "react-dom": "^17 || ^18 || ^19", "styled-jsx": "*" }, "peerDependenciesMeta": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 146e26c1e34..076dc74db57 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,8 +45,8 @@ importers: specifier: 4.4.2 version: 4.4.2 next: - specifier: 14.2.15 - version: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + specifier: 14.2.0 + version: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) openai: specifier: ^4.63.0 version: 4.67.0(encoding@0.1.13) @@ -161,7 +161,7 @@ importers: version: 20.0.3(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(nx@20.0.0)(typescript@5.5.2)(verdaccio@5.29.2) '@nx/next': specifier: 20.0.0 - version: 20.0.0(@babel/core@7.25.2)(@rspack/core@1.0.8)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(esbuild@0.24.0)(eslint@8.57.1)(html-webpack-plugin@5.6.2)(next@14.2.15)(nx@20.0.0)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(verdaccio@5.29.2)(vue-tsc@2.1.6)(webpack@5.93.0) + version: 20.0.0(@babel/core@7.25.2)(@rspack/core@1.0.8)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(esbuild@0.24.0)(eslint@8.57.1)(html-webpack-plugin@5.6.2)(next@14.2.0)(nx@20.0.0)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(verdaccio@5.29.2)(vue-tsc@2.1.6)(webpack@5.93.0) '@nx/node': specifier: 20.0.0 version: 20.0.0(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(eslint@8.57.1)(nx@20.0.0)(typescript@5.5.2)(verdaccio@5.29.2) @@ -173,7 +173,7 @@ importers: version: 20.0.0(@babel/core@7.25.2)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(nx@20.0.0)(typescript@5.5.2)(verdaccio@5.29.2) '@nx/rspack': specifier: 20.0.0 - version: 20.0.0(@module-federation/enhanced@packages+enhanced)(@module-federation/node@packages+node)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@swc/helpers@0.5.13)(@types/node@18.16.9)(eslint@8.57.1)(less@4.2.0)(nx@20.0.0)(postcss@8.4.47)(react-refresh@0.14.2)(stylus@0.63.0)(typescript@5.5.2)(verdaccio@5.29.2)(webpack@5.93.0) + version: 20.0.0(@module-federation/enhanced@packages+enhanced)(@module-federation/node@packages+node)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@swc/helpers@0.5.13)(@types/node@18.16.9)(eslint@8.57.1)(less@4.2.0)(nx@20.0.0)(postcss@8.4.47)(react-refresh@0.14.2)(stylus@0.64.0)(typescript@5.5.2)(verdaccio@5.29.2)(webpack@5.93.0) '@nx/storybook': specifier: 20.0.0 version: 20.0.0(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(cypress@13.15.0)(eslint@8.57.1)(nx@20.0.0)(typescript@5.5.2)(verdaccio@5.29.2) @@ -203,19 +203,19 @@ importers: version: 1.0.9(@rspack/core@1.0.8)(@types/express@4.17.21)(webpack@5.93.0) '@semantic-release/changelog': specifier: ^6.0.3 - version: 6.0.3(semantic-release@24.1.2) + version: 6.0.3(semantic-release@24.1.3) '@semantic-release/exec': specifier: ^6.0.3 - version: 6.0.3(semantic-release@24.1.2) + version: 6.0.3(semantic-release@24.1.3) '@semantic-release/git': specifier: ^10.0.1 - version: 10.0.1(semantic-release@24.1.2) + version: 10.0.1(semantic-release@24.1.3) '@semantic-release/github': specifier: ^11.0.0 - version: 11.0.0(semantic-release@24.1.2) + version: 11.0.0(semantic-release@24.1.3) '@semantic-release/npm': specifier: ^11.0.0 - version: 11.0.3(semantic-release@24.1.2) + version: 11.0.3(semantic-release@24.1.3) '@storybook/addon-essentials': specifier: 8.3.5 version: 8.3.5(storybook@8.3.5) @@ -227,7 +227,7 @@ importers: version: 8.3.5(storybook@8.3.5) '@storybook/nextjs': specifier: ^8.3.5 - version: 8.3.5(@rspack/core@1.0.8)(@swc/core@1.7.26)(esbuild@0.24.0)(next@14.2.15)(react-dom@18.3.1)(react@18.3.1)(storybook@8.3.5)(typescript@5.5.2)(webpack@5.93.0) + version: 8.3.5(@rspack/core@1.0.8)(@swc/core@1.7.26)(esbuild@0.24.0)(next@14.2.0)(react-dom@18.3.1)(react@18.3.1)(storybook@8.3.5)(typescript@5.5.2)(webpack@5.93.0) '@storybook/node-logger': specifier: 8.1.11 version: 8.1.11 @@ -479,13 +479,13 @@ importers: version: 5.29.2(encoding@0.1.13)(typanion@3.14.0) vite: specifier: 5.2.14 - version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vite-tsconfig-paths: specifier: 4.2.3 version: 4.2.3(typescript@5.5.2)(vite@5.2.14) vitest: specifier: 1.6.0 - version: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + version: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) vitest-fetch-mock: specifier: ^0.2.2 version: 0.2.2(encoding@0.1.13)(vitest@1.6.0) @@ -520,8 +520,8 @@ importers: specifier: 4.17.21 version: 4.17.21 next: - specifier: 14.2.15 - version: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + specifier: 14.2.0 + version: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -548,8 +548,8 @@ importers: specifier: 4.17.21 version: 4.17.21 next: - specifier: 14.2.15 - version: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + specifier: 14.2.0 + version: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -579,8 +579,8 @@ importers: specifier: 4.17.21 version: 4.17.21 next: - specifier: 14.2.15 - version: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + specifier: 14.2.0 + version: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) react: specifier: 18.3.1 version: 18.3.1 @@ -1777,7 +1777,7 @@ importers: version: 5.5.2 vite: specifier: ^5.2.14 - version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vite-plugin-dts: specifier: ^3.9.1 version: 3.9.1(@types/node@18.16.9)(rollup@4.24.0)(typescript@5.5.2)(vite@5.2.14) @@ -1799,7 +1799,7 @@ importers: version: 5.5.2 vite: specifier: ^5.2.14 - version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vite-plugin-dts: specifier: ^3.9.1 version: 3.9.1(@types/node@18.16.9)(rollup@4.24.0)(typescript@5.5.2)(vite@5.2.14) @@ -1820,7 +1820,7 @@ importers: version: 5.5.2 vite: specifier: ^5.2.14 - version: 5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.63.0) + version: 5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.64.0) vite-plugin-dts: specifier: ^3.9.1 version: 3.9.1(@types/node@16.11.68)(rollup@4.24.0)(typescript@5.5.2)(vite@5.2.14) @@ -1845,7 +1845,7 @@ importers: version: 5.5.2 vite: specifier: ^5.2.14 - version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + version: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vite-plugin-dts: specifier: ^3.9.1 version: 3.9.1(@types/node@18.16.9)(rollup@4.24.0)(typescript@5.5.2)(vite@5.2.14) @@ -1948,7 +1948,7 @@ importers: version: 5.0.4 vitest: specifier: 1.2.2 - version: 1.2.2(@types/node@20.12.14)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + version: 1.2.2(@types/node@20.12.14)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) packages/core: dependencies: @@ -2349,13 +2349,13 @@ importers: specifier: ^3.2.11 version: 3.3.2 next: - specifier: ^12 || ^13 || ^14 - version: 14.2.14(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + specifier: ^12 || ^13 || ^14 || ^15 + version: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) react: - specifier: ^17 || ^18 + specifier: ^17 || ^18 || ^19 version: 18.3.1 react-dom: - specifier: ^17 || ^18 + specifier: ^17 || ^18 || ^19 version: 18.3.1(react@18.3.1) styled-jsx: specifier: '*' @@ -3039,10 +3039,10 @@ packages: '@babel/helpers': 7.25.7 '@babel/parser': 7.25.8 '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 convert-source-map: 1.9.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 lodash: 4.17.21 @@ -3065,10 +3065,10 @@ packages: '@babel/helpers': 7.25.6 '@babel/parser': 7.25.7 '@babel/template': 7.25.0 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3087,10 +3087,10 @@ packages: '@babel/helpers': 7.25.7 '@babel/parser': 7.25.8 '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3110,10 +3110,10 @@ packages: '@babel/helpers': 7.25.7 '@babel/parser': 7.25.8 '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3207,7 +3207,7 @@ packages: resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3244,7 +3244,7 @@ packages: '@babel/helper-optimise-call-expression': 7.25.7 '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.2) '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -3262,7 +3262,7 @@ packages: '@babel/helper-optimise-call-expression': 7.25.7 '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -3280,7 +3280,7 @@ packages: '@babel/helper-optimise-call-expression': 7.25.7 '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8) '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -3316,7 +3316,7 @@ packages: '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -3331,7 +3331,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -3341,7 +3341,7 @@ packages: resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3350,11 +3350,20 @@ packages: resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color + /@babel/helper-module-imports@7.25.7: + resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.7 + transitivePeerDependencies: + - supports-color + /@babel/helper-module-imports@7.25.7(supports-color@5.5.0): resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} engines: {node: '>=6.9.0'} @@ -3374,7 +3383,7 @@ packages: '@babel/helper-module-imports': 7.24.7 '@babel/helper-simple-access': 7.24.7 '@babel/helper-validator-identifier': 7.24.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -3385,10 +3394,10 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-simple-access': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3400,10 +3409,10 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-simple-access': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3415,10 +3424,10 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.25.8 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-simple-access': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -3450,7 +3459,7 @@ packages: '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 '@babel/helper-wrap-function': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3464,7 +3473,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-annotate-as-pure': 7.25.7 '@babel/helper-wrap-function': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -3477,7 +3486,7 @@ packages: '@babel/core': 7.25.2 '@babel/helper-member-expression-to-functions': 7.25.7 '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3491,7 +3500,7 @@ packages: '@babel/core': 7.25.7 '@babel/helper-member-expression-to-functions': 7.25.7 '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3505,7 +3514,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-member-expression-to-functions': 7.25.7 '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -3513,7 +3522,7 @@ packages: resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3522,7 +3531,7 @@ packages: resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3531,7 +3540,7 @@ packages: resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3561,7 +3570,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 transitivePeerDependencies: - supports-color @@ -3620,7 +3629,7 @@ packages: dependencies: '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3633,7 +3642,7 @@ packages: dependencies: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -3710,7 +3719,7 @@ packages: dependencies: '@babel/core': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -3723,7 +3732,7 @@ packages: dependencies: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -4503,7 +4512,7 @@ packages: '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.7) - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -4517,7 +4526,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8) - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -4528,7 +4537,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.7) transitivePeerDependencies: @@ -4542,7 +4551,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.25.8 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8) transitivePeerDependencies: @@ -4648,7 +4657,7 @@ packages: '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.7) - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4665,7 +4674,7 @@ packages: '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8) - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4881,7 +4890,7 @@ packages: '@babel/core': 7.25.7 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -4895,7 +4904,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-compilation-targets': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -5039,7 +5048,7 @@ packages: '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.7) '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -5054,7 +5063,7 @@ packages: '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8) '@babel/helper-plugin-utils': 7.25.7 '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -5473,7 +5482,7 @@ packages: dependencies: '@babel/core': 7.25.2 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.2) '@babel/types': 7.25.7 @@ -5489,7 +5498,7 @@ packages: dependencies: '@babel/core': 7.25.7 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.7) '@babel/types': 7.25.7 @@ -5505,7 +5514,7 @@ packages: dependencies: '@babel/core': 7.25.8 '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8) '@babel/types': 7.25.7 @@ -5591,7 +5600,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.7) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.7) @@ -5608,7 +5617,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.25.8 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.8) babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8) @@ -6190,6 +6199,20 @@ packages: '@babel/parser': 7.25.8 '@babel/types': 7.25.8 + /@babel/traverse@7.25.7: + resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.25.7 + '@babel/generator': 7.25.7 + '@babel/parser': 7.25.8 + '@babel/template': 7.25.7 + '@babel/types': 7.25.8 + debug: 4.3.7(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/traverse@7.25.7(supports-color@5.5.0): resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} engines: {node: '>=6.9.0'} @@ -6870,12 +6893,29 @@ packages: dependencies: '@emnapi/wasi-threads': 1.0.1 tslib: 2.6.3 + dev: true + + /@emnapi/core@1.3.1: + resolution: {integrity: sha512-pVGjBIt1Y6gg3EJN8jTcfpP/+uuRksIo055oE/OBkDNcjZqVbfkWCksG1Jp4yZnj3iKWyWX8fdG/j6UDYPbFog==} + requiresBuild: true + dependencies: + '@emnapi/wasi-threads': 1.0.1 + tslib: 2.6.3 + optional: true /@emnapi/runtime@1.3.0: resolution: {integrity: sha512-XMBySMuNZs3DM96xcJmLW4EfGnf+uGmFNjzpehMjuX5PLB5j87ar2Zc4e3PVeZ3I5g3tYtAqskB28manlF69Zw==} requiresBuild: true dependencies: tslib: 2.6.3 + dev: true + + /@emnapi/runtime@1.3.1: + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} + requiresBuild: true + dependencies: + tslib: 2.6.3 + optional: true /@emnapi/wasi-threads@1.0.1: resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==} @@ -6886,7 +6926,7 @@ packages: /@emotion/babel-plugin@11.12.0: resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==} dependencies: - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/runtime': 7.25.7 '@emotion/hash': 0.9.2 '@emotion/memoize': 0.9.0 @@ -8635,7 +8675,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -8711,7 +8751,7 @@ packages: deprecated: Use @eslint/config-array instead dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -8884,7 +8924,7 @@ packages: cpu: [wasm32] requiresBuild: true dependencies: - '@emnapi/runtime': 1.3.0 + '@emnapi/runtime': 1.3.1 optional: true /@img/sharp-win32-ia32@0.33.5: @@ -9651,7 +9691,7 @@ packages: optional: true dependencies: '@babel/parser': 7.25.8 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 '@modern-js/core': 2.60.3 '@modern-js/node-bundle-require': 2.60.3 @@ -9719,7 +9759,7 @@ packages: optional: true dependencies: '@babel/parser': 7.25.8 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 '@modern-js/core': 2.60.3 '@modern-js/node-bundle-require': 2.60.3 @@ -10905,7 +10945,7 @@ packages: resolution: {integrity: sha512-Gt/NIAsbkmwXif9uIPWaEt6nWoMCtYlvwuNNJN7ktD2SOmecaVAGWHn6+IEtkz794SQQHTe1b8Wd72LilaN/zw==} dependencies: '@swc/helpers': 0.5.3 - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001669 lodash: 4.17.21 rslog: 1.2.3 dev: false @@ -10918,50 +10958,50 @@ packages: lodash: 4.17.21 rslog: 1.2.3 - /@module-federation/bridge-react-webpack-plugin@0.6.6: - resolution: {integrity: sha512-NANaSOKem+1t/Fbd1GjXnStJRe7O33ya+FR/yYkTUd1H5hmlzVDNo/lYxYuUl3O/gH9Lnlr2Gf9unyWoIW0wHw==} + /@module-federation/bridge-react-webpack-plugin@0.6.11: + resolution: {integrity: sha512-VUD7g1RIom7KtQaO7bcPd7sCzsO6jeRVwOSx5smFr9K6FpkWeiwWtJmhyuhc0uzstzVdkOk77pqMP0xmrXpV+g==} dependencies: - '@module-federation/sdk': 0.6.6 + '@module-federation/sdk': 0.6.11 '@types/semver': 7.5.8 semver: 7.6.3 dev: true - /@module-federation/bridge-react-webpack-plugin@0.6.9: - resolution: {integrity: sha512-KXTPO0vkrtHEIcthU3TIQEkPxoytcmdyNXRwOojZEVQhqEefykAek48ndFiVTmyOu2LW2EuzP49Le8zY7nESWQ==} + /@module-federation/bridge-react-webpack-plugin@0.6.6: + resolution: {integrity: sha512-NANaSOKem+1t/Fbd1GjXnStJRe7O33ya+FR/yYkTUd1H5hmlzVDNo/lYxYuUl3O/gH9Lnlr2Gf9unyWoIW0wHw==} dependencies: - '@module-federation/sdk': 0.6.9 + '@module-federation/sdk': 0.6.6 '@types/semver': 7.5.8 semver: 7.6.3 dev: true - /@module-federation/data-prefetch@0.6.6(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rakEHrg2pqbOqJ3uWT2p3kgTCOxBQdEIqmew3XBAXTZ0NblZtkXeMHupcW/W6+ccvbPdn/T/PSICx9HHSvfEVg==} + /@module-federation/data-prefetch@0.6.11(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-cNCk1YJJal2RvMKu2S413GVHlEUMYbzzzJbWBzZXwcW3DupOeLGs2ENvl32whAvF1RyOlf6LRYcypqE22LUxBQ==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@module-federation/runtime': 0.6.6 - '@module-federation/sdk': 0.6.6 + '@module-federation/runtime': 0.6.11 + '@module-federation/sdk': 0.6.11 fs-extra: 9.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: true - /@module-federation/data-prefetch@0.6.9(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-rpHxfHNkIiPA441GzXI6TMYjSrUjRWDwxJTvRQopX/P0jK5vKtNwT1UBTNF2DJkbtO1idljfhbrIufEg0OY72w==} + /@module-federation/data-prefetch@0.6.6(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-rakEHrg2pqbOqJ3uWT2p3kgTCOxBQdEIqmew3XBAXTZ0NblZtkXeMHupcW/W6+ccvbPdn/T/PSICx9HHSvfEVg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@module-federation/runtime': 0.6.9 - '@module-federation/sdk': 0.6.9 + '@module-federation/runtime': 0.6.6 + '@module-federation/sdk': 0.6.6 fs-extra: 9.1.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: true - /@module-federation/dts-plugin@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-sNCghGgrpCOOVk2xpzgAGAFeo2ONcv6eAnEfe7Q2gD7R6NrGgOrB5KVhN/uWIzFJG8tqNfSSjam+woTyrrayfg==} + /@module-federation/dts-plugin@0.6.11(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-BRKfLuDuFou/Mg3MlatZN67HSIJ/M4t7mpxeYl93bu7q+87zzD+wUSrY+I+pGz+VEmN/LJ5TujMW4jS3XOP2Pw==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -10969,15 +11009,15 @@ packages: vue-tsc: optional: true dependencies: - '@module-federation/managers': 0.6.6 - '@module-federation/sdk': 0.6.6 - '@module-federation/third-party-dts-extractor': 0.6.6 + '@module-federation/managers': 0.6.11 + '@module-federation/sdk': 0.6.11 + '@module-federation/third-party-dts-extractor': 0.6.11 adm-zip: 0.5.16 ansi-colors: 4.1.3 axios: 1.7.7 chalk: 3.0.0 fs-extra: 9.1.0 - isomorphic-ws: 5.0.0(ws@8.17.1) + isomorphic-ws: 5.0.0(ws@8.18.0) koa: 2.15.3 lodash.clonedeepwith: 4.5.0 log4js: 6.9.1 @@ -10985,7 +11025,7 @@ packages: rambda: 9.3.0 typescript: 5.5.2 vue-tsc: 2.1.6(typescript@5.5.2) - ws: 8.17.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - debug @@ -10993,8 +11033,8 @@ packages: - utf-8-validate dev: true - /@module-federation/dts-plugin@0.6.9(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-uiMjjEFcMlOvRtNu8/tt7sJ5y7WTosTVym0V7lMQjgoeX0QesvZqRhgzw5gQcPcFvbk54RwTUI2rS8OEGScCFw==} + /@module-federation/dts-plugin@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-sNCghGgrpCOOVk2xpzgAGAFeo2ONcv6eAnEfe7Q2gD7R6NrGgOrB5KVhN/uWIzFJG8tqNfSSjam+woTyrrayfg==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -11002,9 +11042,9 @@ packages: vue-tsc: optional: true dependencies: - '@module-federation/managers': 0.6.9 - '@module-federation/sdk': 0.6.9 - '@module-federation/third-party-dts-extractor': 0.6.9 + '@module-federation/managers': 0.6.6 + '@module-federation/sdk': 0.6.6 + '@module-federation/third-party-dts-extractor': 0.6.6 adm-zip: 0.5.16 ansi-colors: 4.1.3 axios: 1.7.7 @@ -11026,8 +11066,8 @@ packages: - utf-8-validate dev: true - /@module-federation/enhanced@0.6.6(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0): - resolution: {integrity: sha512-gGU1tjaksk5Q5X2zpVb/OmlwvKwVVjTXreuFwkK0Z+9QKM9jbu0B/tPSh6sqibPFeu1yM2HOFlOHJhvFs1PmsA==} + /@module-federation/enhanced@0.6.11(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0): + resolution: {integrity: sha512-billwprfdc/ehPFdwCNTdm0685pry0qvlhrT9UEYjqHDMHanXTWNQJJLqf5Tz8OzA2/ex6+y8yMcdeKJs+nXEQ==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -11040,14 +11080,14 @@ packages: webpack: optional: true dependencies: - '@module-federation/bridge-react-webpack-plugin': 0.6.6 - '@module-federation/data-prefetch': 0.6.6(react-dom@18.3.1)(react@18.3.1) - '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.6 - '@module-federation/manifest': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/rspack': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/runtime-tools': 0.6.6 - '@module-federation/sdk': 0.6.6 + '@module-federation/bridge-react-webpack-plugin': 0.6.11 + '@module-federation/data-prefetch': 0.6.11(react-dom@18.3.1)(react@18.3.1) + '@module-federation/dts-plugin': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.11 + '@module-federation/manifest': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/rspack': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/runtime-tools': 0.6.11 + '@module-federation/sdk': 0.6.11 btoa: 1.2.1 typescript: 5.5.2 upath: 2.0.1 @@ -11062,8 +11102,8 @@ packages: - utf-8-validate dev: true - /@module-federation/enhanced@0.6.9(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0): - resolution: {integrity: sha512-4bEGQSE6zJ2FMdBTOrRiVjNNzWhUqzWEJGWbsr0bpLNAl4BVx2ah5MyKTrSYqaW//BRA2qc8rmrIreaIawr3kQ==} + /@module-federation/enhanced@0.6.6(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0): + resolution: {integrity: sha512-gGU1tjaksk5Q5X2zpVb/OmlwvKwVVjTXreuFwkK0Z+9QKM9jbu0B/tPSh6sqibPFeu1yM2HOFlOHJhvFs1PmsA==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -11076,14 +11116,14 @@ packages: webpack: optional: true dependencies: - '@module-federation/bridge-react-webpack-plugin': 0.6.9 - '@module-federation/data-prefetch': 0.6.9(react-dom@18.3.1)(react@18.3.1) - '@module-federation/dts-plugin': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.9 - '@module-federation/manifest': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/rspack': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/runtime-tools': 0.6.9 - '@module-federation/sdk': 0.6.9 + '@module-federation/bridge-react-webpack-plugin': 0.6.6 + '@module-federation/data-prefetch': 0.6.6(react-dom@18.3.1)(react@18.3.1) + '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.6 + '@module-federation/manifest': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/rspack': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/runtime-tools': 0.6.6 + '@module-federation/sdk': 0.6.6 btoa: 1.2.1 typescript: 5.5.2 upath: 2.0.1 @@ -11098,28 +11138,28 @@ packages: - utf-8-validate dev: true - /@module-federation/managers@0.6.6: - resolution: {integrity: sha512-ryj2twbQmo2KhwKn1xYivpaW94l5wfplDU9FwVvW0wc8hC2lJnuGhoiZqXKL7lNaBrZXge3b43Zlgx5OnFfr6A==} + /@module-federation/managers@0.6.11: + resolution: {integrity: sha512-HVw9eFTHCegRlWSmNbHXAnY19XHSj19RHHpjZ1Oo71DaHgjJAPJlg4izifcdWt0w+ObAQLOH1DacjYKMIT4W6Q==} dependencies: - '@module-federation/sdk': 0.6.6 + '@module-federation/sdk': 0.6.11 find-pkg: 2.0.0 fs-extra: 9.1.0 dev: true - /@module-federation/managers@0.6.9: - resolution: {integrity: sha512-q3AOQXcWWpdUZI1gDIi9j/UqcP+FJBYXj/e4pNp3QAteJwS/Ve9UP3y0hW27bIbAWZSSajWsYbf/+YLnktA/kQ==} + /@module-federation/managers@0.6.6: + resolution: {integrity: sha512-ryj2twbQmo2KhwKn1xYivpaW94l5wfplDU9FwVvW0wc8hC2lJnuGhoiZqXKL7lNaBrZXge3b43Zlgx5OnFfr6A==} dependencies: - '@module-federation/sdk': 0.6.9 + '@module-federation/sdk': 0.6.6 find-pkg: 2.0.0 fs-extra: 9.1.0 dev: true - /@module-federation/manifest@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-45ol0fC8RS2d+0iEt5zdp0vctE2CiOfA2kCmOFz79K33occi8sKmyevfSeZGckZy54NiMnLFteIYBsyIa+g7gg==} + /@module-federation/manifest@0.6.11(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-HLtGulXJQUdOAAXhkDhNOnTld1EsnjNr2GEscsKNmP42vEEqEm6A6jL8hdKS/hrDZJmPOps7XcEv426+jMTDpA==} dependencies: - '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.6 - '@module-federation/sdk': 0.6.6 + '@module-federation/dts-plugin': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.11 + '@module-federation/sdk': 0.6.11 chalk: 3.0.0 find-pkg: 2.0.0 transitivePeerDependencies: @@ -11131,12 +11171,12 @@ packages: - vue-tsc dev: true - /@module-federation/manifest@0.6.9(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-JMSPDpHODXOmTyJes8GJ950mbN7tqjQzqgFVUubDOVFOmlC0/MYaRzRPmkApz6d8nUfMbLZYzxNSaBHx8GP0/Q==} + /@module-federation/manifest@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-45ol0fC8RS2d+0iEt5zdp0vctE2CiOfA2kCmOFz79K33occi8sKmyevfSeZGckZy54NiMnLFteIYBsyIa+g7gg==} dependencies: - '@module-federation/dts-plugin': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.9 - '@module-federation/sdk': 0.6.9 + '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.6 + '@module-federation/sdk': 0.6.6 chalk: 3.0.0 find-pkg: 2.0.0 transitivePeerDependencies: @@ -11148,8 +11188,8 @@ packages: - vue-tsc dev: true - /@module-federation/rspack@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-30X6QPrJ/eCcmUL4GQ06Z9bQwURBnJI0607Fw2ufmAbhDA0PJFtg7NFFfXzsdChms1ACVbgvgfBH8SJg8j3wBg==} + /@module-federation/rspack@0.6.11(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-l2AH5J1oDvChc61dOJTPBBiJGD+wwcqRVbbjTYTCtZdxFgY6uBhTj0zOLWaSLlXO5DNkr5PyuPH1HCfGWlDwPA==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -11159,12 +11199,12 @@ packages: vue-tsc: optional: true dependencies: - '@module-federation/bridge-react-webpack-plugin': 0.6.6 - '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.6 - '@module-federation/manifest': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/runtime-tools': 0.6.6 - '@module-federation/sdk': 0.6.6 + '@module-federation/bridge-react-webpack-plugin': 0.6.11 + '@module-federation/dts-plugin': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.11 + '@module-federation/manifest': 0.6.11(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/runtime-tools': 0.6.11 + '@module-federation/sdk': 0.6.11 typescript: 5.5.2 vue-tsc: 2.1.6(typescript@5.5.2) transitivePeerDependencies: @@ -11174,8 +11214,8 @@ packages: - utf-8-validate dev: true - /@module-federation/rspack@0.6.9(typescript@5.5.2)(vue-tsc@2.1.6): - resolution: {integrity: sha512-N5yBqN8ijSRZKd0kbIvpZNil0y8rFa8cREKI1QsW1+EYUKwOUBFwF55tFdTmNCKmpZqSEBtcNjRGZXknsYPQxg==} + /@module-federation/rspack@0.6.6(typescript@5.5.2)(vue-tsc@2.1.6): + resolution: {integrity: sha512-30X6QPrJ/eCcmUL4GQ06Z9bQwURBnJI0607Fw2ufmAbhDA0PJFtg7NFFfXzsdChms1ACVbgvgfBH8SJg8j3wBg==} peerDependencies: typescript: ^4.9.0 || ^5.0.0 vue-tsc: '>=1.0.24' @@ -11185,12 +11225,12 @@ packages: vue-tsc: optional: true dependencies: - '@module-federation/bridge-react-webpack-plugin': 0.6.9 - '@module-federation/dts-plugin': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/managers': 0.6.9 - '@module-federation/manifest': 0.6.9(typescript@5.5.2)(vue-tsc@2.1.6) - '@module-federation/runtime-tools': 0.6.9 - '@module-federation/sdk': 0.6.9 + '@module-federation/bridge-react-webpack-plugin': 0.6.6 + '@module-federation/dts-plugin': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/managers': 0.6.6 + '@module-federation/manifest': 0.6.6(typescript@5.5.2)(vue-tsc@2.1.6) + '@module-federation/runtime-tools': 0.6.6 + '@module-federation/sdk': 0.6.6 typescript: 5.5.2 vue-tsc: 2.1.6(typescript@5.5.2) transitivePeerDependencies: @@ -11219,6 +11259,13 @@ packages: '@module-federation/runtime': 0.5.1 '@module-federation/webpack-bundler-runtime': 0.5.1 + /@module-federation/runtime-tools@0.6.11: + resolution: {integrity: sha512-MGdCLaFfFyW6hTEaPKs8yEvOd9zvpaLADUL7WEaqWQ6XVt9GVATGDwA0muZT4+OFjtGsOgj5h5NGjZgIJxruSA==} + dependencies: + '@module-federation/runtime': 0.6.11 + '@module-federation/webpack-bundler-runtime': 0.6.11 + dev: true + /@module-federation/runtime-tools@0.6.6: resolution: {integrity: sha512-w2qHa41p6rADWMS1yBjpqNhaLZ4R5oRy9OYGPe6ywjh+8oqbiBl1CfQglcgEBIpHktEjV/upsgsnjHSdJBdeZw==} dependencies: @@ -11226,13 +11273,6 @@ packages: '@module-federation/webpack-bundler-runtime': 0.6.6 dev: true - /@module-federation/runtime-tools@0.6.9: - resolution: {integrity: sha512-AhsEBXo8IW1ATMKS1xfJaxBiHu9n5z6WUOAIWdPpWXXBJhTFgOs0K1xAod0xLJY4YH/B5cwEcHRPN3FEs2/0Ww==} - dependencies: - '@module-federation/runtime': 0.6.9 - '@module-federation/webpack-bundler-runtime': 0.6.9 - dev: true - /@module-federation/runtime@0.0.8: resolution: {integrity: sha512-Hi9g10aHxHdQ7CbchSvke07YegYwkf162XPOmixNmJr5Oy4wVa2d9yIVSrsWFhBRbbvM5iJP6GrSuEq6HFO3ug==} dependencies: @@ -11249,16 +11289,16 @@ packages: dependencies: '@module-federation/sdk': 0.5.1 - /@module-federation/runtime@0.6.6: - resolution: {integrity: sha512-QsKHUV2HALRzL6mPCdJEZTDuPReKC8MMXf+/VMCtQPp6JhLEjZIO06bfEZqXMbTbTYlMzntIwu1tGCbtJRZDOQ==} + /@module-federation/runtime@0.6.11: + resolution: {integrity: sha512-UTuavwCybLftAe4VT7cCqj+BVNlZwda/xmqIPAeYX14o7gkYFyA6zkxOQqfNCaDnTMR/KBk6EvE49yA6/ht9UQ==} dependencies: - '@module-federation/sdk': 0.6.6 + '@module-federation/sdk': 0.6.11 dev: true - /@module-federation/runtime@0.6.9: - resolution: {integrity: sha512-G1x+6jyW5sW1X+TtWaKigGhwqiHE8MESvi3ntE9ICxwELAGBonmsqDqnLSrdEy6poBKslvPANPJr0Nn9pvW9lg==} + /@module-federation/runtime@0.6.6: + resolution: {integrity: sha512-QsKHUV2HALRzL6mPCdJEZTDuPReKC8MMXf+/VMCtQPp6JhLEjZIO06bfEZqXMbTbTYlMzntIwu1tGCbtJRZDOQ==} dependencies: - '@module-federation/sdk': 0.6.9 + '@module-federation/sdk': 0.6.6 dev: true /@module-federation/sdk@0.0.8: @@ -11271,24 +11311,24 @@ packages: /@module-federation/sdk@0.5.1: resolution: {integrity: sha512-exvchtjNURJJkpqjQ3/opdbfeT2wPKvrbnGnyRkrwW5o3FH1LaST1tkiNviT6OXTexGaVc2DahbdniQHVtQ7pA==} - /@module-federation/sdk@0.6.6: - resolution: {integrity: sha512-tUv2kPi0FvplcpGi/g4nITAYVAR1RUZ6QvP71T8inmRZSrfcvk1QpGJiL36IjuS67SM3VAoXS0iJ2WX1Rgjvhg==} + /@module-federation/sdk@0.6.11: + resolution: {integrity: sha512-Fj2ws9yL6mGAki9GdurcrIhdSg0L2Kfw7L6Dej/DidzAU4bwa3MT0s+87BPuOYFgm2UTMN3g+UrElC2NhsuulQ==} dev: true - /@module-federation/sdk@0.6.9: - resolution: {integrity: sha512-xmTxb9LgncxPGsBrN6AT/+aHnFGv8swbeNl0PcSeVbXTGLu3Gp7j+5J+AhJoWNB++SLguRwBd8LjB1d8mNKLDg==} + /@module-federation/sdk@0.6.6: + resolution: {integrity: sha512-tUv2kPi0FvplcpGi/g4nITAYVAR1RUZ6QvP71T8inmRZSrfcvk1QpGJiL36IjuS67SM3VAoXS0iJ2WX1Rgjvhg==} dev: true - /@module-federation/third-party-dts-extractor@0.6.6: - resolution: {integrity: sha512-xX9p17PpElzATNEulwlJJT731xST7T7OUIDSkkIghp/ICDmZd6WhYJvNBto7xbpaj5SIB7Ocdj4chNGv0xdYPw==} + /@module-federation/third-party-dts-extractor@0.6.11: + resolution: {integrity: sha512-KEHF71/qmEhME1XK/0XpMHKaSRjwmINpul9iu5Z4UBNtoMIydq6SH41DsWF3HxAManhqe+ZwCxyoSn2Yxm5d0Q==} dependencies: find-pkg: 2.0.0 fs-extra: 9.1.0 resolve: 1.22.8 dev: true - /@module-federation/third-party-dts-extractor@0.6.9: - resolution: {integrity: sha512-im00IQyX/siJz+SaAmJo6vGmMBig7UYzcrPD1N5NeiZonxdT1RZk9iXUP419UESgovYy4hM6w4qdCq6PMMl2bw==} + /@module-federation/third-party-dts-extractor@0.6.6: + resolution: {integrity: sha512-xX9p17PpElzATNEulwlJJT731xST7T7OUIDSkkIghp/ICDmZd6WhYJvNBto7xbpaj5SIB7Ocdj4chNGv0xdYPw==} dependencies: find-pkg: 2.0.0 fs-extra: 9.1.0 @@ -11314,6 +11354,13 @@ packages: '@module-federation/runtime': 0.5.1 '@module-federation/sdk': 0.5.1 + /@module-federation/webpack-bundler-runtime@0.6.11: + resolution: {integrity: sha512-s9VtE+cthnCsutl0o48qBRaLP3oQGA1FESLG9dwIHpUN9G7zRtewf0HjlCFFZG3ORRyTKBiJUi5qDWt9ky7XwQ==} + dependencies: + '@module-federation/runtime': 0.6.11 + '@module-federation/sdk': 0.6.11 + dev: true + /@module-federation/webpack-bundler-runtime@0.6.6: resolution: {integrity: sha512-0UnY9m1fBgHwTpacYWbht1jB5X4Iqspiu1q8kfjUrv6y+R224//ydUFYYO8xfWx4V9SGQFKlU8XFH0FP/r0Hng==} dependencies: @@ -11321,13 +11368,6 @@ packages: '@module-federation/sdk': 0.6.6 dev: true - /@module-federation/webpack-bundler-runtime@0.6.9: - resolution: {integrity: sha512-ME1MjNT/a4MFI3HaJDM06olJ+/+H8lk4oDOdwwEZI2JSH3UoqCDrMcjSKCjBNMGzza57AowGobo1LHQeY8yZ8Q==} - dependencies: - '@module-federation/runtime': 0.6.9 - '@module-federation/sdk': 0.6.9 - dev: true - /@mole-inc/bin-wrapper@8.0.1: resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -11357,7 +11397,7 @@ packages: '@open-draft/until': 1.0.3 '@types/debug': 4.1.12 '@xmldom/xmldom': 0.8.10 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) headers-polyfill: 3.2.5 outvariant: 1.4.3 strict-event-emitter: 0.2.8 @@ -11546,8 +11586,8 @@ packages: resolution: {integrity: sha512-kwUxR7J9WLutBbulqg1dfOrMTwhMdXLdcGUhcbCcGwnPLt3gz19uHVdwH1syKVDbE022ZS2vZxOWflFLS0YTjw==} requiresBuild: true dependencies: - '@emnapi/core': 1.3.0 - '@emnapi/runtime': 1.3.0 + '@emnapi/core': 1.3.1 + '@emnapi/runtime': 1.3.1 '@tybys/wasm-util': 0.9.0 optional: true @@ -11559,12 +11599,16 @@ packages: tar-fs: 2.1.1 dev: true + /@next/env@14.2.0: + resolution: {integrity: sha512-4+70ELtSbRtYUuyRpAJmKC8NHBW2x1HMje9KO2Xd7IkoyucmV9SjgO+qeWMC0JWkRQXgydv1O7yKOK8nu/rITQ==} + /@next/env@14.2.14: resolution: {integrity: sha512-/0hWQfiaD5//LvGNgc8PjvyqV50vGK0cADYzaoOOGN8fxzBn3iAiaq3S0tCRnFBldq0LVveLcxCTi41ZoYgAgg==} dev: false /@next/env@14.2.15: resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==} + dev: false /@next/eslint-plugin-next@14.2.15: resolution: {integrity: sha512-pKU0iqKRBlFB/ocOI1Ip2CkKePZpYpnw5bEItEkuZ/Nr9FQP1+p7VDWr4VfOdff4i9bFmrOaeaU1bFEyAcxiMQ==} @@ -11572,6 +11616,14 @@ packages: glob: 10.3.10 dev: true + /@next/swc-darwin-arm64@14.2.0: + resolution: {integrity: sha512-kHktLlw0AceuDnkVljJ/4lTJagLzDiO3klR1Fzl2APDFZ8r+aTxNaNcPmpp0xLMkgRwwk6sggYeqq0Rz9K4zzA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /@next/swc-darwin-arm64@14.2.14: resolution: {integrity: sha512-bsxbSAUodM1cjYeA4o6y7sp9wslvwjSkWw57t8DtC8Zig8aG8V6r+Yc05/9mDzLKcybb6EN85k1rJDnMKBd9Gw==} engines: {node: '>= 10'} @@ -11587,6 +11639,15 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: false + optional: true + + /@next/swc-darwin-x64@14.2.0: + resolution: {integrity: sha512-HFSDu7lb1U3RDxXNeKH3NGRR5KyTPBSUTuIOr9jXoAso7i76gNYvnTjbuzGVWt2X5izpH908gmOYWtI7un+JrA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true optional: true /@next/swc-darwin-x64@14.2.14: @@ -11604,6 +11665,15 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-arm64-gnu@14.2.0: + resolution: {integrity: sha512-iQsoWziO5ZMxDWZ4ZTCAc7hbJ1C9UDj/gATSqTaMjW2bJFwAsvf9UM79AKnljBl73uPZ+V0kH4rvnHTco4Ps2w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true /@next/swc-linux-arm64-gnu@14.2.14: @@ -11621,6 +11691,15 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-arm64-musl@14.2.0: + resolution: {integrity: sha512-0JOk2uzLUt8fJK5LpsKKZa74zAch7bJjjgJzR9aOMs231AlE4gPYzsSm430ckZitjPGKeH5bgDZjqwqJQKIS2w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true optional: true /@next/swc-linux-arm64-musl@14.2.14: @@ -11638,6 +11717,15 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-x64-gnu@14.2.0: + resolution: {integrity: sha512-uYHkuTzX0NM6biKNp7hdKTf+BF0iMV254SxO0B8PgrQkxUBKGmk5ysHKB+FYBfdf9xei/t8OIKlXJs9ckD943A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true /@next/swc-linux-x64-gnu@14.2.14: @@ -11655,6 +11743,15 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: false + optional: true + + /@next/swc-linux-x64-musl@14.2.0: + resolution: {integrity: sha512-paN89nLs2dTBDtfXWty1/NVPit+q6ldwdktixYSVwiiAz647QDCd+EIYqoiS+/rPG3oXs/A7rWcJK9HVqfnMVg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true optional: true /@next/swc-linux-x64-musl@14.2.14: @@ -11672,6 +11769,15 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-arm64-msvc@14.2.0: + resolution: {integrity: sha512-j1oiidZisnymYjawFqEfeGNcE22ZQ7lGUaa4pGOCVWrWeIDkPSj8zYgS9TzMNlg17Q3wSWCQC/F5uJAhSh7qcA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true optional: true /@next/swc-win32-arm64-msvc@14.2.14: @@ -11689,6 +11795,15 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-ia32-msvc@14.2.0: + resolution: {integrity: sha512-6ff6F4xb+QGD1jhx/dOT9Ot7PQ/GAYekV9ykwEh2EFS/cLTyU4Y3cXkX5cNtNIhpctS5NvyjW9gIksRNErYE0A==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + requiresBuild: true optional: true /@next/swc-win32-ia32-msvc@14.2.14: @@ -11706,6 +11821,15 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: false + optional: true + + /@next/swc-win32-x64-msvc@14.2.0: + resolution: {integrity: sha512-09DbG5vXAxz0eTFSf1uebWD36GF3D5toynRkgo2AlSrxwGZkWtJ1RhmrczRYQ17eD5bdo4FZ0ibiffdq5kc4vg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true optional: true /@next/swc-win32-x64-msvc@14.2.14: @@ -11723,6 +11847,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: false optional: true /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: @@ -12467,7 +12592,7 @@ packages: - verdaccio dev: false - /@nx/next@20.0.0(@babel/core@7.25.2)(@rspack/core@1.0.8)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(esbuild@0.24.0)(eslint@8.57.1)(html-webpack-plugin@5.6.2)(next@14.2.15)(nx@20.0.0)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(verdaccio@5.29.2)(vue-tsc@2.1.6)(webpack@5.93.0): + /@nx/next@20.0.0(@babel/core@7.25.2)(@rspack/core@1.0.8)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(esbuild@0.24.0)(eslint@8.57.1)(html-webpack-plugin@5.6.2)(next@14.2.0)(nx@20.0.0)(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(verdaccio@5.29.2)(vue-tsc@2.1.6)(webpack@5.93.0): resolution: {integrity: sha512-tjGlo+/WCeOm5sBTb1fjaQqiPwKou5oFH707Fq+SIbc3IpULQZqVg4a9dYbAEhtwh/P3T7tW4XigVBIL89K57w==} peerDependencies: next: '>=14.0.0' @@ -12484,7 +12609,7 @@ packages: copy-webpack-plugin: 10.2.4(webpack@5.93.0) file-loader: 6.2.0(webpack@5.93.0) ignore: 5.3.2 - next: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + next: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) picocolors: 1.1.0 semver: 7.6.3 tslib: 2.6.3 @@ -13013,7 +13138,7 @@ packages: - verdaccio dev: true - /@nx/rspack@20.0.0(@module-federation/enhanced@packages+enhanced)(@module-federation/node@packages+node)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@swc/helpers@0.5.13)(@types/node@18.16.9)(eslint@8.57.1)(less@4.2.0)(nx@20.0.0)(postcss@8.4.47)(react-refresh@0.14.2)(stylus@0.63.0)(typescript@5.5.2)(verdaccio@5.29.2)(webpack@5.93.0): + /@nx/rspack@20.0.0(@module-federation/enhanced@packages+enhanced)(@module-federation/node@packages+node)(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@swc/helpers@0.5.13)(@types/node@18.16.9)(eslint@8.57.1)(less@4.2.0)(nx@20.0.0)(postcss@8.4.47)(react-refresh@0.14.2)(stylus@0.64.0)(typescript@5.5.2)(verdaccio@5.29.2)(webpack@5.93.0): resolution: {integrity: sha512-VOMHH3f8O17rb+RBOvh434OmI/pLuFvBiuqAoeG5wMjdAr3aXi08p9ShvrypetF3wmDKPJjogctPsjn7creNyw==} peerDependencies: '@module-federation/enhanced': ~0.6.0 @@ -13033,7 +13158,7 @@ packages: license-webpack-plugin: 4.0.2(webpack@5.93.0) postcss-loader: 8.1.1(@rspack/core@1.0.8)(postcss@8.4.47)(typescript@5.5.2)(webpack@5.93.0) sass-loader: 12.6.0(webpack@5.93.0) - stylus-loader: 7.1.3(stylus@0.63.0)(webpack@5.93.0) + stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.93.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13098,8 +13223,8 @@ packages: enquirer: 2.3.6 minimatch: 9.0.3 tsconfig-paths: 4.2.0 - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) - vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) + vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -13230,8 +13355,8 @@ packages: resolution: {integrity: sha512-Q62bZHQBafWWvlZ+uCk5Wo5APbigno3JD78vwkjY7SwmzfoTr58X9bsg7LoDAtSdzs24AyBfLoPuclp+ZC+7uQ==} dependencies: '@babel/core': 7.25.7 - '@module-federation/enhanced': 0.6.9(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0) - '@module-federation/sdk': 0.6.9 + '@module-federation/enhanced': 0.6.11(react-dom@18.3.1)(react@18.3.1)(typescript@5.5.2)(vue-tsc@2.1.6)(webpack@5.93.0) + '@module-federation/sdk': 0.6.11 '@nx/devkit': 20.0.0(nx@20.0.0) '@nx/js': 20.0.0(@swc-node/register@1.10.9)(@swc/core@1.7.26)(@types/node@18.16.9)(nx@20.0.0)(typescript@5.5.2)(verdaccio@5.29.2) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.5.2) @@ -14737,7 +14862,7 @@ packages: optional: true dependencies: '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@rollup/pluginutils': 5.1.2(rollup@4.24.0) rollup: 4.24.0 transitivePeerDependencies: @@ -15216,7 +15341,7 @@ packages: '@rspack/core': 1.0.10(@swc/helpers@0.5.13) '@rspack/lite-tapable': 1.0.1 '@swc/helpers': 0.5.13 - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001668 core-js: 3.38.1 optionalDependencies: fsevents: 2.3.3 @@ -15705,7 +15830,7 @@ packages: resolution: {integrity: sha512-PjjrUe1mstoy7N7A6Xr1i5sAKSGPfNay/cEbRt3SBvdYPOsK87TLE6DS9WtViSp8QYHh97cgJ6z1ufuluElDDw==} dependencies: '@rspack/core': 0.5.3(@swc/helpers@0.5.3) - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 lodash: 4.17.21 postcss: 8.4.47 transitivePeerDependencies: @@ -15716,7 +15841,7 @@ packages: resolution: {integrity: sha512-rvm+B2pGHsRSW3LiqPzOnyg/PQMNZsrX2QvuZLUovuF3DpvzKJoBsrj0ih1c0ymlIEitEcoBqiJbQUVQI3iDUQ==} dependencies: '@rspack/core': 0.5.0(@swc/helpers@0.5.3) - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 lodash: 4.17.21 postcss: 8.4.47 transitivePeerDependencies: @@ -15739,7 +15864,7 @@ packages: resolution: {integrity: sha512-juRe5zVdXEmdpTxIdstE58OlZ2z+WESlCgxE4waVpXwZrBEMX1fzM6Rl1ZKnInCOGzxYkSRpWVPSlBG1hAGERg==} dependencies: '@rspack/core': 0.7.0(@swc/helpers@0.5.13) - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001668 html-webpack-plugin: /html-rspack-plugin@5.7.2(@rspack/core@0.7.0) postcss: 8.4.47 optionalDependencies: @@ -15752,7 +15877,7 @@ packages: resolution: {integrity: sha512-juRe5zVdXEmdpTxIdstE58OlZ2z+WESlCgxE4waVpXwZrBEMX1fzM6Rl1ZKnInCOGzxYkSRpWVPSlBG1hAGERg==} dependencies: '@rspack/core': 0.7.0(@swc/helpers@0.5.3) - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001668 html-webpack-plugin: /html-rspack-plugin@5.7.2(@rspack/core@0.7.0) postcss: 8.4.47 optionalDependencies: @@ -15778,7 +15903,7 @@ packages: resolution: {integrity: sha512-FwTm11DP7KxQKT2mWLvwe80O5KpikgMSlqnw9CQhBaIHSYEypdJU9ZotbNsXsHdML3xcqg+S9ae3bpovC7KlwQ==} dependencies: '@rspack/core': 0.7.5(@swc/helpers@0.5.3) - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001669 html-webpack-plugin: /html-rspack-plugin@5.7.2(@rspack/core@0.7.5) postcss: 8.4.47 optionalDependencies: @@ -16584,7 +16709,7 @@ packages: '@module-federation/runtime-tools': 0.1.6 '@rspack/binding': 0.7.0 '@swc/helpers': 0.5.13 - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001668 tapable: 2.2.1 webpack-sources: 3.2.3 dev: false @@ -16601,7 +16726,7 @@ packages: '@module-federation/runtime-tools': 0.1.6 '@rspack/binding': 0.7.0 '@swc/helpers': 0.5.3 - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001668 tapable: 2.2.1 webpack-sources: 3.2.3 dev: false @@ -16635,7 +16760,7 @@ packages: '@module-federation/runtime-tools': 0.1.6 '@rspack/binding': 0.7.5 '@swc/helpers': 0.5.3 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 tapable: 2.2.1 webpack-sources: 3.2.3 dev: true @@ -16653,7 +16778,7 @@ packages: '@rspack/binding': 1.0.10 '@rspack/lite-tapable': 1.0.1 '@swc/helpers': 0.5.13 - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001669 dev: true /@rspack/core@1.0.13(@swc/helpers@0.5.13): @@ -17093,7 +17218,7 @@ packages: selderee: 0.11.0 dev: false - /@semantic-release/changelog@6.0.3(semantic-release@24.1.2): + /@semantic-release/changelog@6.0.3(semantic-release@24.1.3): resolution: {integrity: sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==} engines: {node: '>=14.17'} peerDependencies: @@ -17103,10 +17228,10 @@ packages: aggregate-error: 3.1.0 fs-extra: 11.2.0 lodash: 4.17.21 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) dev: true - /@semantic-release/commit-analyzer@13.0.0(semantic-release@24.1.2): + /@semantic-release/commit-analyzer@13.0.0(semantic-release@24.1.3): resolution: {integrity: sha512-KtXWczvTAB1ZFZ6B4O+w8HkfYm/OgQb1dUGNFZtDgQ0csggrmkq8sTxhd+lwGF8kMb59/RnG9o4Tn7M/I8dQ9Q==} engines: {node: '>=20.8.1'} peerDependencies: @@ -17116,11 +17241,11 @@ packages: conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) import-from-esm: 1.3.4 lodash-es: 4.17.21 micromatch: 4.0.8 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) transitivePeerDependencies: - supports-color dev: true @@ -17135,7 +17260,7 @@ packages: engines: {node: '>=18'} dev: true - /@semantic-release/exec@6.0.3(semantic-release@24.1.2): + /@semantic-release/exec@6.0.3(semantic-release@24.1.3): resolution: {integrity: sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==} engines: {node: '>=14.17'} peerDependencies: @@ -17143,16 +17268,16 @@ packages: dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) execa: 5.1.1 lodash: 4.17.21 parse-json: 5.2.0 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) transitivePeerDependencies: - supports-color dev: true - /@semantic-release/git@10.0.1(semantic-release@24.1.2): + /@semantic-release/git@10.0.1(semantic-release@24.1.3): resolution: {integrity: sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==} engines: {node: '>=14.17'} peerDependencies: @@ -17160,18 +17285,18 @@ packages: dependencies: '@semantic-release/error': 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) dir-glob: 3.0.1 execa: 5.1.1 lodash: 4.17.21 micromatch: 4.0.8 p-reduce: 2.1.0 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) transitivePeerDependencies: - supports-color dev: true - /@semantic-release/github@11.0.0(semantic-release@24.1.2): + /@semantic-release/github@11.0.0(semantic-release@24.1.3): resolution: {integrity: sha512-Uon6G6gJD8U1JNvPm7X0j46yxNRJ8Ui6SgK4Zw5Ktu8RgjEft3BGn+l/RX1TTzhhO3/uUcKuqM+/9/ETFxWS/Q==} engines: {node: '>=20.8.1'} peerDependencies: @@ -17183,7 +17308,7 @@ packages: '@octokit/plugin-throttling': 9.3.1(@octokit/core@6.1.2) '@semantic-release/error': 4.0.0 aggregate-error: 5.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) dir-glob: 3.0.1 globby: 14.0.2 http-proxy-agent: 7.0.2 @@ -17192,13 +17317,13 @@ packages: lodash-es: 4.17.21 mime: 4.0.4 p-filter: 4.1.0 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) url-join: 5.0.0 transitivePeerDependencies: - supports-color dev: true - /@semantic-release/npm@11.0.3(semantic-release@24.1.2): + /@semantic-release/npm@11.0.3(semantic-release@24.1.3): resolution: {integrity: sha512-KUsozQGhRBAnoVg4UMZj9ep436VEGwT536/jwSqB7vcEfA6oncCUU7UIYTRdLx7GvTtqn0kBjnkfLVkcnBa2YQ==} engines: {node: ^18.17 || >=20} peerDependencies: @@ -17215,12 +17340,12 @@ packages: rc: 1.2.8 read-pkg: 9.0.1 registry-auth-token: 5.0.2 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) semver: 7.6.3 tempy: 3.1.0 dev: true - /@semantic-release/npm@12.0.1(semantic-release@24.1.2): + /@semantic-release/npm@12.0.1(semantic-release@24.1.3): resolution: {integrity: sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==} engines: {node: '>=20.8.1'} peerDependencies: @@ -17228,7 +17353,7 @@ packages: dependencies: '@semantic-release/error': 4.0.0 aggregate-error: 5.0.0 - execa: 9.4.0 + execa: 9.4.1 fs-extra: 11.2.0 lodash-es: 4.17.21 nerf-dart: 1.0.0 @@ -17237,12 +17362,12 @@ packages: rc: 1.2.8 read-pkg: 9.0.1 registry-auth-token: 5.0.2 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) semver: 7.6.3 tempy: 3.1.0 dev: true - /@semantic-release/release-notes-generator@14.0.1(semantic-release@24.1.2): + /@semantic-release/release-notes-generator@14.0.1(semantic-release@24.1.3): resolution: {integrity: sha512-K0w+5220TM4HZTthE5dDpIuFrnkN1NfTGPidJFm04ULT1DEZ9WG89VNXN7F0c+6nMEpWgqmPvb7vY7JkB2jyyA==} engines: {node: '>=20.8.1'} peerDependencies: @@ -17252,13 +17377,13 @@ packages: conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) get-stream: 7.0.1 import-from-esm: 1.3.4 into-stream: 7.0.0 lodash-es: 4.17.21 read-package-up: 11.0.0 - semantic-release: 24.1.2(typescript@5.5.2) + semantic-release: 24.1.3(typescript@5.5.2) transitivePeerDependencies: - supports-color dev: true @@ -18057,7 +18182,7 @@ packages: dependencies: '@babel/generator': 7.25.7 '@babel/parser': 7.25.8 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 '@storybook/csf': 0.1.11 '@storybook/types': 7.6.20 @@ -18073,7 +18198,7 @@ packages: dependencies: '@babel/generator': 7.25.6 '@babel/parser': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.7 '@storybook/csf': 0.1.11 '@storybook/types': 8.1.11 @@ -18170,7 +18295,7 @@ packages: resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} dev: true - /@storybook/nextjs@8.3.5(@rspack/core@1.0.8)(@swc/core@1.7.26)(esbuild@0.24.0)(next@14.2.15)(react-dom@18.3.1)(react@18.3.1)(storybook@8.3.5)(typescript@5.5.2)(webpack@5.93.0): + /@storybook/nextjs@8.3.5(@rspack/core@1.0.8)(@swc/core@1.7.26)(esbuild@0.24.0)(next@14.2.0)(react-dom@18.3.1)(react@18.3.1)(storybook@8.3.5)(typescript@5.5.2)(webpack@5.93.0): resolution: {integrity: sha512-YMjDSVd7BHIvj6oLMEFMKRvfZ83INxZinxtrx4ZZXGe+5iP8j7rcV7D67lxKQKWNy36d9Foj4pjT85yYj5s+ZQ==} engines: {node: '>=18.0.0'} peerDependencies: @@ -18212,7 +18337,7 @@ packages: fs-extra: 11.2.0 image-size: 1.1.1 loader-utils: 3.3.1 - next: 14.2.15(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) + next: 14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1) node-polyfill-webpack-plugin: 2.0.1(webpack@5.93.0) pnp-webpack-plugin: 1.7.0(typescript@5.5.2) postcss: 8.4.47 @@ -18336,7 +18461,7 @@ packages: typescript: '>= 4.x' webpack: '>= 4' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -18355,7 +18480,7 @@ packages: typescript: '>= 4.x' webpack: '>= 4' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) endent: 2.1.0 find-cache-dir: 3.3.2 flat-cache: 3.2.0 @@ -18772,7 +18897,7 @@ packages: '@swc-node/sourcemap-support': 0.5.1 '@swc/core': 1.7.26(@swc/helpers@0.5.13) colorette: 2.0.20 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) oxc-resolver: 1.12.0 pirates: 4.0.6 tslib: 2.6.3 @@ -20001,7 +20126,7 @@ packages: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.0.4) '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.0.4) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 graphemer: 1.4.0 ignore: 5.3.2 @@ -20053,7 +20178,7 @@ packages: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.0.4) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 typescript: 5.0.4 transitivePeerDependencies: @@ -20074,7 +20199,7 @@ packages: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.2) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 typescript: 5.5.2 transitivePeerDependencies: @@ -20095,7 +20220,7 @@ packages: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.2) '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 typescript: 5.5.2 transitivePeerDependencies: @@ -20146,7 +20271,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.0.4) '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.0.4) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 tsutils: 3.21.0(typescript@5.0.4) typescript: 5.0.4 @@ -20166,7 +20291,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.2) '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.5.2) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 ts-api-utils: 1.3.0(typescript@5.5.2) typescript: 5.5.2 @@ -20185,7 +20310,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 8.8.0(typescript@5.5.2) '@typescript-eslint/utils': 8.8.0(eslint@8.57.1)(typescript@5.5.2) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) ts-api-utils: 1.3.0(typescript@5.5.2) typescript: 5.5.2 transitivePeerDependencies: @@ -20224,7 +20349,7 @@ packages: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -20245,7 +20370,7 @@ packages: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -20267,7 +20392,7 @@ packages: dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.5 @@ -20289,7 +20414,7 @@ packages: dependencies: '@typescript-eslint/types': 8.8.0 '@typescript-eslint/visitor-keys': 8.8.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 @@ -20578,7 +20703,7 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - supports-color dev: true @@ -20593,7 +20718,7 @@ packages: '@babel/core': 7.25.2 '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.2) - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vue: 3.5.10(typescript@5.5.2) transitivePeerDependencies: - supports-color @@ -20606,7 +20731,7 @@ packages: vite: ^5.0.0 vue: ^3.2.25 dependencies: - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vue: 3.5.10(typescript@5.5.2) dev: true @@ -20615,7 +20740,7 @@ packages: peerDependencies: vitest: 1.6.0 dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 6.0.3 istanbul-lib-report: 3.0.1 @@ -20624,7 +20749,7 @@ packages: magicast: 0.3.5 picocolors: 1.1.0 test-exclude: 6.0.0 - vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - supports-color dev: true @@ -20636,7 +20761,7 @@ packages: dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 @@ -20647,7 +20772,7 @@ packages: std-env: 3.7.0 strip-literal: 2.1.0 test-exclude: 6.0.0 - vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - supports-color dev: true @@ -20747,7 +20872,7 @@ packages: pathe: 1.1.2 picocolors: 1.1.0 sirv: 2.0.4 - vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) dev: true /@vitest/utils@1.2.2: @@ -20827,11 +20952,11 @@ packages: optional: true dependencies: '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.2) '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 '@vue/babel-helper-vue-transform-on': 1.2.5 '@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.25.2) @@ -20848,7 +20973,7 @@ packages: dependencies: '@babel/code-frame': 7.25.7 '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/parser': 7.25.8 '@vue/compiler-sfc': 3.5.10 @@ -21401,7 +21526,7 @@ packages: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -21409,7 +21534,7 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true @@ -22135,7 +22260,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.24.0 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.0 @@ -22286,7 +22411,7 @@ packages: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8) - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 transitivePeerDependencies: - supports-color @@ -22305,7 +22430,7 @@ packages: /babel-plugin-import@1.13.5: resolution: {integrity: sha512-IkqnoV+ov1hdJVofly9pXRJmeDm9EtROfrc5i6eII0Hix2xMs5FEm8FG3ExMvazbnZBbgHIt6qdO8And6lCloQ==} dependencies: - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -22313,7 +22438,7 @@ packages: /babel-plugin-import@1.13.8: resolution: {integrity: sha512-36babpjra5m3gca44V6tSTomeBlPA7cHUynrE2WiQIm3rEGD9xy28MKsx5IdO45EbnpJY7Jrgd00C6Dwt/l/2Q==} dependencies: - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 transitivePeerDependencies: - supports-color dev: true @@ -22432,7 +22557,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7(supports-color@5.5.0) + '@babel/helper-module-imports': 7.25.7 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 styled-components: 6.1.13(react-dom@18.3.1)(react@18.3.1) @@ -22474,7 +22599,7 @@ packages: dependencies: '@babel/core': 7.25.8 '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 /babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2): resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==} @@ -22868,7 +22993,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 electron-to-chromium: 1.5.37 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.23.1) @@ -22879,7 +23004,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001667 + caniuse-lite: 1.0.30001669 electron-to-chromium: 1.5.31 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.0) @@ -23096,7 +23221,7 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.24.0 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -23110,6 +23235,9 @@ packages: /caniuse-lite@1.0.30001668: resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==} + /caniuse-lite@1.0.30001669: + resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==} + /case-sensitive-paths-webpack-plugin@2.4.0: resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} engines: {node: '>=4'} @@ -23992,7 +24120,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.24.0) + webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.18.20) /copy-webpack-plugin@11.0.0(webpack@5.93.0): resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} @@ -24339,7 +24467,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.47) postcss-value-parser: 4.2.0 semver: 7.6.3 - webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.24.0) + webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.18.20) /css-minimizer-webpack-plugin@5.0.1(esbuild@0.17.19)(webpack@5.95.0): resolution: {integrity: sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==} @@ -25066,7 +25194,6 @@ packages: dependencies: ms: 2.1.3 supports-color: 8.1.1 - dev: true /debug@4.3.7(supports-color@9.3.1): resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} @@ -25352,7 +25479,7 @@ packages: hasBin: true dependencies: address: 1.2.2 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -26066,7 +26193,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.17.19 transitivePeerDependencies: - supports-color @@ -26077,7 +26204,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.18.20 transitivePeerDependencies: - supports-color @@ -26088,7 +26215,7 @@ packages: peerDependencies: esbuild: '>=0.12 <1' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.23.1 transitivePeerDependencies: - supports-color @@ -26507,7 +26634,7 @@ packages: optional: true dependencies: '@nolyfill/is-core-module': 1.0.39 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) enhanced-resolve: 5.17.1 eslint: 8.57.1 eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) @@ -26897,7 +27024,7 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -26974,7 +27101,7 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 c8: 7.14.0 transitivePeerDependencies: @@ -27147,8 +27274,8 @@ packages: strip-final-newline: 3.0.0 dev: true - /execa@9.4.0: - resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==} + /execa@9.4.1: + resolution: {integrity: sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==} engines: {node: ^18.19.0 || >=20.5.0} dependencies: '@sindresorhus/merge-streams': 4.0.0 @@ -27820,7 +27947,7 @@ packages: debug: optional: true dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) /for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} @@ -29391,7 +29518,7 @@ packages: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true @@ -29401,7 +29528,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true @@ -29429,7 +29556,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/http-proxy': 1.17.15 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) http-proxy: 1.18.1(debug@4.3.7) is-glob: 4.0.3 is-plain-object: 5.0.0 @@ -29510,7 +29637,7 @@ packages: engines: {node: '>= 6.0.0'} dependencies: agent-base: 5.1.1 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true @@ -29520,7 +29647,7 @@ packages: engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -29529,7 +29656,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true @@ -29664,7 +29791,7 @@ packages: resolution: {integrity: sha512-7EyUlPFC0HOlBDpUFGfYstsU7XHxZJKAAMzCT8wZ0hMW7b+hG51LIKTDcsgtz8Pu6YC0HqRVbX+rVUtsGMUKvg==} engines: {node: '>=16.20'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) import-meta-resolve: 4.1.0 transitivePeerDependencies: - supports-color @@ -30435,7 +30562,6 @@ packages: ws: '*' dependencies: ws: 8.18.0 - dev: false /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} @@ -30495,7 +30621,7 @@ packages: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -30507,7 +30633,7 @@ packages: engines: {node: '>=10'} dependencies: '@jridgewell/trace-mapping': 0.3.25 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -31529,7 +31655,7 @@ packages: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -31683,7 +31809,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.24.0) + webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.18.20) webpack-sources: 3.2.3 /lilconfig@2.1.0: @@ -32000,7 +32126,7 @@ packages: engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) flatted: 3.3.1 rfdc: 1.4.1 streamroller: 3.1.5 @@ -32855,7 +32981,7 @@ packages: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -33353,6 +33479,47 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: false + /next@14.2.0(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-2T41HqJdKPqheR27ll7MFZ3gtTYvGew7cUc0PwPSyK9Ao5vvwpf9bYfP4V5YBGLckHF2kEGvrLte5BqLSv0s8g==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + dependencies: + '@next/env': 14.2.0 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001669 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.25.2)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.0 + '@next/swc-darwin-x64': 14.2.0 + '@next/swc-linux-arm64-gnu': 14.2.0 + '@next/swc-linux-arm64-musl': 14.2.0 + '@next/swc-linux-x64-gnu': 14.2.0 + '@next/swc-linux-x64-musl': 14.2.0 + '@next/swc-win32-arm64-msvc': 14.2.0 + '@next/swc-win32-ia32-msvc': 14.2.0 + '@next/swc-win32-x64-msvc': 14.2.0 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + /next@14.2.14(@babel/core@7.25.2)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-Q1coZG17MW0Ly5x76shJ4dkC23woLAhhnDnw+DfTc7EpZSGuWrlsZ3bZaO8t6u1Yu8FVfhkqJE+U8GC7E0GLPQ==} engines: {node: '>=18.17.0'} @@ -33435,6 +33602,7 @@ packages: transitivePeerDependencies: - '@babel/core' - babel-plugin-macros + dev: false /no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} @@ -34864,6 +35032,9 @@ packages: /picocolors@1.1.0: resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + /picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} @@ -36212,7 +36383,7 @@ packages: engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 /postcss@8.4.38: @@ -36220,7 +36391,7 @@ packages: engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 dev: true @@ -36565,7 +36736,7 @@ packages: engines: {node: '>=8.16.0'} dependencies: '@types/mime-types': 2.1.4 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) extract-zip: 1.7.0 https-proxy-agent: 4.0.0 mime: 2.6.0 @@ -37740,7 +37911,7 @@ packages: engines: {node: '>=16.14.0'} dependencies: '@babel/core': 7.25.8 - '@babel/traverse': 7.25.7(supports-color@5.5.0) + '@babel/traverse': 7.25.7 '@babel/types': 7.25.8 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 @@ -39561,14 +39732,9 @@ packages: /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - /sax@1.3.0: - resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} - dev: true - /sax@1.4.1: resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} requiresBuild: true - optional: true /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} @@ -39653,21 +39819,21 @@ packages: '@types/node-forge': 1.3.11 node-forge: 1.3.1 - /semantic-release@24.1.2(typescript@5.5.2): - resolution: {integrity: sha512-hvEJ7yI97pzJuLsDZCYzJgmRxF8kiEJvNZhf0oiZQcexw+Ycjy4wbdsn/sVMURgNCu8rwbAXJdBRyIxM4pe32g==} + /semantic-release@24.1.3(typescript@5.5.2): + resolution: {integrity: sha512-Cb0Pm3Ye15u8k/B+7EnusMUSIIucAIEBD3QDRmmclv53KVyqmg1Lb3XPx0AMNxfJZEI+ZT+M+IXDyTrudK6Rew==} engines: {node: '>=20.8.1'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 13.0.0(semantic-release@24.1.2) + '@semantic-release/commit-analyzer': 13.0.0(semantic-release@24.1.3) '@semantic-release/error': 4.0.0 - '@semantic-release/github': 11.0.0(semantic-release@24.1.2) - '@semantic-release/npm': 12.0.1(semantic-release@24.1.2) - '@semantic-release/release-notes-generator': 14.0.1(semantic-release@24.1.2) + '@semantic-release/github': 11.0.0(semantic-release@24.1.3) + '@semantic-release/npm': 12.0.1(semantic-release@24.1.3) + '@semantic-release/release-notes-generator': 14.0.1(semantic-release@24.1.3) aggregate-error: 5.0.0 cosmiconfig: 9.0.0(typescript@5.5.2) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) env-ci: 11.1.0 - execa: 9.4.0 + execa: 9.4.1 figures: 6.1.0 find-versions: 6.0.0 get-stream: 6.0.1 @@ -39784,7 +39950,7 @@ packages: resolution: {integrity: sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==} engines: {node: '>= 18'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) destroy: 1.2.0 encodeurl: 2.0.0 escape-html: 1.0.3 @@ -40302,7 +40468,7 @@ packages: /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -40315,7 +40481,7 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -40479,7 +40645,7 @@ packages: engines: {node: '>=8.0'} dependencies: date-format: 4.0.14 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -40749,7 +40915,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.24.0) + webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.18.20) /style-to-object@0.3.0: resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==} @@ -40915,7 +41081,7 @@ packages: stylus: 0.59.0 webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.18.20) - /stylus-loader@7.1.3(stylus@0.63.0)(webpack@5.93.0): + /stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.93.0): resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -40924,7 +41090,7 @@ packages: dependencies: fast-glob: 3.3.2 normalize-path: 3.0.0 - stylus: 0.63.0 + stylus: 0.64.0 webpack: 5.93.0(@swc/core@1.7.26)(esbuild@0.24.0) dev: true @@ -40933,21 +41099,22 @@ packages: hasBin: true dependencies: '@adobe/css-tools': 4.4.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) glob: 7.2.3 sax: 1.2.4 source-map: 0.7.4 transitivePeerDependencies: - supports-color - /stylus@0.63.0: - resolution: {integrity: sha512-OMlgrTCPzE/ibtRMoeLVhOY0RcNuNWh0rhAVqeKnk/QwcuUKQbnqhZ1kg2vzD8VU/6h3FoPTq4RJPHgLBvX6Bw==} + /stylus@0.64.0: + resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==} + engines: {node: '>=16'} hasBin: true dependencies: '@adobe/css-tools': 4.3.3 - debug: 4.3.7(supports-color@5.5.0) - glob: 7.2.3 - sax: 1.3.0 + debug: 4.3.7(supports-color@8.1.1) + glob: 10.4.5 + sax: 1.4.1 source-map: 0.7.4 transitivePeerDependencies: - supports-color @@ -41052,7 +41219,7 @@ packages: css-select: 4.3.0 css-tree: 1.1.3 csso: 4.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 stable: 0.1.8 dev: true @@ -41067,7 +41234,7 @@ packages: css-tree: 2.3.1 css-what: 6.1.0 csso: 5.0.5 - picocolors: 1.1.0 + picocolors: 1.1.1 /swc-loader@0.2.6(@swc/core@1.7.26)(webpack@5.93.0): resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} @@ -42122,7 +42289,7 @@ packages: bundle-require: 4.2.1(esbuild@0.18.20) cac: 6.7.14 chokidar: 3.6.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.18.20 execa: 5.1.1 globby: 11.1.0 @@ -42164,7 +42331,7 @@ packages: cac: 6.7.14 chokidar: 3.6.0 consola: 3.2.3 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.23.0 execa: 5.1.1 joycon: 3.1.1 @@ -42724,7 +42891,7 @@ packages: dependencies: browserslist: 4.23.1 escalade: 3.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 dev: true /update-browserslist-db@1.1.1(browserslist@4.24.0): @@ -42735,7 +42902,7 @@ packages: dependencies: browserslist: 4.24.0 escalade: 3.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -42978,7 +43145,7 @@ packages: compression: 1.7.4 cookies: 0.9.1 cors: 2.8.5 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) envinfo: 7.11.0 express: 4.18.2 express-rate-limit: 5.5.1 @@ -43077,16 +43244,16 @@ packages: teex: 1.0.1 dev: true - /vite-node@1.2.2(@types/node@20.12.14)(less@4.2.0)(stylus@0.63.0): + /vite-node@1.2.2(@types/node@20.12.14)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-1as4rDTgVWJO3n1uHmUYqq7nsFgINQ9u+mRcXpjeOMJUmviqNKjcZB7UfRZrlM7MjYXMKpuWp5oGkjaFLnjawg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - '@types/node' - less @@ -43098,16 +43265,16 @@ packages: - terser dev: true - /vite-node@1.6.0(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0): + /vite-node@1.6.0(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - '@types/node' - less @@ -43132,11 +43299,11 @@ packages: '@microsoft/api-extractor': 7.43.0(@types/node@16.11.68) '@rollup/pluginutils': 5.1.2(rollup@4.24.0) '@vue/language-core': 1.8.27(typescript@5.5.2) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) kolorist: 1.8.0 magic-string: 0.30.11 typescript: 5.5.2 - vite: 5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.64.0) vue-tsc: 1.8.27(typescript@5.5.2) transitivePeerDependencies: - '@types/node' @@ -43157,11 +43324,11 @@ packages: '@microsoft/api-extractor': 7.43.0(@types/node@18.16.9) '@rollup/pluginutils': 5.1.2(rollup@4.24.0) '@vue/language-core': 1.8.27(typescript@5.5.2) - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) kolorist: 1.8.0 magic-string: 0.30.11 typescript: 5.5.2 - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) vue-tsc: 1.8.27(typescript@5.5.2) transitivePeerDependencies: - '@types/node' @@ -43177,16 +43344,16 @@ packages: vite: optional: true dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 2.1.2(typescript@5.5.2) - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - supports-color - typescript dev: true - /vite@5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.63.0): + /vite@5.2.14(@types/node@16.11.68)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-TFQLuwWLPms+NBNlh0D9LZQ+HXW471COABxw/9TEUBrjuHMo9BrYBPrN/SYAwIuVL+rLerycxiLT41t4f5MZpA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -43219,12 +43386,12 @@ packages: less: 4.2.0 postcss: 8.4.47 rollup: 4.24.0 - stylus: 0.63.0 + stylus: 0.64.0 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0): + /vite@5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-TFQLuwWLPms+NBNlh0D9LZQ+HXW471COABxw/9TEUBrjuHMo9BrYBPrN/SYAwIuVL+rLerycxiLT41t4f5MZpA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -43257,12 +43424,12 @@ packages: less: 4.2.0 postcss: 8.4.47 rollup: 4.24.0 - stylus: 0.63.0 + stylus: 0.64.0 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.63.0): + /vite@5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-TFQLuwWLPms+NBNlh0D9LZQ+HXW471COABxw/9TEUBrjuHMo9BrYBPrN/SYAwIuVL+rLerycxiLT41t4f5MZpA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -43295,7 +43462,7 @@ packages: less: 4.2.0 postcss: 8.4.47 rollup: 4.24.0 - stylus: 0.63.0 + stylus: 0.64.0 optionalDependencies: fsevents: 2.3.3 dev: true @@ -43307,12 +43474,12 @@ packages: vitest: '>=0.16.0' dependencies: cross-fetch: 3.1.8(encoding@0.1.13) - vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0) + vitest: 1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0) transitivePeerDependencies: - encoding dev: true - /vitest@1.2.2(@types/node@20.12.14)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0): + /vitest@1.2.2(@types/node@20.12.14)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-d5Ouvrnms3GD9USIK36KG8OZ5bEvKEkITFtnGv56HFaSlbItJuYr7hv2Lkn903+AvRAgSixiamozUVfORUekjw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -43347,7 +43514,7 @@ packages: acorn-walk: 8.3.4 cac: 6.7.14 chai: 4.5.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.11 @@ -43357,8 +43524,8 @@ packages: strip-literal: 1.3.0 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.63.0) - vite-node: 1.2.2(@types/node@20.12.14)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@20.12.14)(less@4.2.0)(stylus@0.64.0) + vite-node: 1.2.2(@types/node@20.12.14)(less@4.2.0)(stylus@0.64.0) why-is-node-running: 2.3.0 transitivePeerDependencies: - less @@ -43370,7 +43537,7 @@ packages: - terser dev: true - /vitest@1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.63.0): + /vitest@1.6.0(@types/node@18.16.9)(@vitest/ui@1.6.0)(less@4.2.0)(stylus@0.64.0): resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -43404,7 +43571,7 @@ packages: '@vitest/utils': 1.6.0 acorn-walk: 8.3.4 chai: 4.5.0 - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.11 @@ -43414,8 +43581,8 @@ packages: strip-literal: 2.1.0 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) - vite-node: 1.6.0(@types/node@18.16.9)(less@4.2.0)(stylus@0.63.0) + vite: 5.2.14(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) + vite-node: 1.6.0(@types/node@18.16.9)(less@4.2.0)(stylus@0.64.0) why-is-node-running: 2.3.0 transitivePeerDependencies: - less @@ -43453,7 +43620,7 @@ packages: peerDependencies: eslint: '>=6.0.0' dependencies: - debug: 4.3.7(supports-color@5.5.0) + debug: 4.3.7(supports-color@8.1.1) eslint: 8.57.1 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3