diff --git a/examples/tsdown/.github/workflows/release.yml b/examples/tsdown/.github/workflows/release.yml new file mode 100644 index 00000000..e5b7a4c3 --- /dev/null +++ b/examples/tsdown/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set node + uses: actions/setup-node@v4 + with: + node-version: lts/* + + - run: npx changelogithub + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/examples/tsdown/.github/workflows/unit-test.yml b/examples/tsdown/.github/workflows/unit-test.yml new file mode 100644 index 00000000..dc3418c5 --- /dev/null +++ b/examples/tsdown/.github/workflows/unit-test.yml @@ -0,0 +1,38 @@ +name: Unit Test + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install pnpm + uses: pnpm/action-setup@v4.1.0 + + - name: Set node LTS + uses: actions/setup-node@v4 + with: + node-version: lts/* + cache: pnpm + + - name: Install + run: pnpm install + + - name: Build + run: pnpm run build + + - name: Lint + run: pnpm run lint + + - name: Typecheck + run: pnpm run typecheck + + - name: Test + run: pnpm run test diff --git a/examples/tsdown/.gitignore b/examples/tsdown/.gitignore new file mode 100644 index 00000000..75352116 --- /dev/null +++ b/examples/tsdown/.gitignore @@ -0,0 +1,4 @@ +node_modules +dist +*.log +.DS_Store diff --git a/examples/tsdown/.vscode/settings.json b/examples/tsdown/.vscode/settings.json new file mode 100644 index 00000000..ad92582b --- /dev/null +++ b/examples/tsdown/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.formatOnSave": true +} diff --git a/examples/tsdown/README.md b/examples/tsdown/README.md new file mode 100644 index 00000000..337c1d74 --- /dev/null +++ b/examples/tsdown/README.md @@ -0,0 +1,29 @@ +# react-components-starter + +A starter for creating a React component library. + +## Development + +- Install dependencies: + +```bash +npm install +``` + +- Run the playground: + +```bash +npm run playground +``` + +- Run the unit tests: + +```bash +npm run test +``` + +- Build the library: + +```bash +npm run build +``` diff --git a/examples/tsdown/package.json b/examples/tsdown/package.json new file mode 100644 index 00000000..5f5d8853 --- /dev/null +++ b/examples/tsdown/package.json @@ -0,0 +1,55 @@ +{ + "name": "react-components-starter", + "version": "0.0.0", + "description": "A starter for creating a React component library.", + "type": "module", + "license": "MIT", + "homepage": "https://github.com/author/library#readme", + "bugs": { + "url": "https://github.com/author/library/issues" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/author/library.git" + }, + "author": "Author Name ", + "files": [ + "dist" + ], + "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": "./dist/index.js", + "./package.json": "./package.json" + }, + "publishConfig": { + "access": "public" + }, + "scripts": { + "build": "tsdown", + "dev": "tsdown --watch", + "playground": "vite --config playground/vite.config.ts", + "test": "vitest", + "typecheck": "tsc --noEmit", + "release": "bumpp && pnpm publish", + "prepublishOnly": "pnpm run build" + }, + "devDependencies": { + "@testing-library/jest-dom": "^6.6.3", + "@testing-library/react": "^16.3.0", + "@types/node": "^22.15.17", + "@types/react": "^19.1.3", + "@types/react-dom": "^19.1.4", + "@vitejs/plugin-react": "^4.4.1", + "bumpp": "^10.1.0", + "happy-dom": "^17.4.6", + "react": "^19.1.0", + "react-dom": "^19.1.0", + "tsdown": "^0.11.1", + "typescript": "^5.8.3", + "vite": "npm:rolldown-vite@latest", + "vitest": "^3.1.3", + "zephyr-rolldown-plugin": "^0.1.0-next.1" + } +} diff --git a/examples/tsdown/playground/index.html b/examples/tsdown/playground/index.html new file mode 100644 index 00000000..9022237b --- /dev/null +++ b/examples/tsdown/playground/index.html @@ -0,0 +1,12 @@ + + + + + + React Components Starter + + +
+ + + diff --git a/examples/tsdown/playground/src/App.tsx b/examples/tsdown/playground/src/App.tsx new file mode 100644 index 00000000..c85da45a --- /dev/null +++ b/examples/tsdown/playground/src/App.tsx @@ -0,0 +1,9 @@ +import { MyButton } from '../../src' + +export function App() { + return ( + <> + + + ) +} diff --git a/examples/tsdown/playground/src/index.tsx b/examples/tsdown/playground/src/index.tsx new file mode 100644 index 00000000..5694ed7b --- /dev/null +++ b/examples/tsdown/playground/src/index.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import { App } from './App.tsx' +import './style.css' + +createRoot(document.querySelector('#app')!).render( + + + , +) diff --git a/examples/tsdown/playground/src/style.css b/examples/tsdown/playground/src/style.css new file mode 100644 index 00000000..f6913154 --- /dev/null +++ b/examples/tsdown/playground/src/style.css @@ -0,0 +1,79 @@ +:root { + font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +.card { + padding: 2em; +} + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/examples/tsdown/playground/vite.config.ts b/examples/tsdown/playground/vite.config.ts new file mode 100644 index 00000000..f97fdd24 --- /dev/null +++ b/examples/tsdown/playground/vite.config.ts @@ -0,0 +1,7 @@ +import react from '@vitejs/plugin-react' +import { defineConfig } from 'vite' + +export default defineConfig({ + root: './playground', + plugins: [react()], +}) diff --git a/examples/tsdown/src/MyButton.tsx b/examples/tsdown/src/MyButton.tsx new file mode 100644 index 00000000..17c0a8f0 --- /dev/null +++ b/examples/tsdown/src/MyButton.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +interface MyButtonProps { + type?: 'primary' +} + +export const MyButton: React.FC = ({ type }) => { + return +} diff --git a/examples/tsdown/src/index.ts b/examples/tsdown/src/index.ts new file mode 100644 index 00000000..a607dcae --- /dev/null +++ b/examples/tsdown/src/index.ts @@ -0,0 +1 @@ +export { MyButton } from './MyButton' diff --git a/examples/tsdown/tests/index.test.tsx b/examples/tsdown/tests/index.test.tsx new file mode 100644 index 00000000..4553fbea --- /dev/null +++ b/examples/tsdown/tests/index.test.tsx @@ -0,0 +1,17 @@ +import { render, screen } from '@testing-library/react' +import { expect, test } from 'vitest' +import { MyButton } from '../src' + +test('button', () => { + render() + + const buttonElement = screen.getByText(/my button: type primary/i) + + expect(buttonElement).toBeInTheDocument() + expect(buttonElement).toHaveTextContent('my button: type primary') + expect(buttonElement.outerHTML).toMatchInlineSnapshot( + `""`, + ) + + expect(buttonElement).toHaveClass('my-button') +}) diff --git a/examples/tsdown/tests/setup.ts b/examples/tsdown/tests/setup.ts new file mode 100644 index 00000000..c44951a6 --- /dev/null +++ b/examples/tsdown/tests/setup.ts @@ -0,0 +1 @@ +import '@testing-library/jest-dom' diff --git a/examples/tsdown/tsconfig.json b/examples/tsdown/tsconfig.json new file mode 100644 index 00000000..adccadfa --- /dev/null +++ b/examples/tsdown/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "esnext", + "jsx": "react", + "lib": ["es2023"], + "moduleDetection": "force", + "module": "preserve", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "types": ["node"], + "strict": true, + "noUnusedLocals": true, + "declaration": true, + "emitDeclarationOnly": true, + "esModuleInterop": true, + "isolatedModules": true, + "verbatimModuleSyntax": true, + "skipLibCheck": true + }, + "include": ["src"] +} diff --git a/examples/tsdown/tsdown.config.ts b/examples/tsdown/tsdown.config.ts new file mode 100644 index 00000000..4b1ec69d --- /dev/null +++ b/examples/tsdown/tsdown.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from 'tsdown' +import { withZephyr } from 'zephyr-rolldown-plugin' + +export default defineConfig([ + { + entry: ['./src/index.ts'], + platform: 'neutral', + dts: true, + plugins: [withZephyr()] + }, +]) diff --git a/examples/tsdown/vitest.config.ts b/examples/tsdown/vitest.config.ts new file mode 100644 index 00000000..8a2d860a --- /dev/null +++ b/examples/tsdown/vitest.config.ts @@ -0,0 +1,11 @@ +import react from '@vitejs/plugin-react' +import { defineConfig } from 'vitest/config' + +export default defineConfig({ + plugins: [react()], + test: { + environment: 'happy-dom', + globals: true, + setupFiles: './tests/setup.ts', + }, +}) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8fc283cf..181ad06f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -486,17 +486,17 @@ importers: version: 2.8.1 vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) zone.js: specifier: catalog:angular19 version: 0.15.0 devDependencies: '@analogjs/vite-plugin-angular': specifier: catalog:angular19 - version: 1.14.1(@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2))(@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.13.13)(chokidar@4.0.3)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.7.0)) + version: 1.14.1(@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2))(@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.18.8)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.8.1)) '@angular/build': specifier: catalog:angular19 - version: 19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.13.13)(chokidar@4.0.3)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.7.0) + version: 19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.18.8)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.8.1) '@angular/compiler-cli': specifier: catalog:angular19 version: 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) @@ -505,7 +505,7 @@ importers: version: 5.8.2 vite: specifier: catalog:vite6 - version: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) examples/basehref-examples: {} @@ -541,7 +541,7 @@ importers: version: 0.9.0 ts-node: specifier: catalog:typescript - version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) + version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2) typescript: specifier: catalog:typescript version: 5.8.2 @@ -563,16 +563,16 @@ importers: version: 18.3.5(@types/react@18.3.20) '@vitejs/plugin-react': specifier: catalog:vite5 - version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 4.3.4(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) typescript: specifier: catalog:typescript version: 5.8.2 vite: specifier: catalog:vite5 - version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) examples/basehref-examples/webpack-app: dependencies: @@ -747,7 +747,7 @@ importers: version: 8.5.3 postcss-loader: specifier: catalog:postcss - version: 8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.8.2)(webpack@5.99.9) + version: 8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.9.3)(webpack@5.99.9) react-refresh: specifier: catalog:react18 version: 0.16.0 @@ -778,13 +778,13 @@ importers: version: 0.11.2(@rspack/core@1.2.8(@swc/helpers@0.5.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/cypress': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) '@nx/eslint': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/eslint-plugin': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) '@nx/jest': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2))(typescript@5.8.2) @@ -793,7 +793,7 @@ importers: version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/react': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/rspack': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@module-federation/enhanced@0.11.2(@rspack/core@1.2.8(@swc/helpers@0.5.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))))(@module-federation/node@2.6.31(@rspack/core@1.2.8(@swc/helpers@0.5.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/helpers@0.5.15)(@types/express@4.17.21)(less@4.2.0)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react-refresh@0.16.0)(react@18.3.1)(typescript@5.8.2) @@ -847,10 +847,10 @@ importers: version: 18.3.5(@types/react@18.3.20) '@typescript-eslint/eslint-plugin': specifier: catalog:eslint - version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/parser': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) babel-jest: specifier: catalog:jest version: 29.7.0(@babel/core@7.28.4) @@ -859,25 +859,25 @@ importers: version: 13.17.0 eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-config-prettier: specifier: catalog:eslint - version: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + version: 10.1.1(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-cypress: specifier: catalog:eslint - version: 4.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 4.2.0(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-import: specifier: catalog:eslint - version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: catalog:eslint - version: 6.10.2(eslint@9.15.0(jiti@2.4.2)) + version: 6.10.2(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react: specifier: catalog:eslint - version: 7.37.4(eslint@9.15.0(jiti@2.4.2)) + version: 7.37.4(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) jest: specifier: catalog:jest version: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)) @@ -935,10 +935,10 @@ importers: version: 7.26.3(@babel/core@7.26.10) '@nx/eslint': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/eslint-plugin': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) '@nx/jest': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2))(typescript@5.8.2) @@ -947,7 +947,7 @@ importers: version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/react': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/web': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) @@ -995,31 +995,31 @@ importers: version: 18.3.5(@types/react@18.3.20) '@typescript-eslint/eslint-plugin': specifier: catalog:eslint - version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/parser': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) babel-jest: specifier: catalog:jest version: 29.7.0(@babel/core@7.26.10) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-config-prettier: specifier: catalog:eslint - version: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + version: 10.1.1(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-import: specifier: catalog:eslint - version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: catalog:eslint - version: 6.10.2(eslint@9.15.0(jiti@2.4.2)) + version: 6.10.2(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react: specifier: catalog:eslint - version: 7.37.4(eslint@9.15.0(jiti@2.4.2)) + version: 7.37.4(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) jest: specifier: catalog:jest version: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)) @@ -1061,7 +1061,7 @@ importers: version: 7.28.4 '@babel/eslint-parser': specifier: ^7.27.1 - version: 7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.4.2)) + version: 7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.6.1)) '@babel/plugin-transform-runtime': specifier: ^7.27.1 version: 7.28.3(@babel/core@7.28.4) @@ -1097,7 +1097,7 @@ importers: version: 3.0.3(@embroider/core@4.2.0) '@embroider/vite': specifier: ^1.1.5 - version: 1.2.0(@embroider/core@4.2.0)(rollup@4.37.0)(vite@6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + version: 1.2.0(@embroider/core@4.2.0)(rollup@4.37.0)(vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) '@eslint/js': specifier: ^9.27.0 version: 9.35.0 @@ -1124,7 +1124,7 @@ importers: version: 2.10.0(webpack@5.99.9) ember-cli: specifier: ~6.5.0-beta.0 - version: 6.5.0(@types/node@22.13.13)(ejs@3.1.10)(handlebars@4.7.8)(pug@3.0.3)(underscore@1.13.7) + version: 6.5.0(@types/node@22.18.8)(ejs@3.1.10)(handlebars@4.7.8)(pug@3.0.3)(underscore@1.13.7) ember-cli-babel: specifier: ^8.2.0 version: 8.2.0(@babel/core@7.28.4) @@ -1160,19 +1160,19 @@ importers: version: 7.0.2 eslint: specifier: ^9.27.0 - version: 9.35.0(jiti@2.4.2) + version: 9.35.0(jiti@2.6.1) eslint-config-prettier: specifier: ^10.1.5 - version: 10.1.8(eslint@9.35.0(jiti@2.4.2)) + version: 10.1.8(eslint@9.35.0(jiti@2.6.1)) eslint-plugin-ember: specifier: ^12.5.0 - version: 12.7.4(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2) + version: 12.7.4(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3) eslint-plugin-n: specifier: ^17.18.0 - version: 17.23.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2) + version: 17.23.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3) eslint-plugin-qunit: specifier: ^8.1.2 - version: 8.2.5(eslint@9.35.0(jiti@2.4.2)) + version: 8.2.5(eslint@9.35.0(jiti@2.6.1)) globals: specifier: ^16.1.0 version: 16.4.0 @@ -1190,10 +1190,10 @@ importers: version: 3.5.0 stylelint: specifier: ^16.19.1 - version: 16.24.0(typescript@5.8.2) + version: 16.24.0(typescript@5.9.3) stylelint-config-standard: specifier: ^38.0.0 - version: 38.0.0(stylelint@16.24.0(typescript@5.8.2)) + version: 38.0.0(stylelint@16.24.0(typescript@5.9.3)) testem: specifier: ^3.16.0 version: 3.16.0(ejs@3.1.10)(handlebars@4.7.8)(pug@3.0.3)(underscore@1.13.7) @@ -1202,10 +1202,10 @@ importers: version: 4.0.0(@babel/core@7.28.4) vite: specifier: ^6.3.5 - version: 6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) examples/modernjs-app: dependencies: @@ -1281,7 +1281,7 @@ importers: version: 19.2.4(@angular/common@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.4(@angular/animations@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@nx/angular': specifier: catalog:nx - version: 20.6.4(59cf53cf48cb39176851220bb77535e7) + version: 20.6.4(e1171b06889fdf7a8cdc153febd29a47) rxjs: specifier: catalog:angular19 version: 7.8.2 @@ -1297,10 +1297,10 @@ importers: devDependencies: '@angular-builders/custom-webpack': specifier: ^18.0.0 - version: 18.0.0(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) + version: 18.0.0(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) '@angular-devkit/build-angular': specifier: ^18.2.16 - version: 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) + version: 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) '@angular-devkit/core': specifier: ^18.2.16 version: 18.2.16(chokidar@4.0.3) @@ -1309,13 +1309,13 @@ importers: version: 18.2.16 '@angular-eslint/eslint-plugin': specifier: ^18.4.3 - version: 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@angular-eslint/eslint-plugin-template': specifier: ^18.4.3 - version: 18.4.3(@typescript-eslint/types@8.28.0)(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 18.4.3(@typescript-eslint/types@8.28.0)(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@angular-eslint/template-parser': specifier: ^18.4.3 - version: 18.4.3(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 18.4.3(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@angular/cli': specifier: catalog:angular19 version: 19.2.5(@types/node@22.13.13) @@ -1327,13 +1327,13 @@ importers: version: 19.2.4 '@nx/cypress': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) '@nx/eslint': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/eslint-plugin': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) '@nx/jest': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2))(typescript@5.8.2) @@ -1357,25 +1357,25 @@ importers: version: 22.13.13 '@typescript-eslint/eslint-plugin': specifier: catalog:eslint - version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/parser': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/utils': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) cypress: specifier: catalog:cypress version: 13.17.0 eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-config-prettier: specifier: catalog:eslint - version: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + version: 10.1.1(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-cypress: specifier: catalog:eslint - version: 4.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 4.2.0(eslint@9.15.0(jiti@2.6.1)) jest: specifier: catalog:jest version: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) @@ -1384,7 +1384,7 @@ importers: version: 29.7.0 jest-preset-angular: specifier: catalog:jest - version: 14.1.1(8869d40d9ef93a74381fb028a31c9b7c) + version: 14.1.1(c7dfde5ed562117f83caad7cf42a0f57) nx: specifier: catalog:nx version: 20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)) @@ -1436,7 +1436,7 @@ importers: version: 4.1.0 eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) leaflet: specifier: ^1.9.4 version: 1.9.4 @@ -1647,7 +1647,7 @@ importers: version: 4.37.0 rollup-plugin-postcss: specifier: catalog:rollup - version: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + version: 4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) typescript: specifier: catalog:typescript version: 5.8.2 @@ -1741,7 +1741,7 @@ importers: version: 20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2) '@nx/react': specifier: catalog:nx - version: 20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + version: 20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/webpack': specifier: catalog:nx version: 20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(html-webpack-plugin@5.6.3(@rspack/core@1.2.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) @@ -1780,31 +1780,31 @@ importers: version: 18.3.5(@types/react@18.3.20) '@typescript-eslint/eslint-plugin': specifier: catalog:eslint - version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/parser': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) babel-jest: specifier: catalog:jest version: 29.7.0(@babel/core@7.26.10) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-config-prettier: specifier: catalog:eslint - version: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + version: 10.1.1(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-import: specifier: catalog:eslint - version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: catalog:eslint - version: 6.10.2(eslint@9.15.0(jiti@2.4.2)) + version: 6.10.2(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react: specifier: catalog:eslint - version: 7.37.4(eslint@9.15.0(jiti@2.4.2)) + version: 7.37.4(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) jest-environment-jsdom: specifier: catalog:jest version: 29.7.0 @@ -1851,7 +1851,7 @@ importers: version: 18.3.1(react@18.3.1) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: '@eslint/js': specifier: catalog:eslint @@ -1864,19 +1864,19 @@ importers: version: 18.3.5(@types/react@18.3.20) '@vitejs/plugin-react': specifier: catalog:vite5 - version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 4.3.4(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) cross-env: specifier: catalog:common version: 7.0.3 eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-refresh: specifier: catalog:eslint - version: 0.4.19(eslint@9.15.0(jiti@2.4.2)) + version: 0.4.19(eslint@9.15.0(jiti@2.6.1)) globals: specifier: catalog:vite5 version: 15.15.0 @@ -1885,10 +1885,10 @@ importers: version: 5.8.2 typescript-eslint: specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) vite: specifier: catalog:vite5 - version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) examples/react-vite-mf/remote: dependencies: @@ -1903,7 +1903,7 @@ importers: version: 18.3.1(react@18.3.1) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: '@eslint/js': specifier: catalog:eslint @@ -1916,16 +1916,16 @@ importers: version: 18.3.5(@types/react@18.3.20) '@vitejs/plugin-react': specifier: catalog:vite5 - version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 4.3.4(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-refresh: specifier: catalog:eslint - version: 0.4.19(eslint@9.15.0(jiti@2.4.2)) + version: 0.4.19(eslint@9.15.0(jiti@2.6.1)) globals: specifier: catalog:vite5 version: 15.15.0 @@ -1934,10 +1934,10 @@ importers: version: 5.8.2 typescript-eslint: specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) vite: specifier: catalog:vite5 - version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) examples/react-vite-mf/rspack: dependencies: @@ -1977,13 +1977,13 @@ importers: version: 8.5.3 postcss-loader: specifier: catalog:postcss - version: 8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + version: 8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.9.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) react-refresh: specifier: catalog:react18 version: 0.16.0 tailwindcss: specifier: catalog:tailwind3 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3)) examples/react-vite-mf/webpack: dependencies: @@ -2053,7 +2053,7 @@ importers: version: 4.0.0(webpack@5.99.9) tailwindcss: specifier: catalog:tailwind3 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) typescript: specifier: catalog:typescript version: 5.8.2 @@ -2077,26 +2077,26 @@ importers: version: 18.3.1(react@18.3.1) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.13.13)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: '@eslint/js': specifier: catalog:eslint version: 9.23.0 '@nx/eslint': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/eslint-plugin': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2) '@nx/js': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/react': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) + version: 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/vite': specifier: catalog:nx - version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))(vitest@1.6.1) + version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))(vitest@1.6.1) '@nx/web': specifier: catalog:nx version: 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) @@ -2129,7 +2129,7 @@ importers: version: 18.3.5(@types/react@18.3.20) '@vitejs/plugin-react': specifier: catalog:vite5 - version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) '@vitest/coverage-v8': specifier: catalog:vitest1 version: 1.6.1(vitest@1.6.1) @@ -2138,22 +2138,22 @@ importers: version: 1.6.1(vitest@1.6.1) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-config-prettier: specifier: catalog:eslint - version: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + version: 10.1.1(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-import: specifier: catalog:eslint - version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: catalog:eslint - version: 6.10.2(eslint@9.15.0(jiti@2.4.2)) + version: 6.10.2(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react: specifier: catalog:eslint - version: 7.37.4(eslint@9.15.0(jiti@2.4.2)) + version: 7.37.4(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) jsdom: specifier: ~22.1.0 version: 22.1.0 @@ -2171,13 +2171,13 @@ importers: version: 5.8.2 typescript-eslint: specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) vite: specifier: ^5.4.15 - version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) vitest: specifier: catalog:vitest1 - version: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(happy-dom@17.6.3)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) examples/react-vite-ts: dependencies: @@ -2189,7 +2189,7 @@ importers: version: 18.3.1(react@18.3.1) vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: '@types/react': specifier: catalog:react18 @@ -2199,31 +2199,31 @@ importers: version: 18.3.5(@types/react@18.3.20) '@typescript-eslint/eslint-plugin': specifier: catalog:eslint - version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/parser': specifier: catalog:eslint - version: 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + version: 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@vitejs/plugin-react': specifier: catalog:vite5 - version: 4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 4.3.4(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) eslint-plugin-react-hooks: specifier: catalog:eslint - version: 5.2.0(eslint@9.15.0(jiti@2.4.2)) + version: 5.2.0(eslint@9.15.0(jiti@2.6.1)) eslint-plugin-react-refresh: specifier: catalog:eslint - version: 0.4.19(eslint@9.15.0(jiti@2.4.2)) + version: 0.4.19(eslint@9.15.0(jiti@2.6.1)) typescript: specifier: catalog:typescript version: 5.8.2 vite: specifier: catalog:vite5 - version: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + version: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) vite-plugin-inspect: specifier: catalog:vite5 - version: 0.8.9(rollup@4.37.0)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) + version: 0.8.9(rollup@4.37.0)(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)) examples/rolldown-react: dependencies: @@ -2242,10 +2242,10 @@ importers: version: 19.0.4(@types/react@19.0.12) rolldown: specifier: 1.0.0-beta.3 - version: 1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.8.2) + version: 1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.9.3) zephyr-rolldown-plugin: specifier: catalog:zephyr - version: 0.0.59(@babel/runtime@7.28.4)(typescript@5.8.2) + version: 0.0.59(@babel/runtime@7.28.4)(typescript@5.9.3) examples/rspack-project: dependencies: @@ -2322,27 +2322,27 @@ importers: version: 1.9.5 vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: typescript: specifier: catalog:typescript version: 5.8.2 vite: specifier: catalog:vite6 - version: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) vite-plugin-solid: specifier: catalog:solid - version: 2.11.6(solid-js@1.9.5)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + version: 2.11.6(@testing-library/jest-dom@6.9.1)(solid-js@1.9.5)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) examples/svelte: dependencies: vite-plugin-zephyr: specifier: catalog:zephyr - version: 0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) devDependencies: '@sveltejs/vite-plugin-svelte': specifier: catalog:svelte - version: 5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + version: 5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) '@tsconfig/svelte': specifier: catalog:svelte version: 5.0.4 @@ -2351,13 +2351,61 @@ importers: version: 5.25.3 svelte-check: specifier: catalog:svelte - version: 4.1.5(picomatch@4.0.2)(svelte@5.25.3)(typescript@5.8.2) + version: 4.1.5(picomatch@4.0.3)(svelte@5.25.3)(typescript@5.8.2) typescript: specifier: catalog:typescript version: 5.8.2 vite: specifier: catalog:vite6 - version: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + version: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + + examples/tsdown: + devDependencies: + '@testing-library/jest-dom': + specifier: ^6.6.3 + version: 6.9.1 + '@testing-library/react': + specifier: ^16.3.0 + version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0) + '@types/node': + specifier: ^22.15.17 + version: 22.18.8 + '@types/react': + specifier: ^19.1.3 + version: 19.2.2 + '@types/react-dom': + specifier: ^19.1.4 + version: 19.2.1(@types/react@19.2.2) + '@vitejs/plugin-react': + specifier: ^4.4.1 + version: 4.7.0(rolldown-vite@7.1.16(@types/node@22.18.8)(esbuild@0.25.1)(jiti@2.6.1)(less@4.2.0)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) + bumpp: + specifier: ^10.1.0 + version: 10.3.1(magicast@0.3.5) + happy-dom: + specifier: ^17.4.6 + version: 17.6.3 + react: + specifier: ^19.1.0 + version: 19.2.0 + react-dom: + specifier: ^19.1.0 + version: 19.2.0(react@19.2.0) + tsdown: + specifier: ^0.11.1 + version: 0.11.13(typescript@5.9.3) + typescript: + specifier: ^5.8.3 + version: 5.9.3 + vite: + specifier: npm:rolldown-vite@latest + version: rolldown-vite@7.1.16(@types/node@22.18.8)(esbuild@0.25.1)(jiti@2.6.1)(less@4.2.0)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + vitest: + specifier: ^3.1.3 + version: 3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(happy-dom@17.6.3)(jiti@2.6.1)(jsdom@26.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + zephyr-rolldown-plugin: + specifier: ^0.1.0-next.1 + version: 0.1.0-next.1(@babel/runtime@7.28.4)(encoding@0.1.13)(typescript@5.9.3) examples/turbo-rspack-mf: dependencies: @@ -2393,7 +2441,7 @@ importers: version: 6.30.0(react@18.3.1) tailwindcss: specifier: catalog:tailwind3 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) zephyr-rspack-plugin: specifier: catalog:zephyr version: 0.0.59(@swc/helpers@0.5.17)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -2424,7 +2472,7 @@ importers: version: 0.16.0 ts-node: specifier: catalog:typescript - version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) + version: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2) turbo: specifier: catalog:turbo version: 2.4.4 @@ -2445,7 +2493,7 @@ importers: version: link:../typescript-config tailwindcss: specifier: catalog:tailwind3 - version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + version: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3)) examples/turbo-rspack-mf/packages/typescript-config: {} @@ -2481,7 +2529,7 @@ importers: version: 10.4.21(postcss@8.5.3) eslint: specifier: catalog:eslint - version: 9.15.0(jiti@2.4.2) + version: 9.15.0(jiti@2.6.1) postcss: specifier: catalog:postcss version: 8.5.3 @@ -2531,6 +2579,9 @@ packages: '@adobe/css-tools@4.3.3': resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} + '@adobe/css-tools@4.4.4': + resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==} + '@alloc/quick-lru@5.2.0': resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} @@ -3469,12 +3520,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.25.9': resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.25.9': resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} engines: {node: '>=6.9.0'} @@ -6112,6 +6175,9 @@ packages: '@napi-rs/wasm-runtime@1.0.5': resolution: {integrity: sha512-TBr9Cf9onSAS2LQ2+QHx6XcC6h9+RIzJgbqG3++9TUZSH204AwEy5jg3BTQ0VATsyoGj4ee49tN/y6rvaOOtcg==} + '@napi-rs/wasm-runtime@1.0.6': + resolution: {integrity: sha512-DXj75ewm11LIWUk198QSKUTxjyRjsBwk09MuMk5DGK+GDUtyPhhEHOGP/Xwwj3DjQXXkivoBirmOnKrLfc0+9g==} + '@ngtools/webpack@18.2.16': resolution: {integrity: sha512-5FD7dd3OGTdEqB0eGSeTBp4x6HVBcKcNxgw6CFWfYsQaNcHkG29WrkYHcuXC1cG3Ov+F9j+TJ53UNOigp2denQ==} engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} @@ -6312,9 +6378,19 @@ packages: '@nx/workspace@20.6.4': resolution: {integrity: sha512-HZK0XTJ1flx9NpAFW8ZVeMRrsAEOc4Bj5ZtBR1aVUSC/IzAGQH4dkVZMXX1oG3vBzhuz+4Ery2mfst1YsJNuxQ==} + '@oxc-project/runtime@0.92.0': + resolution: {integrity: sha512-Z7x2dZOmznihvdvCvLKMl+nswtOSVxS2H2ocar+U9xx6iMfTp0VGIrX6a4xB1v80IwOPC7dT1LXIJrY70Xu3Jw==} + engines: {node: ^20.19.0 || >=22.12.0} + '@oxc-project/types@0.46.0': resolution: {integrity: sha512-BHU261xrLasw04d2cToR36F6VV0T7t62rtQUprvBRL4Uru9P23moMkDmZUMSZSQj0fIUTA3oTOTwQ7cc4Av/iw==} + '@oxc-project/types@0.70.0': + resolution: {integrity: sha512-ngyLUpUjO3dpqygSRQDx7nMx8+BmXbWOU4oIwTJFV2MVIDG7knIZwgdwXlQWLg3C3oxg1lS7ppMtPKqKFb7wzw==} + + '@oxc-project/types@0.94.0': + resolution: {integrity: sha512-+UgQT/4o59cZfH6Cp7G0hwmqEQ0wE+AdIwhikdwnhWI9Dp8CgSY081+Q3O67/wq3VJu8mgUEB93J9EHHn70fOw==} + '@oxc-resolver/binding-darwin-arm64@5.0.1': resolution: {integrity: sha512-lY5mi+6ztYGM9tiyMhHbzZteE7LFaexu9PjDL2N0stCNuGkSHO1eeeabi2ckxGWBbu9EW01XovbQqir12NbA6A==} cpu: [arm64] @@ -6762,6 +6838,9 @@ packages: '@polka/url@1.0.0-next.28': resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} + '@quansync/fs@0.1.5': + resolution: {integrity: sha512-lNS9hL2aS2NZgNW7BBj+6EBl4rOf8l+tQ0eRY6JWCI8jI2kc53gSoqbjojU0OnAWhzoXiOjFyGsHcDGePB3lhA==} + '@react-leaflet/core@2.1.0': resolution: {integrity: sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==} peerDependencies: @@ -6782,66 +6861,218 @@ packages: resolution: {integrity: sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA==} engines: {node: '>=14.0.0'} + '@rolldown/binding-android-arm64@1.0.0-beta.42': + resolution: {integrity: sha512-W5ZKF3TP3bOWuBfotAGp+UGjxOkGV7jRmIRbBA7NFjggx7Oi6vOmGDqpHEIX7kDCiry1cnIsWQaxNvWbMdkvzQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + '@rolldown/binding-darwin-arm64@1.0.0-beta.3': resolution: {integrity: sha512-qB1ofY+09nDYYaEi5kVsjqy4cKsVPI9E5bkV46CRrQsTF/BBM29wpvaj8qTRQ41qwInFA5kmqnVVr35yfH7ddw==} cpu: [arm64] os: [darwin] + '@rolldown/binding-darwin-arm64@1.0.0-beta.42': + resolution: {integrity: sha512-abw/wtgJA8OCgaTlL+xJxnN/Z01BwV1rfzIp5Hh9x+IIO6xOBfPsQ0nzi0+rWx3TyZ9FZXyC7bbC+5NpQ9EaXQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-arm64@1.0.0-beta.9': + resolution: {integrity: sha512-geUG/FUpm+membLC0NQBb39vVyOfguYZ2oyXc7emr6UjH6TeEECT4b0CPZXKFnELareTiU/Jfl70/eEgNxyQeA==} + cpu: [arm64] + os: [darwin] + '@rolldown/binding-darwin-x64@1.0.0-beta.3': resolution: {integrity: sha512-Fk+rqyeszMaZK12wItqFDXdUadg+TVQqOPh0fdaCefVebd29N+9fpFrARyo8gReyt/lcnEN4nWgdn7l99R70QA==} cpu: [x64] os: [darwin] + '@rolldown/binding-darwin-x64@1.0.0-beta.42': + resolution: {integrity: sha512-Y/UrZIRVr8CvXVEB88t6PeC46r1K9/QdPEo2ASE/b/KBEyXIx+QbM6kv9QfQVWU2Atly2+SVsQzxQsIvuk3lZQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.0-beta.9': + resolution: {integrity: sha512-7wPXDwcOtv2I+pWTL2UNpNAxMAGukgBT90Jz4DCfwaYdGvQncF7J0S7IWrRVsRFhBavxM+65RcueE3VXw5UIbg==} + cpu: [x64] + os: [darwin] + '@rolldown/binding-freebsd-x64@1.0.0-beta.3': resolution: {integrity: sha512-B7QzJKu53MB/hvwO276AsyxN+p9lfgCkIO94TQB6t3auq3pDCC6u6gdRI1Ydwn6/gpMLiUNCW4mnpxCE5fE5tg==} cpu: [x64] os: [freebsd] + '@rolldown/binding-freebsd-x64@1.0.0-beta.42': + resolution: {integrity: sha512-zRM0oOk7BZiy6DoWBvdV4hyEg+j6+WcBZIMHVirMEZRu8hd18kZdJkg+bjVMfCEhwpWeFUfBfZ1qcaZ5UdYzlQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-freebsd-x64@1.0.0-beta.9': + resolution: {integrity: sha512-agO5mONTNKVrcIt4SRxw5Ni0FOVV3gaH8dIiNp1A4JeU91b9kw7x+JRuNJAQuM2X3pYqVvA6qh13UTNOsaqM/Q==} + cpu: [x64] + os: [freebsd] + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.3': resolution: {integrity: sha512-NB5JrXP5dAigDTbvVc6VWiOY3Rr/0u1pi/9LYoBtMYiST7hYOrBPO9lvDF9w/23yKCr1+8PF4wFGR/YxKTNN5Q==} cpu: [arm] os: [linux] + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.42': + resolution: {integrity: sha512-6RjFaC52QNwo7ilU8C5H7swbGlgfTkG9pudXwzr3VYyT18s0C9gLg3mvc7OMPIGqNxnQ0M5lU8j6aQCk2DTRVg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.9': + resolution: {integrity: sha512-dDNDV9p/8WYDriS9HCcbH6y6+JP38o3enj/pMkdkmkxEnZ0ZoHIfQ9RGYWeRYU56NKBCrya4qZBJx49Jk9LRug==} + cpu: [arm] + os: [linux] + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.3': resolution: {integrity: sha512-bYyZLXzJ2boZ7CdUuCSAaTcWkVKcBUOL+B86zv+tRyrtk4BIpHF+L+vOg5uPD/PHwrIglxAno5MN4NnpkUj5fQ==} cpu: [arm64] os: [linux] + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.42': + resolution: {integrity: sha512-LMYHM5Sf6ROq+VUwHMDVX2IAuEsWTv4SnlFEedBnMGpvRuQ14lCmD4m5Q8sjyAQCgyha9oghdGoK8AEg1sXZKg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.9': + resolution: {integrity: sha512-kZKegmHG1ZvfsFIwYU6DeFSxSIcIliXzeznsJHUo9D9/dlVSDi/PUvsRKcuJkQjZoejM6pk8MHN/UfgGdIhPHw==} + cpu: [arm64] + os: [linux] + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.3': resolution: {integrity: sha512-t/jaaFrCSvwX2075jRfa2bwAcsuTtY1/sIT4XqsDg2MVxWQtaUyBx5Mi0pqZKTjdOPnL+f/zoUC9dxT2lUpNmw==} cpu: [arm64] os: [linux] + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.42': + resolution: {integrity: sha512-/bNTYb9aKNhzdbPn3O4MK2aLv55AlrkUKPE4KNfBYjkoZUfDr4jWp7gsSlvTc5A/99V1RCm9axvt616ZzeXGyA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.9': + resolution: {integrity: sha512-f+VL8mO31pyMJiJPr2aA1ryYONkP2UqgbwK7fKtKHZIeDd/AoUGn3+ujPqDhuy2NxgcJ5H8NaSvDpG1tJMHh+g==} + cpu: [arm64] + os: [linux] + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.3': resolution: {integrity: sha512-EeDNLPU0Xw8ByRWxNLO30AF0fKYkdb/6rH5G073NFBDkj7ggYR/CvsNBjtDeCJ7+I6JG4xUjete2+VeV+GQjiA==} cpu: [x64] os: [linux] + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.42': + resolution: {integrity: sha512-n/SLa4h342oyeGykZdch7Y3GNCNliRPL4k5wkeZ/5eQZs+c6/ZG1SHCJQoy7bZcmxiMyaXs9HoFmv1PEKrZgWg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.9': + resolution: {integrity: sha512-GiUEZ0WPjX5LouDoC3O8aJa4h6BLCpIvaAboNw5JoRour/3dC6rbtZZ/B5FC3/ySsN3/dFOhAH97ylQxoZJi7A==} + cpu: [x64] + os: [linux] + '@rolldown/binding-linux-x64-musl@1.0.0-beta.3': resolution: {integrity: sha512-iTcAj8FKac3nyQhvFuqKt6Xqu9YNDbe1ew6US2OSN4g3zwfujgylaRCitEG+Uzd7AZfSVVLAfqrxKMa36Sj9Mg==} cpu: [x64] os: [linux] + '@rolldown/binding-linux-x64-musl@1.0.0-beta.42': + resolution: {integrity: sha512-4PSd46sFzqpLHSGdaSViAb1mk55sCUMpJg+X8ittXaVocQsV3QLG/uydSH8RyL0ngHX5fy3D70LcCzlB15AgHw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.9': + resolution: {integrity: sha512-AMb0dicw+QHh6RxvWo4BRcuTMgS0cwUejJRMpSyIcHYnKTbj6nUW4HbWNQuDfZiF27l6F5gEwBS+YLUdVzL9vg==} + cpu: [x64] + os: [linux] + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.42': + resolution: {integrity: sha512-BmWoeJJyeZXmZBcfoxG6J9+rl2G7eO47qdTkAzEegj4n3aC6CBIHOuDcbE8BvhZaEjQR0nh0nJrtEDlt65Q7Sw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + '@rolldown/binding-wasm32-wasi@1.0.0-beta.3': resolution: {integrity: sha512-sYgbsbyspvVZ2zplqsTxjf2N3e8UQGQnSsN5u4bMX461gY5vAsjUiA4nf1/ztDBMHWT79lF2QNx4csjnjSxMlA==} engines: {node: '>=14.21.3'} cpu: [wasm32] + '@rolldown/binding-wasm32-wasi@1.0.0-beta.42': + resolution: {integrity: sha512-2Ft32F7uiDTrGZUKws6CLNTlvTWHC33l4vpXrzUucf9rYtUThAdPCOt89Pmn13tNX6AulxjGEP2R0nZjTSW3eQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.9': + resolution: {integrity: sha512-+pdaiTx7L8bWKvsAuCE0HAxP1ze1WOLoWGCawcrZbMSY10dMh2i82lJiH6tXGXbfYYwsNWhWE2NyG4peFZvRfQ==} + engines: {node: '>=14.21.3'} + cpu: [wasm32] + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.3': resolution: {integrity: sha512-qszMtrWybBLTFaew2WgEBRMlz1B/V8XxU87uezXlKcLW36aoRWR8LspZvqqoBkvJzbQtfOgm1HdTIk/v3Rn7QQ==} cpu: [arm64] os: [win32] + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.42': + resolution: {integrity: sha512-hC1kShXW/z221eG+WzQMN06KepvPbMBknF0iGR3VMYJLOe9gwnSTfGxFT5hf8XrPv7CEZqTWRd0GQpkSHRbGsw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.9': + resolution: {integrity: sha512-A7kN248viWvb8eZMzQu024TBKGoyoVYBsDG2DtoP8u2pzwoh5yDqUL291u01o4f8uzpUHq8mfwQJmcGChFu8KQ==} + cpu: [arm64] + os: [win32] + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.3': resolution: {integrity: sha512-J+mzAO68VK91coLVuUln/XN0ummIEOODyupZ2BmXY8suBHPVAyLLAP54rlucBPQmzU8fI6DXM2bl2whZ+KEXpQ==} cpu: [ia32] os: [win32] + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.42': + resolution: {integrity: sha512-AICBYromawouGjj+GS33369E8Vwhy6UwhQEhQ5evfS8jPCsyVvoICJatbDGDGH01dwtVGLD5eDFzPicUOVpe4g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.9': + resolution: {integrity: sha512-DzKN7iEYjAP8AK8F2G2aCej3fk43Y/EQrVrR3gF0XREes56chjQ7bXIhw819jv74BbxGdnpPcslhet/cgt7WRA==} + cpu: [ia32] + os: [win32] + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.3': resolution: {integrity: sha512-r06rAi+1eStgavGnw+2y4F7gpb0w9ocnKk0Ir7LmegLAkMZ/v4Fjo9jZUrLTLtmI36108v1uvUPrIAFzFOWE7g==} cpu: [x64] os: [win32] + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.42': + resolution: {integrity: sha512-XpZ0M+tjoEiSc9c+uZR7FCnOI0uxDRNs1elGOMjeB0pUP1QmvVbZGYNsyLbLoP4u7e3VQN8rie1OQ8/mB6rcJg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.9': + resolution: {integrity: sha512-GMWgTvvbZ8TfBsAiJpoz4SRq3IN3aUMn0rYm8q4I8dcEk4J1uISyfb6ZMzvqW+cvScTWVKWZNqnrmYOKLLUt4w==} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.0-beta.27': + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} + + '@rolldown/pluginutils@1.0.0-beta.42': + resolution: {integrity: sha512-N7pQzk9CyE7q0bBN/q0J8s6Db279r5kUZc6d7/wWRe9/zXqC52HQovVyu6iXPIDY4BEzzgbVLhVFXrOuGJ22ZQ==} + + '@rolldown/pluginutils@1.0.0-beta.9': + resolution: {integrity: sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w==} + '@rollup/plugin-babel@6.0.4': resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} engines: {node: '>=14.0.0'} @@ -8245,6 +8476,10 @@ packages: resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} engines: {node: '>=18'} + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + '@testing-library/react@16.2.0': resolution: {integrity: sha512-2cSskAvA1QNtKc8Y9VJQRv0tm3hLVgxRGDB+KYhIaPQJ1I+RHbhIXcM+zClKXzMes/wshsMVzf4B9vS4IZpqDQ==} engines: {node: '>=18'} @@ -8260,6 +8495,21 @@ packages: '@types/react-dom': optional: true + '@testing-library/react@16.3.0': + resolution: {integrity: sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==} + engines: {node: '>=18'} + peerDependencies: + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + '@tokenizer/token@0.3.0': resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} @@ -8350,6 +8600,9 @@ packages: '@types/chai@4.3.20': resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==} + '@types/chai@5.2.2': + resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} + '@types/connect-history-api-fallback@1.5.4': resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} @@ -8362,6 +8615,9 @@ packages: '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} @@ -8497,6 +8753,9 @@ packages: '@types/node@22.13.13': resolution: {integrity: sha512-ClsL5nMwKaBRwPcCvH8E7+nU4GxHVx1axNvMZTFHMEfNI7oahimt26P5zjVCRrjiIWj6YFXfE1v3dEp94wLcGQ==} + '@types/node@22.18.8': + resolution: {integrity: sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==} + '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -8525,6 +8784,11 @@ packages: peerDependencies: '@types/react': ^19.0.0 + '@types/react-dom@19.2.1': + resolution: {integrity: sha512-/EEvYBdT3BflCWvTMO7YkYBHVE9Ci6XdqZciZANQgKpaiDRGOLIlRo91jbTNRQjgPFWVaRxcYc0luVNFitz57A==} + peerDependencies: + '@types/react': ^19.2.0 + '@types/react-helmet@6.1.11': resolution: {integrity: sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==} @@ -8539,6 +8803,9 @@ packages: '@types/react@19.0.12': resolution: {integrity: sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==} + '@types/react@19.2.2': + resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==} + '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -8698,6 +8965,12 @@ packages: peerDependencies: vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + '@vitejs/plugin-react@4.7.0': + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + '@vitest/coverage-v8@1.6.1': resolution: {integrity: sha512-6YeRZwuO4oTGKxD3bijok756oktHSIm3eczVVzNe3scqzuhLwltIF3S9ZL/vwOVIpURmU6SnZhziXXAfw8/Qlw==} peerDependencies: @@ -8706,15 +8979,41 @@ packages: '@vitest/expect@1.6.1': resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==} + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + '@vitest/runner@1.6.1': resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==} + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + '@vitest/snapshot@1.6.1': resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==} + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + '@vitest/spy@1.6.1': resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==} + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + '@vitest/ui@1.6.1': resolution: {integrity: sha512-xa57bCPGuzEFqGjPs3vVLyqareG8DX0uMkr5U/v5vLv5/ZUrBrPL7gzxzTJedEyZxFMfsozwTIbbYfEQVo3kgg==} peerDependencies: @@ -8723,6 +9022,9 @@ packages: '@vitest/utils@1.6.1': resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==} + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + '@warp-drive/build-config@5.5.0': resolution: {integrity: sha512-l0ZyDsalwcgb9nw02GC8H62fo9E9US42p+5fVQsNOj2oleCb9f3DmLNqcbJG0w22kxJol+GU0YppO8hSqNHL2w==} engines: {node: '>= 18.20.8'} @@ -9093,6 +9395,10 @@ packages: ansicolors@0.2.1: resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==} + ansis@4.2.0: + resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} + engines: {node: '>=14'} + any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -9134,6 +9440,9 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + args-tokenizer@0.3.0: + resolution: {integrity: sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==} + aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} @@ -9225,10 +9534,18 @@ packages: assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + assign-symbols@1.0.0: resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} + ast-kit@2.1.3: + resolution: {integrity: sha512-TH+b3Lv6pUjy/Nu0m6A2JULtdzLpmqF9x1Dhj00ZoEiML8qvVA9j1flkzTKNYgdEhWrjDwtWNpyyCUbfQe514g==} + engines: {node: '>=20.19.0'} + ast-types-flow@0.0.8: resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} @@ -9605,6 +9922,9 @@ packages: bindings@1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + birpc@2.6.1: + resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==} + bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} @@ -9834,6 +10154,11 @@ packages: builtin-status-codes@3.0.0: resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} + bumpp@10.3.1: + resolution: {integrity: sha512-cOKPRFCWvHcYPJQAHN6V7Jp/wAfnyqQRXQ+2fgWIL6Gao20rpu7xQ1cGGo1APOfmbQmmHngEPg9Fy7nJ3giRkQ==} + engines: {node: '>=18'} + hasBin: true + bundle-name@4.1.0: resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} engines: {node: '>=18'} @@ -9845,6 +10170,14 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} + c12@3.3.0: + resolution: {integrity: sha512-K9ZkuyeJQeqLEyqldbYLG3wjqwpw4BVaAqvmxq3GYKK0b1A/yYQdIcJxkzAOWcNVWhJpRXAPfZFueekiY/L8Dw==} + peerDependencies: + magicast: ^0.3.5 + peerDependenciesMeta: + magicast: + optional: true + cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -9954,6 +10287,10 @@ packages: resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} engines: {node: '>=4'} + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} + engines: {node: '>=18'} + chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} @@ -10009,6 +10346,10 @@ packages: check-error@1.0.3: resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + check-more-types@2.24.0: resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} engines: {node: '>= 0.8.0'} @@ -10045,6 +10386,9 @@ packages: resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} engines: {node: '>= 0.10'} + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + cjs-module-lexer@1.4.3: resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} @@ -10278,6 +10622,9 @@ packages: confbox@0.1.8: resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + confbox@0.2.2: + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + configstore@5.0.1: resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} engines: {node: '>=8'} @@ -10293,6 +10640,10 @@ packages: resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} engines: {node: '>= 0.10.0'} + consola@3.4.2: + resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} + engines: {node: ^14.18.0 || >=16.10.0} + console-browserify@1.2.0: resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} @@ -10763,6 +11114,9 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -10973,6 +11327,10 @@ packages: resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} engines: {node: '>=6'} + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + deep-equal@1.0.1: resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} @@ -11071,6 +11429,9 @@ packages: des.js@1.1.0: resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -11130,6 +11491,10 @@ packages: resolution: {integrity: sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==} engines: {node: '>=0.3.1'} + diff@8.0.2: + resolution: {integrity: sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==} + engines: {node: '>=0.3.1'} + diffie-hellman@5.0.3: resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} @@ -11154,6 +11519,9 @@ packages: dom-accessibility-api@0.5.16: resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + dom-converter@0.2.0: resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} @@ -11222,10 +11590,23 @@ packages: resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} engines: {node: '>=12'} + dotenv@17.2.3: + resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==} + engines: {node: '>=12'} + dotenv@8.6.0: resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} engines: {node: '>=10'} + dts-resolver@2.1.2: + resolution: {integrity: sha512-xeXHBQkn2ISSXxbJWD828PFjtyg+/UrMDo7W4Ffcs7+YWCquxU8YjV1KoxuiL+eJ5pg3ll+bC6flVv61L3LKZg==} + engines: {node: '>=20.18.0'} + peerDependencies: + oxc-resolver: '>=11.0.0' + peerDependenciesMeta: + oxc-resolver: + optional: true + dunder-proto@1.0.1: resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} engines: {node: '>= 0.4'} @@ -11428,6 +11809,10 @@ packages: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} + empathic@1.1.0: + resolution: {integrity: sha512-rsPft6CK3eHtrlp9Y5ALBb+hfK+DWnA4WFebbazxjWyx8vSm3rZeoM3z9irsjcqO3PYRzlfv27XIB4tz2DV7RA==} + engines: {node: '>=14'} + encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -11542,6 +11927,9 @@ packages: es-module-lexer@1.6.0: resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + es-object-atoms@1.1.1: resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} engines: {node: '>= 0.4'} @@ -11932,6 +12320,10 @@ packages: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} engines: {node: '>=0.10.0'} + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + engines: {node: '>=12.0.0'} + expect@29.7.0: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -11943,6 +12335,9 @@ packages: resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} engines: {node: '>= 0.10.0'} + exsolve@1.0.7: + resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} + ext-list@2.2.2: resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} engines: {node: '>=0.10.0'} @@ -12054,6 +12449,15 @@ packages: picomatch: optional: true + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + fflate@0.8.2: resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==} @@ -12471,6 +12875,10 @@ packages: getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + giget@2.0.0: + resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} + hasBin: true + git-hooks-list@3.2.0: resolution: {integrity: sha512-ZHG9a1gEhUMX1TvGrLdyWb9kDopCBbTnI8z4JgRMYxsijWipgjSEYoPWqBuIB0DnRnvqlQSEeVmzpeuPm7NdFQ==} @@ -12642,6 +13050,10 @@ packages: engines: {node: '>=0.4.7'} hasBin: true + happy-dom@17.6.3: + resolution: {integrity: sha512-UVIHeVhxmxedbWPCfgS55Jg2rDfwf2BCKeylcPSqazLz5w3Kri7Q4xdBJubsr/+VUzFLh0VjIvh13RaDA2/Xug==} + engines: {node: '>=20.0.0'} + harmony-reflect@1.6.2: resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} @@ -12779,6 +13191,9 @@ packages: resolution: {integrity: sha512-5IAMJOXfpA5nT+K0MNjClchzz0IhBHs2Szl7WFAhrFOsbtQsYmNynFyJRg/a3IPsmCfxcrf8txUGiNShXpK5Rg==} engines: {node: '>=16.0.0'} + hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} + hookified@1.12.0: resolution: {integrity: sha512-hMr1Y9TCLshScrBbV2QxJ9BROddxZ12MX9KsCtuGGy/3SmmN5H1PllKerrVlSotur9dlE8hmUKAOSa3WDzsZmQ==} @@ -13787,6 +14202,10 @@ packages: resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} hasBin: true + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} + hasBin: true + jose@5.10.0: resolution: {integrity: sha512-s+3Al/p9g32Iq+oqXxkW//7jk2Vig6FF1CFqzVXoTUXt2qz89YWbL+OwS17NFYEvxC35n0FKeGO2LGYSxeM2Gg==} @@ -14063,70 +14482,140 @@ packages: webpack: optional: true + lightningcss-android-arm64@1.30.2: + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + lightningcss-darwin-arm64@1.29.3: resolution: {integrity: sha512-fb7raKO3pXtlNbQbiMeEu8RbBVHnpyqAoxTyTRMEWFQWmscGC2wZxoHzZ+YKAepUuKT9uIW5vL2QbFivTgprZg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] + lightningcss-darwin-arm64@1.30.2: + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + lightningcss-darwin-x64@1.29.3: resolution: {integrity: sha512-KF2XZ4ZdmDGGtEYmx5wpzn6u8vg7AdBHaEOvDKu8GOs7xDL/vcU2vMKtTeNe1d4dogkDdi3B9zC77jkatWBwEQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] + lightningcss-darwin-x64@1.30.2: + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + lightningcss-freebsd-x64@1.29.3: resolution: {integrity: sha512-VUWeVf+V1UM54jv9M4wen9vMlIAyT69Krl9XjI8SsRxz4tdNV/7QEPlW6JASev/pYdiynUCW0pwaFquDRYdxMw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] + lightningcss-freebsd-x64@1.30.2: + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + lightningcss-linux-arm-gnueabihf@1.29.3: resolution: {integrity: sha512-UhgZ/XVNfXQVEJrMIWeK1Laj8KbhjbIz7F4znUk7G4zeGw7TRoJxhb66uWrEsonn1+O45w//0i0Fu0wIovYdYg==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] + lightningcss-linux-arm-gnueabihf@1.30.2: + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + lightningcss-linux-arm64-gnu@1.29.3: resolution: {integrity: sha512-Pqau7jtgJNmQ/esugfmAT1aCFy/Gxc92FOxI+3n+LbMHBheBnk41xHDhc0HeYlx9G0xP5tK4t0Koy3QGGNqypw==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + lightningcss-linux-arm64-gnu@1.30.2: + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + lightningcss-linux-arm64-musl@1.29.3: resolution: {integrity: sha512-dxakOk66pf7KLS7VRYFO7B8WOJLecE5OPL2YOk52eriFd/yeyxt2Km5H0BjLfElokIaR+qWi33gB8MQLrdAY3A==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + lightningcss-linux-arm64-musl@1.30.2: + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + lightningcss-linux-x64-gnu@1.29.3: resolution: {integrity: sha512-ySZTNCpbfbK8rqpKJeJR2S0g/8UqqV3QnzcuWvpI60LWxnFN91nxpSSwCbzfOXkzKfar9j5eOuOplf+klKtINg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + lightningcss-linux-x64-gnu@1.30.2: + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + lightningcss-linux-x64-musl@1.29.3: resolution: {integrity: sha512-3pVZhIzW09nzi10usAXfIGTTSTYQ141dk88vGFNCgawIzayiIzZQxEcxVtIkdvlEq2YuFsL9Wcj/h61JHHzuFQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + lightningcss-linux-x64-musl@1.30.2: + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + lightningcss-win32-arm64-msvc@1.29.3: resolution: {integrity: sha512-VRnkAvtIkeWuoBJeGOTrZxsNp4HogXtcaaLm8agmbYtLDOhQdpgxW6NjZZjDXbvGF+eOehGulXZ3C1TiwHY4QQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] + lightningcss-win32-arm64-msvc@1.30.2: + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + lightningcss-win32-x64-msvc@1.29.3: resolution: {integrity: sha512-IszwRPu2cPnDQsZpd7/EAr0x2W7jkaWqQ1SwCVIZ/tSbZVXPLt6k8s6FkcyBjViCzvB5CW0We0QbbP7zp2aBjQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] + lightningcss-win32-x64-msvc@1.30.2: + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + lightningcss@1.29.3: resolution: {integrity: sha512-GlOJwTIP6TMIlrTFsxTerwC0W6OpQpCGuX1ECRLBUVRh6fpJH3xTqjCjRgQHTb4ZXexH9rtHou1Lf03GKzmhhQ==} engines: {node: '>= 12.0.0'} + lightningcss@1.30.2: + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} + engines: {node: '>= 12.0.0'} + lilconfig@2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -14318,6 +14807,9 @@ packages: loupe@2.3.7: resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} + lower-case-first@1.0.2: resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} @@ -14725,6 +15217,10 @@ packages: resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + mini-css-extract-plugin@2.4.7: resolution: {integrity: sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==} engines: {node: '>= 12.13.0'} @@ -14987,6 +15483,9 @@ packages: engines: {node: '>=10.5.0'} deprecated: Use your platform's native DOMException instead + node-fetch-native@1.6.7: + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -15171,6 +15670,11 @@ packages: '@swc/core': optional: true + nypm@0.6.2: + resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -15234,6 +15738,9 @@ packages: obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + on-finished@2.3.0: resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} @@ -15439,6 +15946,9 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + package-manager-detector@1.4.0: + resolution: {integrity: sha512-rRZ+pR1Usc+ND9M2NkmCvE/LYJS+8ORVV9X0KuNSY/gFsp7RBHJM/ADh9LYq4Vvfq6QkKrW6/weuh8SMEtN5gw==} + pacote@20.0.0: resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==} engines: {node: ^18.17.0 || >=20.5.0} @@ -15607,6 +16117,10 @@ packages: pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + pbkdf2@3.1.2: resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} engines: {node: '>=0.12'} @@ -15624,6 +16138,9 @@ packages: perfect-debounce@1.0.0: resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + perfect-debounce@2.0.0: + resolution: {integrity: sha512-fkEH/OBiKrqqI/yIgjR92lMfs2K8105zt/VT6+7eTjNwisrsh47CeIED9z58zI7DfKdH3uHAn25ziRZn3kgAow==} + performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} @@ -15641,6 +16158,10 @@ packages: resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} engines: {node: '>=12'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + pify@2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -15688,6 +16209,9 @@ packages: pkg-types@1.3.1: resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} + pkg-up@2.0.0: resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==} engines: {node: '>=4'} @@ -16425,6 +16949,9 @@ packages: resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==} engines: {node: '>=0.6'} + quansync@0.2.11: + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} + query-string@9.1.1: resolution: {integrity: sha512-MWkCOVIcJP9QSKU52Ngow6bsAWAPlPK2MludXvcrS2bGZSl+T1qX9MZvRIkqUIkGLJquMJHWfsT6eRqUpp4aWg==} engines: {node: '>=18'} @@ -16478,6 +17005,9 @@ packages: resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} engines: {node: '>= 0.8'} + rc9@2.1.2: + resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} + rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true @@ -16498,6 +17028,11 @@ packages: peerDependencies: react: ^19.0.0 + react-dom@19.2.0: + resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} + peerDependencies: + react: ^19.2.0 + react-error-boundary@4.1.2: resolution: {integrity: sha512-GQDxZ5Jd+Aq/qUxbCm1UtzmL/s++V7zKgE8yMktJiCQXCCFZnMZh9ng+6/Ne6PjNSXH0L9CjeOEREfRnq6Duag==} peerDependencies: @@ -16657,6 +17192,10 @@ packages: resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} engines: {node: '>=0.10.0'} + react@19.2.0: + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -16694,6 +17233,10 @@ packages: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + redeyed@1.0.1: resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==} @@ -16960,6 +17503,62 @@ packages: ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + rolldown-plugin-dts@0.13.14: + resolution: {integrity: sha512-wjNhHZz9dlN6PTIXyizB6u/mAg1wEFMW9yw7imEVe3CxHSRnNHVyycIX0yDEOVJfDNISLPbkCIPEpFpizy5+PQ==} + engines: {node: '>=20.18.0'} + peerDependencies: + '@typescript/native-preview': '>=7.0.0-dev.20250601.1' + rolldown: ^1.0.0-beta.9 + typescript: ^5.0.0 + vue-tsc: ^2.2.0 || ^3.0.0 + peerDependenciesMeta: + '@typescript/native-preview': + optional: true + typescript: + optional: true + vue-tsc: + optional: true + + rolldown-vite@7.1.16: + resolution: {integrity: sha512-cK6tCmZyEC0KRAcXTjQ+ara+wkqmaE7WUoI0ZfZzDuvaRaZ3mtvbhTJc4cH+PjKRok++++Z1bZZaNlf3+SnnGA==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + esbuild: ^0.25.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + rolldown@1.0.0-beta.3: resolution: {integrity: sha512-DBpF1K8tSwU/0dQ7zL9BYcje0/GjO5lgfdEW0rHHFfGjGDh8TBVNlokfEXtdt/IoJOiTdtySfsrgarLJkZmZTQ==} hasBin: true @@ -16969,6 +17568,20 @@ packages: '@babel/runtime': optional: true + rolldown@1.0.0-beta.42: + resolution: {integrity: sha512-xaPcckj+BbJhYLsv8gOqezc8EdMcKKe/gk8v47B0KPvgABDrQ0qmNPAiT/gh9n9Foe0bUkEv2qzj42uU5q1WRg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rolldown@1.0.0-beta.9: + resolution: {integrity: sha512-ZgZky52n6iF0UainGKjptKGrOG4Con2S5sdc4C4y2Oj25D5PHAY8Y8E5f3M2TSd/zlhQs574JlMeTe3vREczSg==} + hasBin: true + peerDependencies: + '@oxc-project/runtime': 0.70.0 + peerDependenciesMeta: + '@oxc-project/runtime': + optional: true + rollup-plugin-postcss@4.0.2: resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} engines: {node: '>=10'} @@ -17443,6 +18056,9 @@ packages: scheduler@0.25.0: resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + schema-utils@2.7.1: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} @@ -17506,6 +18122,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -17903,6 +18524,9 @@ packages: std-env@3.8.1: resolution: {integrity: sha512-vj5lIj3Mwf9D79hBkltk5qmkFI+biIKWS2IBxEyEU3AX1tUf7AoL8nSazCOiiqQsGKIq01SClsKEzweu34uwvA==} + std-env@3.9.0: + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} @@ -18020,6 +18644,10 @@ packages: resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} engines: {node: '>=12'} + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + strip-json-comments@2.0.1: resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} engines: {node: '>=0.10.0'} @@ -18031,6 +18659,9 @@ packages: strip-literal@2.1.1: resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} + strip-literal@3.1.0: + resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==} + strtok3@9.1.1: resolution: {integrity: sha512-FhwotcEqjr241ZbjFzjlIYg6c5/L/s4yBGWSMvJ9UoExiSqL+FnFA/CaeZx17WGaZMS/4SOZp8wH18jSS4R4lw==} engines: {node: '>=16'} @@ -18356,6 +18987,12 @@ packages: tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyexec@1.0.1: + resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} + tinyglobby@0.2.12: resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} engines: {node: '>=12.0.0'} @@ -18364,6 +19001,10 @@ packages: resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} engines: {node: '>=12.0.0'} + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + tinygradient@1.1.5: resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==} @@ -18371,10 +19012,22 @@ packages: resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} engines: {node: '>=14.0.0'} + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + tinyspy@2.2.1: resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} engines: {node: '>=14.0.0'} + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} + engines: {node: '>=14.0.0'} + title-case@2.1.1: resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} @@ -18602,6 +19255,25 @@ packages: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} + tsdown@0.11.13: + resolution: {integrity: sha512-VSfoNm8MJXFdg7PJ4p2javgjMRiQQHpkP9N3iBBTrmCixcT6YZ9ZtqYMW3NDHczqR0C0Qnur1HMQr1ZfZcmrng==} + engines: {node: '>=18.0.0'} + hasBin: true + peerDependencies: + publint: ^0.3.0 + typescript: ^5.0.0 + unplugin-lightningcss: ^0.4.0 + unplugin-unused: ^0.5.0 + peerDependenciesMeta: + publint: + optional: true + typescript: + optional: true + unplugin-lightningcss: + optional: true + unplugin-unused: + optional: true + tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} @@ -18741,6 +19413,11 @@ packages: engines: {node: '>=14.17'} hasBin: true + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + uc.micro@2.1.0: resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} @@ -18763,6 +19440,9 @@ packages: unbzip2-stream@1.4.3: resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} + unconfig@7.3.3: + resolution: {integrity: sha512-QCkQoOnJF8L107gxfHL0uavn7WD9b3dpBcFX6HtfQYmjw2YzWxGuFQ0N0J6tE9oguCBJn9KOvfqYDCMPHIZrBA==} + underscore.string@3.3.6: resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==} @@ -18772,6 +19452,9 @@ packages: undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} @@ -19035,6 +19718,11 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + vite-plugin-inspect@0.8.9: resolution: {integrity: sha512-22/8qn+LYonzibb1VeFZmISdVao5kC22jmEKm24vfFE8siEn47EpVcCLYMv6iKOYMJfjSvSJfueOwcFCkUnV3A==} engines: {node: '>=14'} @@ -19202,6 +19890,34 @@ packages: jsdom: optional: true + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + vm-browserify@1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} @@ -19654,6 +20370,11 @@ packages: engines: {node: '>= 14'} hasBin: true + yaml@2.8.1: + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} @@ -19692,9 +20413,15 @@ packages: zephyr-agent@0.0.59: resolution: {integrity: sha512-rb/cIgz2rkHlfH8Rp87xu/+UOUlpRwz2d8IzleVJCHI1XbnX9WHkjdNOEbGbHCP+OEfOwDWuoVVTsd1kJ9UGzA==} + zephyr-agent@0.1.0-next.1: + resolution: {integrity: sha512-MdTnHV5QUwAqWhzW93zd7RQxVDaxmJT7tbzodxFTfutNPAfwhURMW4t1PRW6B/eqfJ79v76uO+M1e3VQFtiG8Q==} + zephyr-edge-contract@0.0.59: resolution: {integrity: sha512-sVmrKfaT/QwnZ21LQGAoaL3wgzlhilL/l1Jc2mmjm5XHRAQV2MrL4wQVJHriMl35A+MxYw0mZcjY5cZ7yQyqlQ==} + zephyr-edge-contract@0.1.0-next.1: + resolution: {integrity: sha512-Ly6lnkR5HKWKZMx7ezMoYphxVDcwgvs6X3nXX6+5mniS2KSZecbNw1gQF2q1kusFhcOCXxitGctt5vZE4DfENA==} + zephyr-modernjs-plugin@0.0.59: resolution: {integrity: sha512-JUdCsN7BKkroTa0c89BPjB4Y1+4V4JQBzQpQpUZxCSw4XH5gjWXGnCu097Jt63Rhp0MEH/GM1pgmI2WRu8kmCg==} peerDependencies: @@ -19709,6 +20436,9 @@ packages: zephyr-rolldown-plugin@0.0.59: resolution: {integrity: sha512-UJpxtbgSJFQEn69ZDNO6nede4jW4UcFcI2z4gq8VIiH8dXk2ib5UQ7oq9IEW5WKuFFPnIkMrgmi3npWxVDXiyA==} + zephyr-rolldown-plugin@0.1.0-next.1: + resolution: {integrity: sha512-vAnFvepQWSTrUK1mg4Kgy7yewcHcciMsYUJutP4bPSCPxXvy/GxGdYaCvAL7kpYh47i6AglX1ulScNUhqZEAzw==} + zephyr-rsbuild-plugin@0.0.59: resolution: {integrity: sha512-A+5XekoxKqy5AofGq8IHmj8MXNtVeJfuIpvGkwBQw6HvPR8UdBgngqhWgpN5dNQMHuSi68y+6YFnnV8nXKEBAg==} peerDependencies: @@ -19757,6 +20487,8 @@ snapshots: '@adobe/css-tools@4.3.3': {} + '@adobe/css-tools@4.4.4': {} + '@alloc/quick-lru@5.2.0': {} '@ampproject/remapping@2.3.0': @@ -19764,13 +20496,13 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@analogjs/vite-plugin-angular@1.14.1(@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2))(@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.13.13)(chokidar@4.0.3)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.7.0))': + '@analogjs/vite-plugin-angular@1.14.1(@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2))(@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.18.8)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.8.1))': dependencies: ts-morph: 21.0.1 vfile: 6.0.3 optionalDependencies: - '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2) - '@angular/build': 19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.13.13)(chokidar@4.0.3)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.7.0) + '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2) + '@angular/build': 19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.18.8)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.8.1) '@angular-builders/common@2.0.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)': dependencies: @@ -19784,11 +20516,11 @@ snapshots: - chokidar - typescript - '@angular-builders/custom-webpack@18.0.0(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2)': + '@angular-builders/custom-webpack@18.0.0(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2)': dependencies: '@angular-builders/common': 2.0.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) '@angular-devkit/architect': 0.1802.16(chokidar@4.0.3) - '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) + '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) '@angular-devkit/core': 18.2.16(chokidar@4.0.3) '@angular/compiler-cli': 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) lodash: 4.17.21 @@ -19838,13 +20570,13 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2)': + '@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1802.16(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.1802.16(chokidar@4.0.3)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@angular-devkit/build-webpack': 0.1802.16(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) '@angular-devkit/core': 18.2.16(chokidar@4.0.3) - '@angular/build': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(chokidar@4.0.3)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.31.6)(typescript@5.8.2) + '@angular/build': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(terser@5.31.6)(typescript@5.8.2) '@angular/compiler-cli': 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -19897,16 +20629,16 @@ snapshots: tslib: 2.6.3 typescript: 5.8.2 watchpack: 2.4.1 - webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0) + webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17)) webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) optionalDependencies: esbuild: 0.23.0 - jest: 29.7.0(@types/node@22.13.13)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + jest: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) jest-environment-jsdom: 29.7.0 - tailwindcss: 4.1.4 + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -19924,15 +20656,14 @@ snapshots: - uglify-js - utf-8-validate - webpack-cli - optional: true - '@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2)': + '@angular-devkit/build-angular@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(chokidar@4.0.3)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(typescript@5.8.2)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1802.16(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.1802.16(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@angular-devkit/build-webpack': 0.1802.16(chokidar@4.0.3)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) '@angular-devkit/core': 18.2.16(chokidar@4.0.3) - '@angular/build': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(terser@5.31.6)(typescript@5.8.2) + '@angular/build': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.18.8)(chokidar@4.0.3)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.31.6)(typescript@5.8.2) '@angular/compiler-cli': 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -19985,16 +20716,16 @@ snapshots: tslib: 2.6.3 typescript: 5.8.2 watchpack: 2.4.1 - webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17)) + webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0) webpack-dev-middleware: 7.4.2(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) webpack-dev-server: 5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) optionalDependencies: esbuild: 0.23.0 - jest: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + jest: 29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) jest-environment-jsdom: 29.7.0 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + tailwindcss: 4.1.4 transitivePeerDependencies: - '@rspack/core' - '@swc/core' @@ -20012,6 +20743,7 @@ snapshots: - uglify-js - utf-8-validate - webpack-cli + optional: true '@angular-devkit/build-webpack@0.1802.16(chokidar@4.0.3)(webpack-dev-server@5.0.4(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': dependencies: @@ -20076,37 +20808,37 @@ snapshots: '@angular-eslint/bundled-angular-compiler@18.4.3': {} - '@angular-eslint/eslint-plugin-template@18.4.3(@typescript-eslint/types@8.28.0)(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@angular-eslint/eslint-plugin-template@18.4.3(@typescript-eslint/types@8.28.0)(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/types': 8.28.0 - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) aria-query: 5.3.2 axobject-query: 4.1.0 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 - '@angular-eslint/eslint-plugin@18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@angular-eslint/eslint-plugin@18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.15.0(jiti@2.4.2) + '@angular-eslint/utils': 18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 - '@angular-eslint/template-parser@18.4.3(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@angular-eslint/template-parser@18.4.3(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) eslint-scope: 8.3.0 typescript: 5.8.2 - '@angular-eslint/utils@18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@angular-eslint/utils@18.4.3(@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@angular-eslint/bundled-angular-compiler': 18.4.3 - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.15.0(jiti@2.4.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 '@angular/animations@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))': @@ -20114,7 +20846,7 @@ snapshots: '@angular/core': 19.2.4(rxjs@7.8.2)(zone.js@0.15.0) tslib: 2.8.1 - '@angular/build@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(chokidar@4.0.3)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.31.6)(typescript@5.8.2)': + '@angular/build@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(terser@5.31.6)(typescript@5.8.2)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1802.16(chokidar@4.0.3) @@ -20124,7 +20856,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) '@inquirer/confirm': 3.1.22 - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6)) browserslist: 4.24.4 critters: 0.0.24 esbuild: 0.23.0 @@ -20141,12 +20873,12 @@ snapshots: sass: 1.77.6 semver: 7.6.3 typescript: 5.8.2 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) watchpack: 2.4.1 optionalDependencies: less: 4.2.0 postcss: 8.4.41 - tailwindcss: 4.1.4 + tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) transitivePeerDependencies: - '@types/node' - chokidar @@ -20156,9 +20888,8 @@ snapshots: - sugarss - supports-color - terser - optional: true - '@angular/build@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(terser@5.31.6)(typescript@5.8.2)': + '@angular/build@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@types/node@22.18.8)(chokidar@4.0.3)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.4.41)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.31.6)(typescript@5.8.2)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1802.16(chokidar@4.0.3) @@ -20168,7 +20899,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2) '@inquirer/confirm': 3.1.22 - '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6)) + '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6)) browserslist: 4.24.4 critters: 0.0.24 esbuild: 0.23.0 @@ -20185,12 +20916,12 @@ snapshots: sass: 1.77.6 semver: 7.6.3 typescript: 5.8.2 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) + vite: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) watchpack: 2.4.1 optionalDependencies: less: 4.2.0 postcss: 8.4.41 - tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + tailwindcss: 4.1.4 transitivePeerDependencies: - '@types/node' - chokidar @@ -20200,8 +20931,9 @@ snapshots: - sugarss - supports-color - terser + optional: true - '@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.13.13)(chokidar@4.0.3)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.7.0)': + '@angular/build@19.2.5(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@angular/compiler@19.2.4)(@types/node@22.18.8)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(postcss@8.5.6)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@4.1.4)(terser@5.39.0)(tsx@4.20.5)(typescript@5.8.2)(yaml@2.8.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.5(chokidar@4.0.3) @@ -20211,8 +20943,8 @@ snapshots: '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) - '@inquirer/confirm': 5.1.6(@types/node@22.13.13) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + '@inquirer/confirm': 5.1.6(@types/node@22.18.8) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) beasties: 0.2.0 browserslist: 4.24.4 esbuild: 0.25.1 @@ -20230,7 +20962,7 @@ snapshots: semver: 7.7.1 source-map-support: 0.5.21 typescript: 5.8.2 - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) watchpack: 2.4.2 optionalDependencies: less: 4.2.0 @@ -20361,16 +21093,16 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 + '@babel/generator': 7.28.3 '@babel/helper-compilation-targets': 7.27.0 '@babel/helper-module-transforms': 7.26.0(@babel/core@7.25.2) '@babel/helpers': 7.27.0 - '@babel/parser': 7.27.0 + '@babel/parser': 7.28.4 '@babel/template': 7.27.0 '@babel/traverse': 7.27.0(supports-color@5.5.0) - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 convert-source-map: 2.0.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -20390,7 +21122,7 @@ snapshots: '@babel/traverse': 7.27.0(supports-color@5.5.0) '@babel/types': 7.27.0 convert-source-map: 2.0.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -20410,7 +21142,7 @@ snapshots: '@babel/traverse': 7.27.0(supports-color@5.5.0) '@babel/types': 7.27.0 convert-source-map: 2.0.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -20430,33 +21162,33 @@ snapshots: '@babel/types': 7.28.4 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/eslint-parser@7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.4.2))': + '@babel/eslint-parser@7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.6.1))': dependencies: '@babel/core': 7.28.4 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 semver: 6.3.1 '@babel/generator@7.26.10': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 '@babel/generator@7.27.0': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.1.0 @@ -20471,7 +21203,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@babel/helper-annotate-as-pure@7.25.9': dependencies: @@ -20538,7 +21270,7 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-compilation-targets': 7.27.0 '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -20549,7 +21281,7 @@ snapshots: '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.0 '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -20560,7 +21292,7 @@ snapshots: '@babel/core': 7.28.4 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.3 + debug: 4.4.3(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -20716,7 +21448,7 @@ snapshots: '@babel/helpers@7.27.0': dependencies: '@babel/template': 7.27.0 - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@babel/helpers@7.28.4': dependencies: @@ -20725,7 +21457,7 @@ snapshots: '@babel/parser@7.27.0': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@babel/parser@7.28.4': dependencies: @@ -20912,12 +21644,12 @@ snapshots: '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.28.4)': dependencies: '@babel/core': 7.28.4 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.10)': dependencies: @@ -20942,7 +21674,7 @@ snapshots: '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)': dependencies: '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)': dependencies: @@ -21072,12 +21804,12 @@ snapshots: '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.28.4)': dependencies: '@babel/core': 7.28.4 - '@babel/helper-plugin-utils': 7.26.5 + '@babel/helper-plugin-utils': 7.27.1 '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)': dependencies: @@ -21632,11 +22364,21 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.26.5 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.26.5 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': + dependencies: + '@babel/core': 7.28.4 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 @@ -22099,8 +22841,8 @@ snapshots: '@babel/template@7.27.0': dependencies: '@babel/code-frame': 7.26.2 - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@babel/template@7.27.2': dependencies: @@ -22111,11 +22853,11 @@ snapshots: '@babel/traverse@7.27.0(supports-color@5.5.0)': dependencies: '@babel/code-frame': 7.26.2 - '@babel/generator': 7.27.0 - '@babel/parser': 7.27.0 + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.4 '@babel/template': 7.27.0 - '@babel/types': 7.27.0 - debug: 4.4.0(supports-color@5.5.0) + '@babel/types': 7.28.4 + debug: 4.4.3(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -22128,7 +22870,7 @@ snapshots: '@babel/parser': 7.28.4 '@babel/template': 7.27.2 '@babel/types': 7.28.4 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -22259,6 +23001,10 @@ snapshots: dependencies: postcss: 8.5.4 + '@csstools/utilities@1.0.0(postcss@8.5.6)': + dependencies: + postcss: 8.5.6 + '@cypress/request@3.0.8': dependencies: aws-sign2: 0.7.0 @@ -22526,7 +23272,7 @@ snapshots: broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 chalk: 4.1.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) ember-source: 6.1.0-beta.1(@glimmer/component@2.0.0)(rsvp@4.8.5)(webpack@5.99.9) fast-sourcemap-concat: 2.1.1 fs-extra: 9.1.0 @@ -22568,7 +23314,7 @@ snapshots: broccoli-persistent-filter: 3.1.3 broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) escape-string-regexp: 4.0.0 fast-sourcemap-concat: 2.1.1 fs-extra: 9.1.0 @@ -22621,7 +23367,7 @@ snapshots: '@embroider/shared-internals@2.9.1': dependencies: babel-import-util: 2.1.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) ember-rfc176-data: 0.3.18 fs-extra: 9.1.0 is-subdir: 1.2.0 @@ -22638,7 +23384,7 @@ snapshots: '@embroider/shared-internals@3.0.0': dependencies: babel-import-util: 3.0.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) ember-rfc176-data: 0.3.18 fs-extra: 9.1.0 is-subdir: 1.2.0 @@ -22653,7 +23399,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@embroider/vite@1.2.0(@embroider/core@4.2.0)(rollup@4.37.0)(vite@6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0))': + '@embroider/vite@1.2.0(@embroider/core@4.2.0)(rollup@4.37.0)(vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': dependencies: '@babel/core': 7.28.4 '@embroider/core': 4.2.0 @@ -22664,14 +23410,14 @@ snapshots: browserslist: 4.24.4 browserslist-to-esbuild: 2.1.1(browserslist@4.24.4) content-tag: 3.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) fast-glob: 3.3.3 fs-extra: 10.1.0 jsdom: 25.0.1 send: 0.18.0 source-map-url: 0.4.1 terser: 5.39.0 - vite: 6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) transitivePeerDependencies: - '@glint/template' - bufferutil @@ -23129,19 +23875,19 @@ snapshots: '@esbuild/win32-x64@0.25.1': optional: true - '@eslint-community/eslint-utils@4.5.1(eslint@9.15.0(jiti@2.4.2))': + '@eslint-community/eslint-utils@4.5.1(eslint@9.15.0(jiti@2.6.1))': dependencies: - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.5.1(eslint@9.35.0(jiti@2.4.2))': + '@eslint-community/eslint-utils@4.5.1(eslint@9.35.0(jiti@2.6.1))': dependencies: - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.0(eslint@9.35.0(jiti@2.4.2))': + '@eslint-community/eslint-utils@4.9.0(eslint@9.35.0(jiti@2.6.1))': dependencies: - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} @@ -23149,7 +23895,7 @@ snapshots: '@eslint/config-array@0.19.2': dependencies: '@eslint/object-schema': 2.1.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -23157,7 +23903,7 @@ snapshots: '@eslint/config-array@0.21.0': dependencies: '@eslint/object-schema': 2.1.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -23179,7 +23925,7 @@ snapshots: '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) espree: 10.3.0 globals: 14.0.0 ignore: 5.3.2 @@ -23518,12 +24264,12 @@ snapshots: '@inquirer/core': 9.2.1 '@inquirer/type': 1.5.5 - '@inquirer/confirm@5.1.6(@types/node@22.13.13)': + '@inquirer/confirm@5.1.6(@types/node@22.18.8)': dependencies: - '@inquirer/core': 10.1.9(@types/node@22.13.13) - '@inquirer/type': 3.0.5(@types/node@22.13.13) + '@inquirer/core': 10.1.9(@types/node@22.18.8) + '@inquirer/type': 3.0.5(@types/node@22.18.8) optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@inquirer/confirm@5.1.8(@types/node@22.13.13)': dependencies: @@ -23545,12 +24291,25 @@ snapshots: optionalDependencies: '@types/node': 22.13.13 + '@inquirer/core@10.1.9(@types/node@22.18.8)': + dependencies: + '@inquirer/figures': 1.0.11 + '@inquirer/type': 3.0.5(@types/node@22.18.8) + ansi-escapes: 4.3.2 + cli-width: 4.1.0 + mute-stream: 2.0.0 + signal-exit: 4.1.0 + wrap-ansi: 6.2.0 + yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 22.18.8 + '@inquirer/core@9.2.1': dependencies: '@inquirer/figures': 1.0.11 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -23576,12 +24335,12 @@ snapshots: optionalDependencies: '@types/node': 22.13.13 - '@inquirer/external-editor@1.0.2(@types/node@22.13.13)': + '@inquirer/external-editor@1.0.2(@types/node@22.18.8)': dependencies: chardet: 2.1.0 iconv-lite: 0.7.0 optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@inquirer/figures@1.0.11': {} @@ -23661,6 +24420,10 @@ snapshots: optionalDependencies: '@types/node': 22.13.13 + '@inquirer/type@3.0.5(@types/node@22.18.8)': + optionalDependencies: + '@types/node': 22.18.8 + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -23687,7 +24450,7 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -23700,14 +24463,14 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)) + jest-config: 29.7.0(@types/node@22.18.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -23737,14 +24500,14 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + jest-config: 29.7.0(@types/node@22.18.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -23774,14 +24537,51 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + jest-config: 29.7.0(@types/node@22.18.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 + micromatch: 4.0.8 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + optionalDependencies: + node-notifier: 10.0.1 + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + - ts-node + + '@jest/core@29.7.0(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2))': + dependencies: + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0(node-notifier@10.0.1) + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 22.18.8 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.9.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -23803,12 +24603,13 @@ snapshots: - babel-plugin-macros - supports-color - ts-node + optional: true '@jest/environment@29.7.0': dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -23826,7 +24627,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 22.13.13 + '@types/node': 22.18.8 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -23848,7 +24649,7 @@ snapshots: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -23920,7 +24721,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -24131,7 +24932,7 @@ snapshots: '@mdx-js/react@2.3.0(react@18.3.1)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 19.0.12 + '@types/react': 19.2.2 react: 18.3.1 '@mischnic/json-sourcemap@0.1.1': @@ -24350,7 +25151,7 @@ snapshots: '@babel/preset-env': 7.26.9(@babel/core@7.28.4) '@babel/preset-typescript': 7.27.0(@babel/core@7.28.4) '@babel/runtime': 7.28.4 - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@rsbuild/plugin-babel': 1.0.4(@rsbuild/core@1.2.19) '@swc/helpers': 0.5.13 '@types/babel__core': 7.20.5 @@ -24753,7 +25554,7 @@ snapshots: dependencies: '@babel/core': 7.28.4 '@babel/preset-react': 7.26.3(@babel/core@7.28.4) - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@modern-js/babel-preset': 2.65.5(@rsbuild/core@1.2.19) '@modern-js/flight-server-transform-plugin': 2.65.5 '@modern-js/utils': 2.65.5 @@ -24778,13 +25579,13 @@ snapshots: '@rsbuild/webpack': 1.2.3(@rsbuild/core@1.2.19)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19) '@swc/core': 1.10.18(@swc/helpers@0.5.13) '@swc/helpers': 0.5.13 - autoprefixer: 10.4.21(postcss@8.5.4) + autoprefixer: 10.4.21(postcss@8.5.6) babel-loader: 9.2.1(@babel/core@7.28.4)(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19)) babel-plugin-import: 1.13.8 babel-plugin-styled-components: 1.13.3(styled-components@5.3.11(@babel/core@7.28.4)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0)) babel-plugin-transform-react-remove-prop-types: 0.4.24 browserslist: 4.24.4 - cssnano: 6.1.2(postcss@8.5.4) + cssnano: 6.1.2(postcss@8.5.6) es-module-lexer: 1.6.0 glob: 9.3.5 html-minifier-terser: 7.2.0 @@ -24793,14 +25594,14 @@ snapshots: lodash: 4.17.21 magic-string: 0.30.17 picocolors: 1.1.1 - postcss: 8.5.4 - postcss-custom-properties: 13.3.12(postcss@8.5.4) - postcss-flexbugs-fixes: 5.0.2(postcss@8.5.4) - postcss-font-variant: 5.0.0(postcss@8.5.4) - postcss-initial: 4.0.1(postcss@8.5.4) - postcss-media-minmax: 5.0.0(postcss@8.5.4) - postcss-nesting: 12.1.5(postcss@8.5.4) - postcss-page-break: 3.0.4(postcss@8.5.4) + postcss: 8.5.6 + postcss-custom-properties: 13.3.12(postcss@8.5.6) + postcss-flexbugs-fixes: 5.0.2(postcss@8.5.6) + postcss-font-variant: 5.0.0(postcss@8.5.6) + postcss-initial: 4.0.1(postcss@8.5.6) + postcss-media-minmax: 5.0.0(postcss@8.5.6) + postcss-nesting: 12.1.5(postcss@8.5.6) + postcss-page-break: 3.0.4(postcss@8.5.6) react-refresh: 0.14.2 rspack-manifest-plugin: 5.0.3(@rspack/core@1.5.5(@swc/helpers@0.5.17)) terser-webpack-plugin: 5.3.11(@swc/core@1.10.18(@swc/helpers@0.5.13))(esbuild@0.17.19)(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19)) @@ -24984,13 +25785,13 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@module-federation/data-prefetch@0.11.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@module-federation/data-prefetch@0.11.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@module-federation/runtime': 0.11.2 '@module-federation/sdk': 0.11.2 fs-extra: 9.1.0 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) '@module-federation/data-prefetch@0.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -25000,13 +25801,13 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@module-federation/data-prefetch@0.9.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@module-federation/data-prefetch@0.9.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': dependencies: '@module-federation/runtime': 0.9.1 '@module-federation/sdk': 0.9.1 fs-extra: 9.1.0 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) '@module-federation/dts-plugin@0.11.2(typescript@5.8.2)': dependencies: @@ -25193,11 +25994,11 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': + '@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.11.2 '@module-federation/cli': 0.11.2(typescript@5.8.2) - '@module-federation/data-prefetch': 0.11.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@module-federation/data-prefetch': 0.11.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@module-federation/dts-plugin': 0.11.2(typescript@5.8.2) '@module-federation/error-codes': 0.11.2 '@module-federation/inject-external-runtime-core-plugin': 0.11.2(@module-federation/runtime-tools@0.11.2) @@ -25220,11 +26021,11 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.11.2 '@module-federation/cli': 0.11.2(typescript@5.8.2) - '@module-federation/data-prefetch': 0.11.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@module-federation/data-prefetch': 0.11.2(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@module-federation/dts-plugin': 0.11.2(typescript@5.8.2) '@module-federation/error-codes': 0.11.2 '@module-federation/inject-external-runtime-core-plugin': 0.11.2(@module-federation/runtime-tools@0.11.2) @@ -25325,10 +26126,10 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.9.1(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@module-federation/enhanced@0.9.1(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.9.1 - '@module-federation/data-prefetch': 0.9.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@module-federation/data-prefetch': 0.9.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0) '@module-federation/dts-plugin': 0.9.1(typescript@5.8.2) '@module-federation/error-codes': 0.9.1 '@module-federation/inject-external-runtime-core-plugin': 0.9.1(@module-federation/runtime-tools@0.9.1) @@ -25477,19 +26278,19 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': + '@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': dependencies: - '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) '@module-federation/runtime': 0.11.2 '@module-federation/sdk': 0.11.2 - '@module-federation/utilities': 3.1.49(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@module-federation/utilities': 3.1.49(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) btoa: 1.2.1 encoding: 0.1.13 node-fetch: 2.7.0(encoding@0.1.13) webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17)) optionalDependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - '@rspack/core' - bufferutil @@ -25499,19 +26300,19 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: - '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@module-federation/runtime': 0.11.2 '@module-federation/sdk': 0.11.2 - '@module-federation/utilities': 3.1.49(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@module-federation/utilities': 3.1.49(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) btoa: 1.2.1 encoding: 0.1.13 node-fetch: 2.7.0(encoding@0.1.13) webpack: 5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)) optionalDependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) transitivePeerDependencies: - '@rspack/core' - bufferutil @@ -25794,21 +26595,21 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@module-federation/utilities@3.1.49(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': + '@module-federation/utilities@3.1.49(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': dependencies: '@module-federation/sdk': 0.11.2 webpack: 5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17)) optionalDependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) - '@module-federation/utilities@3.1.49(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@module-federation/utilities@3.1.49(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: '@module-federation/sdk': 0.11.2 webpack: 5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)) optionalDependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) '@module-federation/vite@1.4.1(rollup@4.37.0)': dependencies: @@ -25957,6 +26758,13 @@ snapshots: '@tybys/wasm-util': 0.10.1 optional: true + '@napi-rs/wasm-runtime@1.0.6': + dependencies: + '@emnapi/core': 1.5.0 + '@emnapi/runtime': 1.5.0 + '@tybys/wasm-util': 0.10.1 + optional: true + '@ngtools/webpack@18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0))': dependencies: '@angular/compiler-cli': 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) @@ -26038,22 +26846,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@nx/angular@20.6.4(59cf53cf48cb39176851220bb77535e7)': + '@nx/angular@20.6.4(e1171b06889fdf7a8cdc153febd29a47)': dependencies: - '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) + '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) '@angular-devkit/core': 18.2.16(chokidar@4.0.3) '@angular-devkit/schematics': 18.2.16 '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2) - '@nx/rspack': 20.6.4(@babel/traverse@7.28.4)(@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.2.0)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2) + '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2) + '@nx/rspack': 20.6.4(@babel/traverse@7.28.4)(@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.2.0)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2) '@nx/web': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/webpack': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(lightningcss@1.29.3)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) + '@nx/webpack': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(lightningcss@1.30.2)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2) '@nx/workspace': 20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.2) '@schematics/angular': 18.2.16 - '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) enquirer: 2.3.6 magic-string: 0.30.17 picocolors: 1.1.1 @@ -26100,10 +26908,10 @@ snapshots: - webpack-cli - webpack-hot-middleware - '@nx/cypress@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)': + '@nx/cypress@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.2) detect-port: 1.6.1 @@ -26122,10 +26930,10 @@ snapshots: - typescript - verdaccio - '@nx/cypress@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': + '@nx/cypress@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(cypress@13.17.0)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.2) detect-port: 1.6.1 @@ -26168,13 +26976,13 @@ snapshots: tslib: 2.8.1 yargs-parser: 21.1.1 - '@nx/eslint-plugin@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)': + '@nx/eslint-plugin@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) chalk: 4.1.2 confusing-browser-globals: 1.0.11 globals: 15.15.0 @@ -26182,7 +26990,7 @@ snapshots: semver: 7.7.1 tslib: 2.8.1 optionalDependencies: - eslint-config-prettier: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + eslint-config-prettier: 10.1.1(eslint@9.15.0(jiti@2.6.1)) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -26194,13 +27002,13 @@ snapshots: - typescript - verdaccio - '@nx/eslint-plugin@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)))(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': + '@nx/eslint-plugin@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)))(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) chalk: 4.1.2 confusing-browser-globals: 1.0.11 globals: 15.15.0 @@ -26208,7 +27016,7 @@ snapshots: semver: 7.7.1 tslib: 2.8.1 optionalDependencies: - eslint-config-prettier: 10.1.1(eslint@9.15.0(jiti@2.4.2)) + eslint-config-prettier: 10.1.1(eslint@9.15.0(jiti@2.6.1)) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -26220,11 +27028,11 @@ snapshots: - typescript - verdaccio - '@nx/eslint@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))': + '@nx/eslint@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) semver: 7.7.1 tslib: 2.8.1 typescript: 5.7.3 @@ -26239,11 +27047,11 @@ snapshots: - supports-color - verdaccio - '@nx/eslint@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@nx/eslint@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) semver: 7.7.1 tslib: 2.8.1 typescript: 5.7.3 @@ -26464,10 +27272,10 @@ snapshots: - vue-tsc - webpack-cli - '@nx/module-federation@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)': + '@nx/module-federation@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)': dependencies: - '@module-federation/enhanced': 0.9.1(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@module-federation/node': 2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@module-federation/enhanced': 0.9.1(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@module-federation/node': 2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@module-federation/sdk': 0.9.1 '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -26560,10 +27368,10 @@ snapshots: '@nx/nx-win32-x64-msvc@20.6.4': optional: true - '@nx/react@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15)))': + '@nx/react@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15)))': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.2.8(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2) '@nx/web': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) @@ -26599,10 +27407,10 @@ snapshots: - webpack - webpack-cli - '@nx/react@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15)))': + '@nx/react@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15)))': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.15))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2) '@nx/web': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) @@ -26638,10 +27446,10 @@ snapshots: - webpack - webpack-cli - '@nx/react@20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': + '@nx/react@20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)))': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.4.2))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) + '@nx/eslint': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@zkochan/js-yaml@0.0.7)(eslint@9.15.0(jiti@2.6.1))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/module-federation': 20.6.4(@rspack/core@1.2.8(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.2) '@nx/web': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -26736,13 +27544,13 @@ snapshots: - webpack-cli - webpack-hot-middleware - '@nx/rspack@20.6.4(@babel/traverse@7.28.4)(@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.2.0)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)': + '@nx/rspack@20.6.4(@babel/traverse@7.28.4)(@module-federation/enhanced@0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@module-federation/node@2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.2.0)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)': dependencies: - '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) - '@module-federation/node': 2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@module-federation/enhanced': 0.11.2(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) + '@module-federation/node': 2.6.31(@rspack/core@1.5.5(@swc/helpers@0.5.17))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2)(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)) '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) - '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.2) + '@nx/module-federation': 20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(typescript@5.8.2) '@nx/web': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.2) '@rspack/core': 1.5.5(@swc/helpers@0.5.17) @@ -26795,7 +27603,7 @@ snapshots: - webpack-cli - webpack-hot-middleware - '@nx/vite@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))(vitest@1.6.1)': + '@nx/vite@20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15)))(typescript@5.8.2)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))(vitest@1.6.1)': dependencies: '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) '@nx/js': 20.6.4(@babel/traverse@7.28.4)(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.15))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.15))) @@ -26805,8 +27613,8 @@ snapshots: minimatch: 9.0.3 semver: 7.7.1 tsconfig-paths: 4.2.0 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) - vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(happy-dom@17.6.3)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -26915,7 +27723,7 @@ snapshots: - vue-template-compiler - webpack-cli - '@nx/webpack@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(lightningcss@1.29.3)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': + '@nx/webpack@20.6.4(@babel/traverse@7.28.4)(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(lightningcss@1.30.2)(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17)))(typescript@5.8.2)': dependencies: '@babel/core': 7.26.10 '@nx/devkit': 20.6.4(nx@20.6.4(@swc-node/register@1.10.10(@swc/core@1.11.13(@swc/helpers@0.5.17))(@swc/types@0.1.20)(typescript@5.8.2))(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -26927,7 +27735,7 @@ snapshots: browserslist: 4.24.4 copy-webpack-plugin: 10.2.4(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) css-loader: 6.11.0(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) - css-minimizer-webpack-plugin: 5.0.1(lightningcss@1.29.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + css-minimizer-webpack-plugin: 5.0.1(lightningcss@1.30.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) less: 4.1.3 less-loader: 11.1.0(less@4.1.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -26991,7 +27799,7 @@ snapshots: browserslist: 4.24.4 copy-webpack-plugin: 10.2.4(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) css-loader: 6.11.0(@rspack/core@1.2.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) - css-minimizer-webpack-plugin: 5.0.1(lightningcss@1.29.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) + css-minimizer-webpack-plugin: 5.0.1(lightningcss@1.30.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.8.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) less: 4.1.3 less-loader: 11.1.0(less@4.1.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))) @@ -27073,8 +27881,14 @@ snapshots: - '@swc/core' - debug + '@oxc-project/runtime@0.92.0': {} + '@oxc-project/types@0.46.0': {} + '@oxc-project/types@0.70.0': {} + + '@oxc-project/types@0.94.0': {} + '@oxc-resolver/binding-darwin-arm64@5.0.1': optional: true @@ -27785,6 +28599,10 @@ snapshots: '@polka/url@1.0.0-next.28': {} + '@quansync/fs@0.1.5': + dependencies: + quansync: 0.2.11 + '@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: leaflet: 1.9.4 @@ -27801,44 +28619,132 @@ snapshots: '@remix-run/router@1.23.0': {} + '@rolldown/binding-android-arm64@1.0.0-beta.42': + optional: true + '@rolldown/binding-darwin-arm64@1.0.0-beta.3': optional: true + '@rolldown/binding-darwin-arm64@1.0.0-beta.42': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.0-beta.9': + optional: true + '@rolldown/binding-darwin-x64@1.0.0-beta.3': optional: true + '@rolldown/binding-darwin-x64@1.0.0-beta.42': + optional: true + + '@rolldown/binding-darwin-x64@1.0.0-beta.9': + optional: true + '@rolldown/binding-freebsd-x64@1.0.0-beta.3': optional: true + '@rolldown/binding-freebsd-x64@1.0.0-beta.42': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.0-beta.9': + optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.3': optional: true + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.42': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.9': + optional: true + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.3': optional: true + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.42': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.9': + optional: true + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.3': optional: true + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.42': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.0-beta.9': + optional: true + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.3': optional: true + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.42': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.0-beta.9': + optional: true + '@rolldown/binding-linux-x64-musl@1.0.0-beta.3': optional: true + '@rolldown/binding-linux-x64-musl@1.0.0-beta.42': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.0-beta.9': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.0-beta.42': + optional: true + '@rolldown/binding-wasm32-wasi@1.0.0-beta.3': dependencies: '@napi-rs/wasm-runtime': 0.2.7 optional: true + '@rolldown/binding-wasm32-wasi@1.0.0-beta.42': + dependencies: + '@napi-rs/wasm-runtime': 1.0.6 + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.0-beta.9': + dependencies: + '@napi-rs/wasm-runtime': 0.2.7 + optional: true + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.3': optional: true + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.42': + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.9': + optional: true + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.3': optional: true + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.42': + optional: true + + '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.9': + optional: true + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.3': optional: true + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.42': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.0-beta.9': + optional: true + + '@rolldown/pluginutils@1.0.0-beta.27': {} + + '@rolldown/pluginutils@1.0.0-beta.42': {} + + '@rolldown/pluginutils@1.0.0-beta.9': {} + '@rollup/plugin-babel@6.0.4(@babel/core@7.28.4)(@types/babel__core@7.20.5)(rollup@4.37.0)': dependencies: '@babel/core': 7.28.4 @@ -28331,7 +29237,7 @@ snapshots: '@rsbuild/core': 1.3.22 deepmerge: 4.3.1 loader-utils: 2.0.4 - postcss: 8.5.4 + postcss: 8.5.6 reduce-configs: 1.1.0 sass-embedded: 1.89.0 @@ -29323,25 +30229,25 @@ snapshots: dependencies: acorn: 8.14.1 - '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)))(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0))': + '@sveltejs/vite-plugin-svelte-inspector@4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)))(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': dependencies: - '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) - debug: 4.4.0(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte': 5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) + debug: 4.4.0(supports-color@8.1.1) svelte: 5.25.3 - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) transitivePeerDependencies: - supports-color - '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0))': + '@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)))(svelte@5.25.3)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) - debug: 4.4.0(supports-color@5.5.0) + '@sveltejs/vite-plugin-svelte-inspector': 4.0.1(@sveltejs/vite-plugin-svelte@5.0.3(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)))(svelte@5.25.3)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) + debug: 4.4.0(supports-color@8.1.1) deepmerge: 4.3.1 kleur: 4.1.5 magic-string: 0.30.17 svelte: 5.25.3 - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) - vitefu: 1.0.6(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + vitefu: 1.0.6(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) transitivePeerDependencies: - supports-color @@ -29500,7 +30406,7 @@ snapshots: '@swc-node/sourcemap-support': 0.5.1 '@swc/core': 1.11.13(@swc/helpers@0.5.15) colorette: 2.0.20 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) oxc-resolver: 5.0.1 pirates: 4.0.6 tslib: 2.8.1 @@ -29515,7 +30421,7 @@ snapshots: '@swc-node/sourcemap-support': 0.5.1 '@swc/core': 1.11.13(@swc/helpers@0.5.17) colorette: 2.0.20 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) oxc-resolver: 5.0.1 pirates: 4.0.6 tslib: 2.8.1 @@ -29732,6 +30638,15 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 + '@testing-library/jest-dom@6.9.1': + dependencies: + '@adobe/css-tools': 4.4.4 + aria-query: 5.3.2 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + picocolors: 1.1.1 + redent: 3.0.0 + '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.5(@types/react@18.3.20))(@types/react@18.3.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.26.10 @@ -29742,6 +30657,16 @@ snapshots: '@types/react': 18.3.20 '@types/react-dom': 18.3.5(@types/react@18.3.20) + '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@19.2.1(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)': + dependencies: + '@babel/runtime': 7.28.4 + '@testing-library/dom': 10.4.0 + react: 19.2.0 + react-dom: 19.2.0(react@19.2.0) + optionalDependencies: + '@types/react': 19.2.2 + '@types/react-dom': 19.2.1(@types/react@19.2.2) + '@tokenizer/token@0.3.0': {} '@tootallnate/once@2.0.0': {} @@ -29836,25 +30761,25 @@ snapshots: '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.27.0 - '@babel/types': 7.27.0 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 '@types/babel__traverse@7.20.7': dependencies: - '@babel/types': 7.27.0 + '@babel/types': 7.28.4 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/bonjour@3.5.13': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/canvas-confetti@1.9.0': {} @@ -29864,23 +30789,29 @@ snapshots: '@types/chai@4.3.20': {} + '@types/chai@5.2.2': + dependencies: + '@types/deep-eql': 4.0.2 + '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 5.0.6 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/connect@3.4.38': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/cors@2.8.19': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/debug@4.1.12': dependencies: '@types/ms': 2.1.0 + '@types/deep-eql@4.0.2': {} + '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 8.56.12 @@ -29903,14 +30834,14 @@ snapshots: '@types/express-serve-static-core@4.19.6': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/qs': 6.9.18 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 '@types/express-serve-static-core@5.0.6': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/qs': 6.9.18 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -29924,22 +30855,22 @@ snapshots: '@types/fs-extra@5.1.0': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/fs-extra@8.1.5': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/geojson@7946.0.16': {} '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/hast@2.3.10': dependencies: @@ -29951,7 +30882,7 @@ snapshots: '@types/hoist-non-react-statics@3.3.6': dependencies: - '@types/react': 19.0.12 + '@types/react': 19.2.2 hoist-non-react-statics: 3.3.2 '@types/html-minifier-terser@6.1.0': {} @@ -29962,7 +30893,7 @@ snapshots: '@types/http-proxy@1.17.16': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/inquirer@6.5.0': dependencies: @@ -29993,7 +30924,7 @@ snapshots: '@types/jsdom@20.0.1': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/tough-cookie': 4.0.5 parse5: 7.2.1 @@ -30007,7 +30938,7 @@ snapshots: '@types/loadable__component@5.13.9': dependencies: - '@types/react': 19.0.12 + '@types/react': 19.2.2 '@types/mdast@3.0.15': dependencies: @@ -30025,20 +30956,20 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/node-fetch@2.6.12': dependencies: - '@types/node': 22.13.13 - form-data: 4.0.2 + '@types/node': 22.18.8 + form-data: 4.0.4 '@types/node-forge@1.3.11': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/node-persist@3.1.8': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/node@18.11.19': {} @@ -30046,6 +30977,10 @@ snapshots: dependencies: undici-types: 6.20.0 + '@types/node@22.18.8': + dependencies: + undici-types: 6.21.0 + '@types/parse-json@4.0.2': {} '@types/prop-types@15.7.14': {} @@ -30069,9 +31004,13 @@ snapshots: dependencies: '@types/react': 19.0.12 + '@types/react-dom@19.2.1(@types/react@19.2.2)': + dependencies: + '@types/react': 19.2.2 + '@types/react-helmet@6.1.11': dependencies: - '@types/react': 19.0.12 + '@types/react': 19.2.2 '@types/react-transition-group@4.4.12(@types/react@18.3.20)': dependencies: @@ -30086,6 +31025,10 @@ snapshots: dependencies: csstype: 3.1.3 + '@types/react@19.2.2': + dependencies: + csstype: 3.1.3 + '@types/resolve@1.20.2': {} '@types/retry@0.12.0': {} @@ -30095,14 +31038,14 @@ snapshots: '@types/rimraf@2.0.5': dependencies: '@types/glob': 7.2.0 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/semver@7.5.8': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/serve-index@1.9.4': dependencies: @@ -30111,7 +31054,7 @@ snapshots: '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/send': 0.17.4 '@types/sinonjs__fake-timers@8.1.1': {} @@ -30120,21 +31063,21 @@ snapshots: '@types/sockjs@0.3.36': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/stack-utils@2.0.3': {} '@types/styled-components@5.1.34': dependencies: '@types/hoist-non-react-statics': 3.3.6 - '@types/react': 19.0.12 + '@types/react': 19.2.2 csstype: 3.1.3 '@types/symlink-or-copy@1.2.2': {} '@types/through@0.0.33': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/tinycolor2@1.4.6': {} @@ -30150,7 +31093,7 @@ snapshots: '@types/ws@8.18.0': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 '@types/yargs-parser@21.0.3': {} @@ -30160,18 +31103,18 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 optional: true - '@typescript-eslint/eslint-plugin@8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/eslint-plugin@8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/scope-manager': 8.28.0 - '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/type-utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) '@typescript-eslint/visitor-keys': 8.28.0 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -30180,27 +31123,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@typescript-eslint/scope-manager': 8.28.0 '@typescript-eslint/types': 8.28.0 '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2) '@typescript-eslint/visitor-keys': 8.28.0 - debug: 4.4.0(supports-color@5.5.0) - eslint: 9.15.0(jiti@2.4.2) + debug: 4.4.0(supports-color@8.1.1) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: '@typescript-eslint/scope-manager': 8.28.0 '@typescript-eslint/types': 8.28.0 - '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2) + '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.9.3) '@typescript-eslint/visitor-keys': 8.28.0 - debug: 4.4.0(supports-color@5.5.0) - eslint: 9.35.0(jiti@2.4.2) - typescript: 5.8.2 + debug: 4.4.0(supports-color@8.1.1) + eslint: 9.35.0(jiti@2.6.1) + typescript: 5.9.3 transitivePeerDependencies: - supports-color optional: true @@ -30210,16 +31153,16 @@ snapshots: '@typescript-eslint/types': 8.28.0 '@typescript-eslint/visitor-keys': 8.28.0 - '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.8.2)': + '@typescript-eslint/tsconfig-utils@8.44.0(typescript@5.9.3)': dependencies: - typescript: 5.8.2 + typescript: 5.9.3 - '@typescript-eslint/type-utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/type-utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - debug: 4.4.0(supports-color@5.5.0) - eslint: 9.15.0(jiti@2.4.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + debug: 4.4.0(supports-color@8.1.1) + eslint: 9.15.0(jiti@2.6.1) ts-api-utils: 2.1.0(typescript@5.8.2) typescript: 5.8.2 transitivePeerDependencies: @@ -30231,7 +31174,7 @@ snapshots: dependencies: '@typescript-eslint/types': 8.28.0 '@typescript-eslint/visitor-keys': 8.28.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 @@ -30241,13 +31184,28 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2)': + '@typescript-eslint/typescript-estree@8.28.0(typescript@5.9.3)': + dependencies: + '@typescript-eslint/types': 8.28.0 + '@typescript-eslint/visitor-keys': 8.28.0 + debug: 4.4.0(supports-color@8.1.1) + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.1 + ts-api-utils: 2.1.0(typescript@5.9.3) + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + optional: true + + '@typescript-eslint/utils@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2)': dependencies: - '@eslint-community/eslint-utils': 4.5.1(eslint@9.15.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.5.1(eslint@9.15.0(jiti@2.6.1)) '@typescript-eslint/scope-manager': 8.28.0 '@typescript-eslint/types': 8.28.0 '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2) - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 transitivePeerDependencies: - supports-color @@ -30259,9 +31217,9 @@ snapshots: '@ungap/structured-clone@1.3.0': {} - '@valibot/to-json-schema@1.0.0-beta.4(valibot@1.0.0-beta.12(typescript@5.8.2))': + '@valibot/to-json-schema@1.0.0-beta.4(valibot@1.0.0-beta.12(typescript@5.9.3))': dependencies: - valibot: 1.0.0-beta.12(typescript@5.8.2) + valibot: 1.0.0-beta.12(typescript@5.9.3) '@vercel/nft@0.27.3(encoding@0.1.13)': dependencies: @@ -30281,22 +31239,50 @@ snapshots: - encoding - supports-color - '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6))': + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6))': + dependencies: + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) + + '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6))': + dependencies: + vite: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) + optional: true + + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': dependencies: - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) - '@vitejs/plugin-basic-ssl@1.2.0(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0))': + '@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))': dependencies: - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + '@babel/core': 7.26.10 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) + '@types/babel__core': 7.20.5 + react-refresh: 0.14.2 + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + transitivePeerDependencies: + - supports-color - '@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))': + '@vitejs/plugin-react@4.3.4(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0))': dependencies: '@babel/core': 7.26.10 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + transitivePeerDependencies: + - supports-color + + '@vitejs/plugin-react@4.7.0(rolldown-vite@7.1.16(@types/node@22.18.8)(esbuild@0.25.1)(jiti@2.6.1)(less@4.2.0)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': + dependencies: + '@babel/core': 7.28.4 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) + '@rolldown/pluginutils': 1.0.0-beta.27 + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: rolldown-vite@7.1.16(@types/node@22.18.8)(esbuild@0.25.1)(jiti@2.6.1)(less@4.2.0)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) transitivePeerDependencies: - supports-color @@ -30304,7 +31290,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 5.0.6 @@ -30315,7 +31301,7 @@ snapshots: std-env: 3.8.1 strip-literal: 2.1.1 test-exclude: 6.0.0 - vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(happy-dom@17.6.3)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) transitivePeerDependencies: - supports-color @@ -30325,22 +31311,58 @@ snapshots: '@vitest/utils': 1.6.1 chai: 4.5.0 + '@vitest/expect@3.2.4': + dependencies: + '@types/chai': 5.2.2 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + tinyrainbow: 2.0.0 + + '@vitest/mocker@3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + + '@vitest/pretty-format@3.2.4': + dependencies: + tinyrainbow: 2.0.0 + '@vitest/runner@1.6.1': dependencies: '@vitest/utils': 1.6.1 p-limit: 5.0.0 pathe: 1.1.2 + '@vitest/runner@3.2.4': + dependencies: + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.1.0 + '@vitest/snapshot@1.6.1': dependencies: magic-string: 0.30.17 pathe: 1.1.2 pretty-format: 29.7.0 + '@vitest/snapshot@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.17 + pathe: 2.0.3 + '@vitest/spy@1.6.1': dependencies: tinyspy: 2.2.1 + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.4 + '@vitest/ui@1.6.1(vitest@1.6.1)': dependencies: '@vitest/utils': 1.6.1 @@ -30350,7 +31372,7 @@ snapshots: pathe: 1.1.2 picocolors: 1.1.1 sirv: 2.0.4 - vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vitest: 1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(happy-dom@17.6.3)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) '@vitest/utils@1.6.1': dependencies: @@ -30359,6 +31381,12 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 + '@vitest/utils@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.1 + tinyrainbow: 2.0.0 + '@warp-drive/build-config@5.5.0': dependencies: '@embroider/addon-shim': 1.10.0 @@ -30669,7 +31697,7 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -30762,6 +31790,8 @@ snapshots: ansicolors@0.2.1: {} + ansis@4.2.0: {} + any-promise@1.3.0: {} anymatch@2.0.0: @@ -30802,6 +31832,8 @@ snapshots: argparse@2.0.1: {} + args-tokenizer@0.3.0: {} + aria-query@5.3.0: dependencies: dequal: 2.0.3 @@ -30915,8 +31947,15 @@ snapshots: assertion-error@1.1.0: {} + assertion-error@2.0.1: {} + assign-symbols@1.0.0: {} + ast-kit@2.1.3: + dependencies: + '@babel/parser': 7.28.4 + pathe: 2.0.3 + ast-types-flow@0.0.8: {} ast-types@0.13.3: {} @@ -30943,7 +31982,7 @@ snapshots: async-disk-cache@2.1.0: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) heimdalljs: 0.2.6 istextorbinary: 2.6.0 mkdirp: 0.5.6 @@ -31008,6 +32047,16 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + autoprefixer@10.4.21(postcss@8.5.6): + dependencies: + browserslist: 4.24.4 + caniuse-lite: 1.0.30001707 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.1.0 @@ -31023,6 +32072,11 @@ snapshots: axios: 1.12.2(debug@4.4.0) is-retry-allowed: 2.2.0 + axios-retry@4.5.0(axios@1.12.2(debug@4.4.3)): + dependencies: + axios: 1.12.2(debug@4.4.3) + is-retry-allowed: 2.2.0 + axios@1.12.2(debug@4.4.0): dependencies: follow-redirects: 1.15.9(debug@4.4.0) @@ -31031,9 +32085,17 @@ snapshots: transitivePeerDependencies: - debug + axios@1.12.2(debug@4.4.3): + dependencies: + follow-redirects: 1.15.9(debug@4.4.3) + form-data: 4.0.4 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + axios@1.8.4: dependencies: - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.4.3) form-data: 4.0.2 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -31041,7 +32103,7 @@ snapshots: axios@1.9.0: dependencies: - follow-redirects: 1.15.9(debug@4.4.0) + follow-redirects: 1.15.9(debug@4.4.3) form-data: 4.0.2 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -31502,6 +32564,8 @@ snapshots: dependencies: file-uri-to-path: 1.0.0 + birpc@2.6.1: {} + bl@4.1.0: dependencies: buffer: 5.7.1 @@ -31692,7 +32756,7 @@ snapshots: dependencies: array-equal: 1.0.2 broccoli-plugin: 4.0.7 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) fs-tree-diff: 2.0.1 heimdalljs: 0.2.6 minimatch: 3.1.2 @@ -31817,7 +32881,7 @@ snapshots: broccoli-persistent-filter: 2.3.1 broccoli-plugin: 2.1.0 chalk: 2.4.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) ensure-posix-path: 1.1.1 fs-extra: 8.1.0 minimatch: 3.1.2 @@ -31958,6 +33022,22 @@ snapshots: builtin-status-codes@3.0.0: {} + bumpp@10.3.1(magicast@0.3.5): + dependencies: + ansis: 4.2.0 + args-tokenizer: 0.3.0 + c12: 3.3.0(magicast@0.3.5) + cac: 6.7.14 + escalade: 3.2.0 + jsonc-parser: 3.3.1 + package-manager-detector: 1.4.0 + semver: 7.7.3 + tinyexec: 1.0.1 + tinyglobby: 0.2.15 + yaml: 2.8.1 + transitivePeerDependencies: + - magicast + bundle-name@4.1.0: dependencies: run-applescript: 7.0.0 @@ -31966,6 +33046,23 @@ snapshots: bytes@3.1.2: {} + c12@3.3.0(magicast@0.3.5): + dependencies: + chokidar: 4.0.3 + confbox: 0.2.2 + defu: 6.1.4 + dotenv: 17.2.3 + exsolve: 1.0.7 + giget: 2.0.0 + jiti: 2.6.1 + ohash: 2.0.11 + pathe: 2.0.3 + perfect-debounce: 2.0.0 + pkg-types: 2.3.0 + rc9: 2.1.2 + optionalDependencies: + magicast: 0.3.5 + cac@6.7.14: {} cacache@19.0.1: @@ -32105,6 +33202,14 @@ snapshots: pathval: 1.1.1 type-detect: 4.1.0 + chai@5.3.3: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.2.1 + pathval: 2.0.1 + chalk@2.4.2: dependencies: ansi-styles: 3.2.1 @@ -32174,6 +33279,8 @@ snapshots: dependencies: get-func-name: 2.0.2 + check-error@2.1.1: {} + check-more-types@2.24.0: {} chokidar@3.6.0: @@ -32207,6 +33314,10 @@ snapshots: inherits: 2.0.4 safe-buffer: 5.2.1 + citty@0.1.6: + dependencies: + consola: 3.4.2 + cjs-module-lexer@1.4.3: {} class-utils@0.3.6: @@ -32427,6 +33538,8 @@ snapshots: confbox@0.1.8: {} + confbox@0.2.2: {} + configstore@5.0.1: dependencies: dot-prop: 5.3.0 @@ -32449,6 +33562,8 @@ snapshots: transitivePeerDependencies: - supports-color + consola@3.4.2: {} + console-browserify@1.2.0: {} console-control-strings@1.1.0: {} @@ -32643,6 +33758,15 @@ snapshots: optionalDependencies: typescript: 5.8.2 + cosmiconfig@9.0.0(typescript@5.9.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.9.3 + create-ecdh@4.0.4: dependencies: bn.js: 4.12.1 @@ -32710,6 +33834,22 @@ snapshots: - supports-color - ts-node + create-jest@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + create-require@1.1.1: {} critters@0.0.24: @@ -32719,7 +33859,7 @@ snapshots: dom-serializer: 2.0.0 domhandler: 5.0.3 htmlparser2: 8.0.2 - postcss: 8.5.4 + postcss: 8.5.6 postcss-media-query-parser: 0.2.3 cron-parser@4.9.0: @@ -32771,6 +33911,10 @@ snapshots: dependencies: postcss: 8.5.4 + css-declaration-sorter@7.2.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + css-functions-list@3.2.3: {} css-loader@5.2.7(webpack@5.99.9): @@ -32897,7 +34041,7 @@ snapshots: optionalDependencies: esbuild: 0.17.19 - css-minimizer-webpack-plugin@5.0.1(lightningcss@1.29.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))): + css-minimizer-webpack-plugin@5.0.1(lightningcss@1.30.2)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))): dependencies: '@jridgewell/trace-mapping': 0.3.25 cssnano: 6.1.2(postcss@8.5.4) @@ -32907,7 +34051,7 @@ snapshots: serialize-javascript: 6.0.2 webpack: 5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)) optionalDependencies: - lightningcss: 1.29.3 + lightningcss: 1.30.2 css-minimizer-webpack-plugin@5.0.1(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: @@ -32963,6 +34107,8 @@ snapshots: css-what@6.1.0: {} + css.escape@1.5.1: {} + cssesc@3.0.0: {} cssnano-preset-default@5.2.14(postcss@8.5.6): @@ -33032,6 +34178,40 @@ snapshots: postcss-svgo: 6.0.3(postcss@8.5.4) postcss-unique-selectors: 6.0.4(postcss@8.5.4) + cssnano-preset-default@6.1.2(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + css-declaration-sorter: 7.2.0(postcss@8.5.6) + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-calc: 9.0.1(postcss@8.5.6) + postcss-colormin: 6.1.0(postcss@8.5.6) + postcss-convert-values: 6.1.0(postcss@8.5.6) + postcss-discard-comments: 6.0.2(postcss@8.5.6) + postcss-discard-duplicates: 6.0.3(postcss@8.5.6) + postcss-discard-empty: 6.0.3(postcss@8.5.6) + postcss-discard-overridden: 6.0.2(postcss@8.5.6) + postcss-merge-longhand: 6.0.5(postcss@8.5.6) + postcss-merge-rules: 6.1.1(postcss@8.5.6) + postcss-minify-font-values: 6.1.0(postcss@8.5.6) + postcss-minify-gradients: 6.0.3(postcss@8.5.6) + postcss-minify-params: 6.1.0(postcss@8.5.6) + postcss-minify-selectors: 6.0.4(postcss@8.5.6) + postcss-normalize-charset: 6.0.2(postcss@8.5.6) + postcss-normalize-display-values: 6.0.2(postcss@8.5.6) + postcss-normalize-positions: 6.0.2(postcss@8.5.6) + postcss-normalize-repeat-style: 6.0.2(postcss@8.5.6) + postcss-normalize-string: 6.0.2(postcss@8.5.6) + postcss-normalize-timing-functions: 6.0.2(postcss@8.5.6) + postcss-normalize-unicode: 6.1.0(postcss@8.5.6) + postcss-normalize-url: 6.0.2(postcss@8.5.6) + postcss-normalize-whitespace: 6.0.2(postcss@8.5.6) + postcss-ordered-values: 6.0.2(postcss@8.5.6) + postcss-reduce-initial: 6.1.0(postcss@8.5.6) + postcss-reduce-transforms: 6.0.2(postcss@8.5.6) + postcss-svgo: 6.0.3(postcss@8.5.6) + postcss-unique-selectors: 6.0.4(postcss@8.5.6) + cssnano-utils@3.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -33040,6 +34220,10 @@ snapshots: dependencies: postcss: 8.5.4 + cssnano-utils@4.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + cssnano@5.1.15(postcss@8.5.6): dependencies: cssnano-preset-default: 5.2.14(postcss@8.5.6) @@ -33053,6 +34237,12 @@ snapshots: lilconfig: 3.1.3 postcss: 8.5.4 + cssnano@6.1.2(postcss@8.5.6): + dependencies: + cssnano-preset-default: 6.1.2(postcss@8.5.6) + lilconfig: 3.1.3 + postcss: 8.5.6 + csso@4.2.0: dependencies: css-tree: 1.1.3 @@ -33199,21 +34389,23 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.4.0(supports-color@5.5.0): + debug@4.4.0(supports-color@8.1.1): dependencies: ms: 2.1.3 optionalDependencies: - supports-color: 5.5.0 + supports-color: 8.1.1 - debug@4.4.0(supports-color@8.1.1): + debug@4.4.3(supports-color@5.5.0): dependencies: ms: 2.1.3 optionalDependencies: - supports-color: 8.1.1 + supports-color: 5.5.0 - debug@4.4.3: + debug@4.4.3(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 decimal.js@10.5.0: {} @@ -33244,6 +34436,8 @@ snapshots: dependencies: type-detect: 4.1.0 + deep-eql@5.0.2: {} + deep-equal@1.0.1: {} deep-extend@0.6.0: {} @@ -33334,6 +34528,8 @@ snapshots: inherits: 2.0.4 minimalistic-assert: 1.0.1 + destr@2.0.5: {} + destroy@1.2.0: {} detect-file@1.0.0: {} @@ -33353,7 +34549,7 @@ snapshots: detect-port@1.6.1: dependencies: address: 1.2.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -33371,6 +34567,8 @@ snapshots: diff@7.0.0: {} + diff@8.0.2: {} + diffie-hellman@5.0.3: dependencies: bn.js: 4.12.1 @@ -33395,6 +34593,8 @@ snapshots: dom-accessibility-api@0.5.16: {} + dom-accessibility-api@0.6.3: {} + dom-converter@0.2.0: dependencies: utila: 0.4.0 @@ -33474,8 +34674,12 @@ snapshots: dotenv@16.4.7: {} + dotenv@17.2.3: {} + dotenv@8.6.0: {} + dts-resolver@2.1.2: {} + dunder-proto@1.0.1: dependencies: call-bind-apply-helpers: 1.0.2 @@ -33539,7 +34743,7 @@ snapshots: broccoli-plugin: 4.0.7 broccoli-source: 3.0.1 css-loader: 5.2.7(webpack@5.99.9) - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) fs-extra: 10.1.0 fs-tree-diff: 2.0.1 handlebars: 4.7.8 @@ -33675,7 +34879,7 @@ snapshots: ember-cli-preprocess-registry@5.0.1: dependencies: broccoli-funnel: 3.0.8 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -33708,7 +34912,7 @@ snapshots: transitivePeerDependencies: - supports-color - ember-cli@6.5.0(@types/node@22.13.13)(ejs@3.1.10)(handlebars@4.7.8)(pug@3.0.3)(underscore@1.13.7): + ember-cli@6.5.0(@types/node@22.18.8)(ejs@3.1.10)(handlebars@4.7.8)(pug@3.0.3)(underscore@1.13.7): dependencies: '@pnpm/find-workspace-dir': 1000.1.3 babel-remove-types: 1.0.1 @@ -33757,9 +34961,9 @@ snapshots: heimdalljs-fs-monitor: 1.1.2 heimdalljs-graph: 1.0.0 heimdalljs-logger: 0.1.10 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1 inflection: 2.0.1 - inquirer: 9.3.8(@types/node@22.13.13) + inquirer: 9.3.8(@types/node@22.18.8) is-git-url: 1.0.0 is-language-code: 3.1.0 isbinaryfile: 5.0.6 @@ -33880,19 +35084,19 @@ snapshots: - ember-provide-consume-context - supports-color - ember-eslint-parser@0.5.11(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2): + ember-eslint-parser@0.5.11(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3): dependencies: '@babel/core': 7.28.4 - '@babel/eslint-parser': 7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.4.2)) + '@babel/eslint-parser': 7.28.4(@babel/core@7.28.4)(eslint@9.35.0(jiti@2.6.1)) '@glimmer/syntax': 0.95.0 - '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.8.2) + '@typescript-eslint/tsconfig-utils': 8.44.0(typescript@5.9.3) content-tag: 2.0.3 eslint-scope: 7.2.2 html-tags: 3.3.1 mathml-tag-names: 2.1.3 svg-tags: 1.0.0 optionalDependencies: - '@typescript-eslint/parser': 8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - eslint - typescript @@ -33939,7 +35143,7 @@ snapshots: ember-router-generator@2.0.0: dependencies: - '@babel/parser': 7.27.0 + '@babel/parser': 7.28.4 '@babel/traverse': 7.27.0(supports-color@5.5.0) recast: 0.18.10 transitivePeerDependencies: @@ -34071,6 +35275,8 @@ snapshots: emojis-list@3.0.0: {} + empathic@1.1.0: {} + encodeurl@1.0.2: {} encodeurl@2.0.0: {} @@ -34100,7 +35306,7 @@ snapshots: engine.io@6.6.4: dependencies: '@types/cors': 2.8.19 - '@types/node': 22.13.13 + '@types/node': 22.18.8 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.7.2 @@ -34251,6 +35457,8 @@ snapshots: es-module-lexer@1.6.0: {} + es-module-lexer@1.7.0: {} + es-object-atoms@1.1.1: dependencies: es-errors: 1.3.0 @@ -34274,7 +35482,7 @@ snapshots: esbuild-register@3.6.0(esbuild@0.17.19): dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) esbuild: 0.17.19 transitivePeerDependencies: - supports-color @@ -34434,18 +35642,18 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.4.2)): + eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.6.1)): dependencies: - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) semver: 7.7.1 - eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.4.2)): + eslint-config-prettier@10.1.1(eslint@9.15.0(jiti@2.6.1)): dependencies: - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) - eslint-config-prettier@10.1.8(eslint@9.35.0(jiti@2.4.2)): + eslint-config-prettier@10.1.8(eslint@9.35.0(jiti@2.6.1)): dependencies: - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) eslint-import-resolver-node@0.3.9: dependencies: @@ -34455,48 +35663,48 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.15.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.15.0(jiti@2.6.1)): dependencies: debug: 3.2.7(supports-color@8.1.1) optionalDependencies: - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.15.0(jiti@2.4.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + eslint: 9.15.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-cypress@4.2.0(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-cypress@4.2.0(eslint@9.15.0(jiti@2.6.1)): dependencies: - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) globals: 15.15.0 - eslint-plugin-ember@12.7.4(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2): + eslint-plugin-ember@12.7.4(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3): dependencies: '@ember-data/rfc395-data': 0.0.4 css-tree: 3.1.0 - ember-eslint-parser: 0.5.11(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2) + ember-eslint-parser: 0.5.11(@babel/core@7.28.4)(@typescript-eslint/parser@8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3) ember-rfc176-data: 0.3.18 - eslint: 9.35.0(jiti@2.4.2) - eslint-utils: 3.0.0(eslint@9.35.0(jiti@2.4.2)) + eslint: 9.35.0(jiti@2.6.1) + eslint-utils: 3.0.0(eslint@9.35.0(jiti@2.6.1)) estraverse: 5.3.0 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 requireindex: 1.2.0 snake-case: 3.0.4 optionalDependencies: - '@typescript-eslint/parser': 8.28.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3) transitivePeerDependencies: - '@babel/core' - typescript - eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.4.2)): + eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.5.1(eslint@9.35.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.5.1(eslint@9.35.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 - eslint: 9.35.0(jiti@2.4.2) - eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.4.2)) + eslint: 9.35.0(jiti@2.6.1) + eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.6.1)) - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -34505,9 +35713,9 @@ snapshots: array.prototype.flatmap: 1.3.3 debug: 3.2.7(supports-color@8.1.1) doctrine: 2.1.0 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.15.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint@9.15.0(jiti@2.6.1)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -34519,13 +35727,13 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jsx-a11y@6.10.2(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-jsx-a11y@6.10.2(eslint@9.15.0(jiti@2.6.1)): dependencies: aria-query: 5.3.2 array-includes: 3.1.8 @@ -34535,7 +35743,7 @@ snapshots: axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -34544,37 +35752,37 @@ snapshots: safe-regex-test: 1.1.0 string.prototype.includes: 2.0.1 - eslint-plugin-n@17.23.0(eslint@9.35.0(jiti@2.4.2))(typescript@5.8.2): + eslint-plugin-n@17.23.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3): dependencies: - '@eslint-community/eslint-utils': 4.5.1(eslint@9.35.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.5.1(eslint@9.35.0(jiti@2.6.1)) enhanced-resolve: 5.18.1 - eslint: 9.35.0(jiti@2.4.2) - eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.4.2)) + eslint: 9.35.0(jiti@2.6.1) + eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.6.1)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 ignore: 5.3.2 semver: 7.7.1 - ts-declaration-location: 1.0.7(typescript@5.8.2) + ts-declaration-location: 1.0.7(typescript@5.9.3) transitivePeerDependencies: - typescript - eslint-plugin-qunit@8.2.5(eslint@9.35.0(jiti@2.4.2)): + eslint-plugin-qunit@8.2.5(eslint@9.35.0(jiti@2.6.1)): dependencies: - eslint-utils: 3.0.0(eslint@9.35.0(jiti@2.4.2)) + eslint-utils: 3.0.0(eslint@9.35.0(jiti@2.6.1)) requireindex: 1.2.0 transitivePeerDependencies: - eslint - eslint-plugin-react-hooks@5.2.0(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-react-hooks@5.2.0(eslint@9.15.0(jiti@2.6.1)): dependencies: - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) - eslint-plugin-react-refresh@0.4.19(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-react-refresh@0.4.19(eslint@9.15.0(jiti@2.6.1)): dependencies: - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) - eslint-plugin-react@7.37.4(eslint@9.15.0(jiti@2.4.2)): + eslint-plugin-react@7.37.4(eslint@9.15.0(jiti@2.6.1)): dependencies: array-includes: 3.1.8 array.prototype.findlast: 1.2.5 @@ -34582,7 +35790,7 @@ snapshots: array.prototype.tosorted: 1.1.4 doctrine: 2.1.0 es-iterator-helpers: 1.2.1 - eslint: 9.15.0(jiti@2.4.2) + eslint: 9.15.0(jiti@2.6.1) estraverse: 5.3.0 hasown: 2.0.2 jsx-ast-utils: 3.3.5 @@ -34616,9 +35824,9 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-utils@3.0.0(eslint@9.35.0(jiti@2.4.2)): + eslint-utils@3.0.0(eslint@9.35.0(jiti@2.6.1)): dependencies: - eslint: 9.35.0(jiti@2.4.2) + eslint: 9.35.0(jiti@2.6.1) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@2.1.0: {} @@ -34629,9 +35837,9 @@ snapshots: eslint-visitor-keys@4.2.1: {} - eslint@9.15.0(jiti@2.4.2): + eslint@9.15.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.5.1(eslint@9.15.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.5.1(eslint@9.15.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.19.2 '@eslint/core': 0.9.1 @@ -34646,7 +35854,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) escape-string-regexp: 4.0.0 eslint-scope: 8.3.0 eslint-visitor-keys: 4.2.0 @@ -34666,13 +35874,13 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 2.4.2 + jiti: 2.6.1 transitivePeerDependencies: - supports-color - eslint@9.35.0(jiti@2.4.2): + eslint@9.35.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.4.2)) + '@eslint-community/eslint-utils': 4.9.0(eslint@9.35.0(jiti@2.6.1)) '@eslint-community/regexpp': 4.12.1 '@eslint/config-array': 0.21.0 '@eslint/config-helpers': 0.3.1 @@ -34688,7 +35896,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) escape-string-regexp: 4.0.0 eslint-scope: 8.4.0 eslint-visitor-keys: 4.2.1 @@ -34708,7 +35916,7 @@ snapshots: natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 2.4.2 + jiti: 2.6.1 transitivePeerDependencies: - supports-color @@ -34878,6 +36086,8 @@ snapshots: dependencies: homedir-polyfill: 1.0.3 + expect-type@1.2.2: {} + expect@29.7.0: dependencies: '@jest/expect-utils': 29.7.0 @@ -34924,6 +36134,8 @@ snapshots: transitivePeerDependencies: - supports-color + exsolve@1.0.7: {} + ext-list@2.2.2: dependencies: mime-db: 1.54.0 @@ -34972,7 +36184,7 @@ snapshots: extract-zip@2.0.1(supports-color@8.1.1): dependencies: - debug: 4.4.0(supports-color@8.1.1) + debug: 4.4.3(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -35050,10 +36262,18 @@ snapshots: optionalDependencies: picomatch: 4.0.2 + fdir@6.4.3(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + fdir@6.4.5(picomatch@4.0.2): optionalDependencies: picomatch: 4.0.2 + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + fflate@0.8.2: {} figures@2.0.0: @@ -35281,7 +36501,11 @@ snapshots: follow-redirects@1.15.9(debug@4.4.0): optionalDependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) + + follow-redirects@1.15.9(debug@4.4.3): + optionalDependencies: + debug: 4.4.3(supports-color@5.5.0) for-each@0.3.5: dependencies: @@ -35584,7 +36808,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -35598,6 +36822,15 @@ snapshots: dependencies: assert-plus: 1.0.0 + giget@2.0.0: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + defu: 6.1.4 + node-fetch-native: 1.6.7 + nypm: 0.6.2 + pathe: 2.0.3 + git-hooks-list@3.2.0: {} git-repo-info@2.1.1: {} @@ -35825,6 +37058,11 @@ snapshots: optionalDependencies: uglify-js: 3.19.3 + happy-dom@17.6.3: + dependencies: + webidl-conversions: 7.0.0 + whatwg-mimetype: 3.0.0 + harmony-reflect@1.6.2: {} has-ansi@3.0.0: @@ -36019,6 +37257,8 @@ snapshots: hono@3.12.12: {} + hookable@5.5.3: {} + hookified@1.12.0: {} hosted-git-info@7.0.2: @@ -36248,21 +37488,21 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color http-proxy-middleware@2.0.7(@types/express@4.17.21): dependencies: '@types/http-proxy': 1.17.16 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -36274,7 +37514,7 @@ snapshots: http-proxy-middleware@2.0.9(@types/express@4.17.21): dependencies: '@types/http-proxy': 1.17.16 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.8 @@ -36286,7 +37526,7 @@ snapshots: http-proxy-middleware@3.0.3: dependencies: '@types/http-proxy': 1.17.16 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) http-proxy: 1.18.1(debug@4.4.0) is-glob: 4.0.3 is-plain-object: 5.0.0 @@ -36294,6 +37534,14 @@ snapshots: transitivePeerDependencies: - supports-color + http-proxy@1.18.1: + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.9(debug@4.4.3) + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + http-proxy@1.18.1(debug@4.4.0): dependencies: eventemitter3: 4.0.7 @@ -36309,7 +37557,7 @@ snapshots: corser: 2.0.1 he: 1.2.0 html-encoding-sniffer: 3.0.0 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1 mime: 1.6.0 minimist: 1.2.8 opener: 1.5.2 @@ -36337,21 +37585,21 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) transitivePeerDependencies: - supports-color https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -36515,9 +37763,9 @@ snapshots: through: 2.3.8 wrap-ansi: 6.2.0 - inquirer@9.3.8(@types/node@22.13.13): + inquirer@9.3.8(@types/node@22.18.8): dependencies: - '@inquirer/external-editor': 1.0.2(@types/node@22.13.13) + '@inquirer/external-editor': 1.0.2(@types/node@22.18.8) '@inquirer/figures': 1.0.11 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -36924,7 +38172,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: @@ -36933,7 +38181,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: '@jridgewell/trace-mapping': 0.3.25 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -36993,7 +38241,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.3(babel-plugin-macros@3.1.0) @@ -37076,6 +38324,28 @@ snapshots: - supports-color - ts-node + jest-cli@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + '@jest/core': 29.7.0(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + exit: 0.1.2 + import-local: 3.2.0 + jest-config: 29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + jest-util: 29.7.0 + jest-validate: 29.7.0 + yargs: 17.7.2 + optionalDependencies: + node-notifier: 10.0.1 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + jest-config@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)): dependencies: '@babel/core': 7.28.4 @@ -37138,6 +38408,100 @@ snapshots: - babel-plugin-macros - supports-color + jest-config@29.7.0(@types/node@22.18.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2)): + dependencies: + '@babel/core': 7.28.4 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.4) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 22.18.8 + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.15))(@types/node@22.13.13)(typescript@5.8.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@22.18.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)): + dependencies: + '@babel/core': 7.28.4 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.4) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 22.18.8 + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + + jest-config@29.7.0(@types/node@22.18.8)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + '@babel/core': 7.28.4 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.28.4) + chalk: 4.1.2 + ci-info: 3.9.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.0(babel-plugin-macros@3.1.0) + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + micromatch: 4.0.8 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 22.18.8 + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + optional: true + jest-diff@29.7.0: dependencies: chalk: 4.1.2 @@ -37177,7 +38541,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -37187,7 +38551,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 22.13.13 + '@types/node': 22.18.8 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -37226,16 +38590,16 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): optionalDependencies: jest-resolve: 29.7.0 - jest-preset-angular@14.1.1(8869d40d9ef93a74381fb028a31c9b7c): + jest-preset-angular@14.1.1(c7dfde5ed562117f83caad7cf42a0f57): dependencies: - '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.29.3)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) + '@angular-devkit/build-angular': 18.2.16(@angular/compiler-cli@19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2))(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(html-webpack-plugin@5.6.3(@rspack/core@1.5.5(@swc/helpers@0.5.17))(webpack@5.94.0(@swc/core@1.11.13(@swc/helpers@0.5.17))(esbuild@0.23.0)))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(lightningcss@1.30.2)(sass-embedded@1.89.0)(stylus@0.64.0)(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)))(typescript@5.8.2) '@angular/compiler-cli': 19.2.4(@angular/compiler@19.2.4)(typescript@5.8.2) '@angular/core': 19.2.4(rxjs@7.8.2)(zone.js@0.15.0) '@angular/platform-browser-dynamic': 19.2.4(@angular/common@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@19.2.4)(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@19.2.4(@angular/animations@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@19.2.4(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@19.2.4(rxjs@7.8.2)(zone.js@0.15.0))) @@ -37287,7 +38651,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -37315,7 +38679,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 cjs-module-lexer: 1.4.3 collect-v8-coverage: 1.0.2 @@ -37361,7 +38725,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -37380,7 +38744,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 22.13.13 + '@types/node': 22.18.8 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -37389,13 +38753,13 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -37442,10 +38806,27 @@ snapshots: - supports-color - ts-node + jest@29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + '@jest/core': 29.7.0(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + '@jest/types': 29.6.3 + import-local: 3.2.0 + jest-cli: 29.7.0(@types/node@22.18.8)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + optionalDependencies: + node-notifier: 10.0.1 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + optional: true + jiti@1.21.7: {} jiti@2.4.2: {} + jiti@2.6.1: {} + jose@5.10.0: {} js-string-escape@1.0.1: {} @@ -37722,7 +39103,7 @@ snapshots: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -37848,36 +39229,69 @@ snapshots: optionalDependencies: webpack: 5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)) + lightningcss-android-arm64@1.30.2: + optional: true + lightningcss-darwin-arm64@1.29.3: optional: true + lightningcss-darwin-arm64@1.30.2: + optional: true + lightningcss-darwin-x64@1.29.3: optional: true + lightningcss-darwin-x64@1.30.2: + optional: true + lightningcss-freebsd-x64@1.29.3: optional: true + lightningcss-freebsd-x64@1.30.2: + optional: true + lightningcss-linux-arm-gnueabihf@1.29.3: optional: true + lightningcss-linux-arm-gnueabihf@1.30.2: + optional: true + lightningcss-linux-arm64-gnu@1.29.3: optional: true + lightningcss-linux-arm64-gnu@1.30.2: + optional: true + lightningcss-linux-arm64-musl@1.29.3: optional: true + lightningcss-linux-arm64-musl@1.30.2: + optional: true + lightningcss-linux-x64-gnu@1.29.3: optional: true + lightningcss-linux-x64-gnu@1.30.2: + optional: true + lightningcss-linux-x64-musl@1.29.3: optional: true + lightningcss-linux-x64-musl@1.30.2: + optional: true + lightningcss-win32-arm64-msvc@1.29.3: optional: true + lightningcss-win32-arm64-msvc@1.30.2: + optional: true + lightningcss-win32-x64-msvc@1.29.3: optional: true + lightningcss-win32-x64-msvc@1.30.2: + optional: true + lightningcss@1.29.3: dependencies: detect-libc: 2.0.3 @@ -37893,6 +39307,22 @@ snapshots: lightningcss-win32-arm64-msvc: 1.29.3 lightningcss-win32-x64-msvc: 1.29.3 + lightningcss@1.30.2: + dependencies: + detect-libc: 2.0.3 + optionalDependencies: + lightningcss-android-arm64: 1.30.2 + lightningcss-darwin-arm64: 1.30.2 + lightningcss-darwin-x64: 1.30.2 + lightningcss-freebsd-x64: 1.30.2 + lightningcss-linux-arm-gnueabihf: 1.30.2 + lightningcss-linux-arm64-gnu: 1.30.2 + lightningcss-linux-arm64-musl: 1.30.2 + lightningcss-linux-x64-gnu: 1.30.2 + lightningcss-linux-x64-musl: 1.30.2 + lightningcss-win32-arm64-msvc: 1.30.2 + lightningcss-win32-x64-msvc: 1.30.2 + lilconfig@2.1.0: {} lilconfig@3.1.3: {} @@ -38107,7 +39537,7 @@ snapshots: log4js@6.9.1: dependencies: date-format: 4.0.14 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) flatted: 3.3.3 rfdc: 1.4.1 streamroller: 3.1.5 @@ -38126,6 +39556,8 @@ snapshots: dependencies: get-func-name: 2.0.2 + loupe@3.2.1: {} + lower-case-first@1.0.2: dependencies: lower-case: 1.1.4 @@ -38729,7 +40161,7 @@ snapshots: micromark@3.2.0: dependencies: '@types/debug': 4.1.12 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) decode-named-character-reference: 1.1.0 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -38800,6 +40232,8 @@ snapshots: mimic-response@4.0.0: {} + min-indent@1.0.1: {} + mini-css-extract-plugin@2.4.7(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: schema-utils: 4.3.2 @@ -39024,7 +40458,7 @@ snapshots: ndepe@0.1.11(encoding@0.1.13): dependencies: '@vercel/nft': 0.27.3(encoding@0.1.13) - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) fs-extra: 11.3.0 mlly: 1.6.1 pkg-types: 1.3.1 @@ -39037,7 +40471,7 @@ snapshots: ndepe@0.1.6(encoding@0.1.13): dependencies: '@vercel/nft': 0.27.3(encoding@0.1.13) - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) fs-extra: 11.3.0 mlly: 1.6.1 pkg-types: 1.3.1 @@ -39091,6 +40525,8 @@ snapshots: node-domexception@1.0.0: {} + node-fetch-native@1.6.7: {} + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 @@ -39395,6 +40831,14 @@ snapshots: transitivePeerDependencies: - debug + nypm@0.6.2: + dependencies: + citty: 0.1.6 + consola: 3.4.2 + pathe: 2.0.3 + pkg-types: 2.3.0 + tinyexec: 1.0.1 + object-assign@4.1.1: {} object-copy@0.1.0: @@ -39464,6 +40908,8 @@ snapshots: obuf@1.1.2: {} + ohash@2.0.11: {} + on-finished@2.3.0: dependencies: ee-first: 1.1.1 @@ -39691,7 +41137,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) get-uri: 6.0.4 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -39707,6 +41153,8 @@ snapshots: package-json-from-dist@1.0.1: {} + package-manager-detector@1.4.0: {} + pacote@20.0.0: dependencies: '@npmcli/git': 6.0.3 @@ -39927,6 +41375,8 @@ snapshots: pathval@1.1.1: {} + pathval@2.0.1: {} + pbkdf2@3.1.2: dependencies: create-hash: 1.2.0 @@ -39943,6 +41393,8 @@ snapshots: perfect-debounce@1.0.0: {} + perfect-debounce@2.0.0: {} + performance-now@2.1.0: {} periscopic@3.1.0: @@ -39957,6 +41409,8 @@ snapshots: picomatch@4.0.2: {} + picomatch@4.0.3: {} + pify@2.3.0: {} pify@4.0.1: {} @@ -39999,6 +41453,12 @@ snapshots: mlly: 1.7.4 pathe: 2.0.3 + pkg-types@2.3.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.7 + pathe: 2.0.3 + pkg-up@2.0.0: dependencies: find-up: 2.1.0 @@ -40018,7 +41478,7 @@ snapshots: portfinder@1.0.35: dependencies: async: 3.2.6 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) transitivePeerDependencies: - supports-color @@ -40038,6 +41498,12 @@ snapshots: postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 + postcss-calc@9.0.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + postcss-colormin@5.3.1(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40054,6 +41520,14 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-colormin@6.1.0(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-convert-values@5.1.3(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40066,6 +41540,12 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-convert-values@6.1.0(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-custom-properties@13.3.12(postcss@8.5.4): dependencies: '@csstools/cascade-layer-name-parser': 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) @@ -40075,6 +41555,15 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-custom-properties@13.3.12(postcss@8.5.6): + dependencies: + '@csstools/cascade-layer-name-parser': 1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/utilities': 1.0.0(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-discard-comments@5.1.2(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40083,6 +41572,10 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-discard-comments@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-discard-duplicates@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40091,6 +41584,10 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-discard-duplicates@6.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-discard-empty@5.1.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40099,6 +41596,10 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-discard-empty@6.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-discard-overridden@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40107,14 +41608,26 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-discard-overridden@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-flexbugs-fixes@5.0.2(postcss@8.5.4): dependencies: postcss: 8.5.4 + postcss-flexbugs-fixes@5.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-font-variant@5.0.0(postcss@8.5.4): dependencies: postcss: 8.5.4 + postcss-font-variant@5.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-import@14.1.0(postcss@8.5.3): dependencies: postcss: 8.5.3 @@ -40133,18 +41646,22 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-initial@4.0.1(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-js@4.0.1(postcss@8.5.3): dependencies: camelcase-css: 2.0.1 postcss: 8.5.3 - postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)): + postcss-load-config@3.1.4(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: postcss: 8.5.6 - ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2) postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)): dependencies: @@ -40154,6 +41671,22 @@ snapshots: postcss: 8.5.3 ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2) + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + lilconfig: 3.1.3 + yaml: 2.7.0 + optionalDependencies: + postcss: 8.5.3 + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2) + + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3)): + dependencies: + lilconfig: 3.1.3 + yaml: 2.7.0 + optionalDependencies: + postcss: 8.5.3 + ts-node: 10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3) + postcss-loader@6.2.1(postcss@8.5.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.15))): dependencies: cosmiconfig: 7.1.0 @@ -40182,9 +41715,21 @@ snapshots: transitivePeerDependencies: - typescript - postcss-loader@8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.8.2)(webpack@5.99.9): + postcss-loader@8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.9.3)(webpack@5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17))): dependencies: - cosmiconfig: 9.0.0(typescript@5.8.2) + cosmiconfig: 9.0.0(typescript@5.9.3) + jiti: 1.21.7 + postcss: 8.5.3 + semver: 7.7.1 + optionalDependencies: + '@rspack/core': 1.2.8(@swc/helpers@0.5.17) + webpack: 5.99.9(@swc/core@1.11.13(@swc/helpers@0.5.17)) + transitivePeerDependencies: + - typescript + + postcss-loader@8.1.1(@rspack/core@1.2.8(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.9.3)(webpack@5.99.9): + dependencies: + cosmiconfig: 9.0.0(typescript@5.9.3) jiti: 1.21.7 postcss: 8.5.3 semver: 7.7.1 @@ -40246,6 +41791,10 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-media-minmax@5.0.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-media-query-parser@0.2.3: {} postcss-merge-longhand@5.1.7(postcss@8.5.6): @@ -40260,6 +41809,12 @@ snapshots: postcss-value-parser: 4.2.0 stylehacks: 6.1.1(postcss@8.5.4) + postcss-merge-longhand@6.0.5(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + stylehacks: 6.1.1(postcss@8.5.6) + postcss-merge-rules@5.1.4(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40276,6 +41831,14 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 6.1.2 + postcss-merge-rules@6.1.1(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + caniuse-api: 3.0.0 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-minify-font-values@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40286,6 +41849,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-minify-font-values@6.1.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-minify-gradients@5.1.1(postcss@8.5.6): dependencies: colord: 2.9.3 @@ -40300,6 +41868,13 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-minify-gradients@6.0.3(postcss@8.5.6): + dependencies: + colord: 2.9.3 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-minify-params@5.1.4(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40314,6 +41889,13 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-minify-params@6.1.0(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-minify-selectors@5.2.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40324,6 +41906,11 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 6.1.2 + postcss-minify-selectors@6.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-modules-extract-imports@3.1.0(postcss@8.5.3): dependencies: postcss: 8.5.3 @@ -40411,6 +41998,13 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 6.1.2 + postcss-nesting@12.1.5(postcss@8.5.6): + dependencies: + '@csstools/selector-resolve-nested': 1.1.0(postcss-selector-parser@6.1.2) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2) + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-normalize-charset@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40419,6 +42013,10 @@ snapshots: dependencies: postcss: 8.5.4 + postcss-normalize-charset@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-normalize-display-values@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40429,6 +42027,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-display-values@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-positions@5.1.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40439,6 +42042,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-positions@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-repeat-style@5.1.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40449,6 +42057,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-repeat-style@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-string@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40459,6 +42072,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-string@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-timing-functions@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40469,6 +42087,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-timing-functions@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-unicode@5.1.1(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40481,6 +42104,12 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-unicode@6.1.0(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-url@5.1.0(postcss@8.5.6): dependencies: normalize-url: 6.1.0 @@ -40492,6 +42121,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-url@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-normalize-whitespace@5.1.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40502,6 +42136,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-normalize-whitespace@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-ordered-values@5.1.3(postcss@8.5.6): dependencies: cssnano-utils: 3.1.0(postcss@8.5.6) @@ -40514,10 +42153,20 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-ordered-values@6.0.2(postcss@8.5.6): + dependencies: + cssnano-utils: 4.0.2(postcss@8.5.6) + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-page-break@3.0.4(postcss@8.5.4): dependencies: postcss: 8.5.4 + postcss-page-break@3.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-reduce-initial@5.1.2(postcss@8.5.6): dependencies: browserslist: 4.26.2 @@ -40530,6 +42179,12 @@ snapshots: caniuse-api: 3.0.0 postcss: 8.5.4 + postcss-reduce-initial@6.1.0(postcss@8.5.6): + dependencies: + browserslist: 4.26.2 + caniuse-api: 3.0.0 + postcss: 8.5.6 + postcss-reduce-transforms@5.1.0(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40540,6 +42195,11 @@ snapshots: postcss: 8.5.4 postcss-value-parser: 4.2.0 + postcss-reduce-transforms@6.0.2(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + postcss-resolve-nested-selector@0.1.6: {} postcss-safe-parser@7.0.1(postcss@8.5.6): @@ -40568,6 +42228,12 @@ snapshots: postcss-value-parser: 4.2.0 svgo: 3.3.2 + postcss-svgo@6.0.3(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + svgo: 3.3.2 + postcss-unique-selectors@5.1.1(postcss@8.5.6): dependencies: postcss: 8.5.6 @@ -40578,6 +42244,11 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 6.1.2 + postcss-unique-selectors@6.0.4(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + postcss-value-parser@4.2.0: {} postcss@8.4.41: @@ -40724,7 +42395,7 @@ snapshots: proxy-agent@6.5.0: dependencies: agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -40842,6 +42513,8 @@ snapshots: dependencies: side-channel: 1.1.0 + quansync@0.2.11: {} + query-string@9.1.1: dependencies: decode-uri-component: 0.4.1 @@ -40899,6 +42572,11 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 + rc9@2.1.2: + dependencies: + defu: 6.1.4 + destr: 2.0.5 + rc@1.2.8: dependencies: deep-extend: 0.6.0 @@ -40926,6 +42604,11 @@ snapshots: react: 19.0.0 scheduler: 0.25.0 + react-dom@19.2.0(react@19.2.0): + dependencies: + react: 19.2.0 + scheduler: 0.27.0 + react-error-boundary@4.1.2(react@18.3.1): dependencies: '@babel/runtime': 7.28.4 @@ -41086,6 +42769,8 @@ snapshots: react@19.0.0: {} + react@19.2.0: {} + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -41142,6 +42827,11 @@ snapshots: dependencies: resolve: 1.22.10 + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + redeyed@1.0.1: dependencies: esprima: 3.0.0 @@ -41373,7 +43063,7 @@ snapshots: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.5.4 + postcss: 8.5.6 source-map: 0.6.1 resolve-url@0.2.1: {} @@ -41453,11 +43143,50 @@ snapshots: hash-base: 3.0.5 inherits: 2.0.4 - rolldown@1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.8.2): + rolldown-plugin-dts@0.13.14(rolldown@1.0.0-beta.9)(typescript@5.9.3): + dependencies: + '@babel/generator': 7.28.3 + '@babel/parser': 7.28.4 + '@babel/types': 7.28.4 + ast-kit: 2.1.3 + birpc: 2.6.1 + debug: 4.4.3(supports-color@5.5.0) + dts-resolver: 2.1.2 + get-tsconfig: 4.10.1 + rolldown: 1.0.0-beta.9 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - oxc-resolver + - supports-color + + rolldown-vite@7.1.16(@types/node@22.18.8)(esbuild@0.25.1)(jiti@2.6.1)(less@4.2.0)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): + dependencies: + '@oxc-project/runtime': 0.92.0 + fdir: 6.5.0(picomatch@4.0.3) + lightningcss: 1.30.2 + picomatch: 4.0.3 + postcss: 8.5.6 + rolldown: 1.0.0-beta.42 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 22.18.8 + esbuild: 0.25.1 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.2.0 + sass: 1.86.0 + sass-embedded: 1.89.0 + stylus: 0.64.0 + terser: 5.39.0 + tsx: 4.20.5 + yaml: 2.8.1 + + rolldown@1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.9.3): dependencies: '@oxc-project/types': 0.46.0 - '@valibot/to-json-schema': 1.0.0-beta.4(valibot@1.0.0-beta.12(typescript@5.8.2)) - valibot: 1.0.0-beta.12(typescript@5.8.2) + '@valibot/to-json-schema': 1.0.0-beta.4(valibot@1.0.0-beta.12(typescript@5.9.3)) + valibot: 1.0.0-beta.12(typescript@5.9.3) optionalDependencies: '@babel/runtime': 7.28.4 '@rolldown/binding-darwin-arm64': 1.0.0-beta.3 @@ -41475,7 +43204,47 @@ snapshots: transitivePeerDependencies: - typescript - rollup-plugin-postcss@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)): + rolldown@1.0.0-beta.42: + dependencies: + '@oxc-project/types': 0.94.0 + '@rolldown/pluginutils': 1.0.0-beta.42 + ansis: 4.2.0 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.0-beta.42 + '@rolldown/binding-darwin-arm64': 1.0.0-beta.42 + '@rolldown/binding-darwin-x64': 1.0.0-beta.42 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.42 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.42 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.42 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.42 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.42 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.42 + '@rolldown/binding-openharmony-arm64': 1.0.0-beta.42 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.42 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.42 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.42 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.42 + + rolldown@1.0.0-beta.9: + dependencies: + '@oxc-project/types': 0.70.0 + '@rolldown/pluginutils': 1.0.0-beta.9 + ansis: 4.2.0 + optionalDependencies: + '@rolldown/binding-darwin-arm64': 1.0.0-beta.9 + '@rolldown/binding-darwin-x64': 1.0.0-beta.9 + '@rolldown/binding-freebsd-x64': 1.0.0-beta.9 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.9 + '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.9 + '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.9 + '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.9 + '@rolldown/binding-linux-x64-musl': 1.0.0-beta.9 + '@rolldown/binding-wasm32-wasi': 1.0.0-beta.9 + '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.9 + '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.9 + '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.9 + + rollup-plugin-postcss@4.0.2(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): dependencies: chalk: 4.1.2 concat-with-sourcemaps: 1.1.0 @@ -41484,7 +43253,7 @@ snapshots: p-queue: 6.6.2 pify: 5.0.0 postcss: 8.5.6 - postcss-load-config: 3.1.4(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.13.13)(typescript@5.8.2)) + postcss-load-config: 3.1.4(postcss@8.5.6)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) postcss-modules: 4.3.1(postcss@8.5.6) promise.series: 0.2.0 resolve: 1.22.10 @@ -41980,6 +43749,8 @@ snapshots: scheduler@0.25.0: {} + scheduler@0.27.0: {} + schema-utils@2.7.1: dependencies: '@types/json-schema': 7.0.15 @@ -42042,6 +43813,8 @@ snapshots: semver@7.7.1: {} + semver@7.7.3: {} + send@0.18.0: dependencies: debug: 2.6.9 @@ -42368,7 +44141,7 @@ snapshots: socks-proxy-agent@8.0.5: dependencies: agent-base: 7.1.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) socks: 2.8.4 transitivePeerDependencies: - supports-color @@ -42505,7 +44278,7 @@ snapshots: spdy-transport@3.0.0: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -42516,7 +44289,7 @@ snapshots: spdy@4.0.2: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -42573,6 +44346,8 @@ snapshots: std-env@3.8.1: {} + std-env@3.9.0: {} + stream-browserify@3.0.0: dependencies: inherits: 2.0.4 @@ -42588,7 +44363,7 @@ snapshots: streamroller@3.1.5: dependencies: date-format: 4.0.14 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) fs-extra: 8.1.0 transitivePeerDependencies: - supports-color @@ -42730,6 +44505,10 @@ snapshots: strip-final-newline@3.0.0: {} + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + strip-json-comments@2.0.1: {} strip-json-comments@3.1.1: {} @@ -42738,6 +44517,10 @@ snapshots: dependencies: js-tokens: 9.0.1 + strip-literal@3.1.0: + dependencies: + js-tokens: 9.0.1 + strtok3@9.1.1: dependencies: '@tokenizer/token': 0.3.0 @@ -42803,16 +44586,22 @@ snapshots: postcss: 8.5.4 postcss-selector-parser: 6.1.2 - stylelint-config-recommended@16.0.0(stylelint@16.24.0(typescript@5.8.2)): + stylehacks@6.1.1(postcss@8.5.6): dependencies: - stylelint: 16.24.0(typescript@5.8.2) + browserslist: 4.26.2 + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + stylelint-config-recommended@16.0.0(stylelint@16.24.0(typescript@5.9.3)): + dependencies: + stylelint: 16.24.0(typescript@5.9.3) - stylelint-config-standard@38.0.0(stylelint@16.24.0(typescript@5.8.2)): + stylelint-config-standard@38.0.0(stylelint@16.24.0(typescript@5.9.3)): dependencies: - stylelint: 16.24.0(typescript@5.8.2) - stylelint-config-recommended: 16.0.0(stylelint@16.24.0(typescript@5.8.2)) + stylelint: 16.24.0(typescript@5.9.3) + stylelint-config-recommended: 16.0.0(stylelint@16.24.0(typescript@5.9.3)) - stylelint@16.24.0(typescript@5.8.2): + stylelint@16.24.0(typescript@5.9.3): dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 @@ -42821,10 +44610,10 @@ snapshots: '@dual-bundle/import-meta-resolve': 4.2.1 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 9.0.0(typescript@5.8.2) + cosmiconfig: 9.0.0(typescript@5.9.3) css-functions-list: 3.2.3 css-tree: 3.1.0 - debug: 4.4.3 + debug: 4.4.3(supports-color@5.5.0) fast-glob: 3.3.3 fastest-levenshtein: 1.0.16 file-entry-cache: 10.1.4 @@ -42875,7 +44664,7 @@ snapshots: stylus@0.64.0: dependencies: '@adobe/css-tools': 4.3.3 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) glob: 10.4.5 sax: 1.4.1 source-map: 0.7.4 @@ -42911,11 +44700,11 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@4.1.5(picomatch@4.0.2)(svelte@5.25.3)(typescript@5.8.2): + svelte-check@4.1.5(picomatch@4.0.3)(svelte@5.25.3)(typescript@5.8.2): dependencies: '@jridgewell/trace-mapping': 0.3.25 chokidar: 4.0.3 - fdir: 6.4.3(picomatch@4.0.2) + fdir: 6.4.3(picomatch@4.0.3) picocolors: 1.1.1 sade: 1.8.1 svelte: 5.25.3 @@ -43003,7 +44792,7 @@ snapshots: sync-disk-cache@2.1.0: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) heimdalljs: 0.2.6 mkdirp: 0.5.6 rimraf: 3.0.2 @@ -43048,6 +44837,60 @@ snapshots: transitivePeerDependencies: - ts-node + tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)): + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.6.0 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.3 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.7 + lilconfig: 3.1.3 + micromatch: 4.0.8 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.1.1 + postcss: 8.5.3 + postcss-import: 15.1.0(postcss@8.5.3) + postcss-js: 4.0.1(postcss@8.5.3) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2)) + postcss-nested: 6.2.0(postcss@8.5.3) + postcss-selector-parser: 6.1.2 + resolve: 1.22.10 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + + tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3)): + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.6.0 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.3 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.7 + lilconfig: 3.1.3 + micromatch: 4.0.8 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.1.1 + postcss: 8.5.3 + postcss-import: 15.1.0(postcss@8.5.3) + postcss-js: 4.0.1(postcss@8.5.3) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3)) + postcss-nested: 6.2.0(postcss@8.5.3) + postcss-selector-parser: 6.1.2 + resolve: 1.22.10 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + tailwindcss@4.1.4: optional: true @@ -43239,7 +45082,7 @@ snapshots: express: 4.21.2 fireworm: 0.7.2 glob: 7.2.3 - http-proxy: 1.18.1(debug@4.4.0) + http-proxy: 1.18.1 js-yaml: 3.14.1 lodash: 4.17.21 mkdirp: 3.0.1 @@ -43365,6 +45208,10 @@ snapshots: tinycolor2@1.6.0: {} + tinyexec@0.3.2: {} + + tinyexec@1.0.1: {} + tinyglobby@0.2.12: dependencies: fdir: 6.4.3(picomatch@4.0.2) @@ -43375,6 +45222,11 @@ snapshots: fdir: 6.4.5(picomatch@4.0.2) picomatch: 4.0.2 + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + tinygradient@1.1.5: dependencies: '@types/tinycolor2': 1.4.6 @@ -43382,8 +45234,14 @@ snapshots: tinypool@0.8.4: {} + tinypool@1.1.1: {} + + tinyrainbow@2.0.0: {} + tinyspy@2.2.1: {} + tinyspy@4.0.4: {} + title-case@2.1.1: dependencies: no-case: 2.3.2 @@ -43500,7 +45358,7 @@ snapshots: tree-sync@2.1.0: dependencies: - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) fs-tree-diff: 2.0.1 mkdirp: 0.5.6 quick-temp: 0.1.8 @@ -43516,6 +45374,11 @@ snapshots: dependencies: typescript: 5.8.2 + ts-api-utils@2.1.0(typescript@5.9.3): + dependencies: + typescript: 5.9.3 + optional: true + ts-checker-rspack-plugin@1.1.1(@rspack/core@1.5.5(@swc/helpers@0.5.15))(typescript@5.8.2): dependencies: '@babel/code-frame': 7.26.2 @@ -43565,10 +45428,10 @@ snapshots: optionalDependencies: '@rspack/core': 1.5.5(@swc/helpers@0.5.17) - ts-declaration-location@1.0.7(typescript@5.8.2): + ts-declaration-location@1.0.7(typescript@5.9.3): dependencies: picomatch: 4.0.2 - typescript: 5.8.2 + typescript: 5.9.3 ts-deepmerge@7.0.2: {} @@ -43750,6 +45613,47 @@ snapshots: optionalDependencies: '@swc/core': 1.11.13(@swc/helpers@0.5.17) + ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.8.2): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 22.18.8 + acorn: 8.14.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.8.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.11.13(@swc/helpers@0.5.17) + + ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@22.18.8)(typescript@5.9.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 22.18.8 + acorn: 8.14.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.9.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optionalDependencies: + '@swc/core': 1.11.13(@swc/helpers@0.5.17) + optional: true + tsconfig-paths-webpack-plugin@4.0.0: dependencies: chalk: 4.1.2 @@ -43776,6 +45680,30 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 + tsdown@0.11.13(typescript@5.9.3): + dependencies: + ansis: 4.2.0 + cac: 6.7.14 + chokidar: 4.0.3 + debug: 4.4.3(supports-color@5.5.0) + diff: 8.0.2 + empathic: 1.1.0 + hookable: 5.5.3 + rolldown: 1.0.0-beta.9 + rolldown-plugin-dts: 0.13.14(rolldown@1.0.0-beta.9)(typescript@5.9.3) + semver: 7.7.3 + tinyexec: 1.0.1 + tinyglobby: 0.2.14 + unconfig: 7.3.3 + optionalDependencies: + typescript: 5.9.3 + transitivePeerDependencies: + - '@oxc-project/runtime' + - '@typescript/native-preview' + - oxc-resolver + - supports-color + - vue-tsc + tslib@1.14.1: {} tslib@2.6.3: {} @@ -43796,7 +45724,7 @@ snapshots: tuf-js@3.0.1: dependencies: '@tufjs/models': 3.0.1 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.3(supports-color@5.5.0) make-fetch-happen: 14.0.3 transitivePeerDependencies: - supports-color @@ -43894,12 +45822,12 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typescript-eslint@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2): + typescript-eslint@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2): dependencies: - '@typescript-eslint/eslint-plugin': 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.4.2))(typescript@5.8.2) - eslint: 9.15.0(jiti@2.4.2) + '@typescript-eslint/eslint-plugin': 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2))(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/parser': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + '@typescript-eslint/utils': 8.28.0(eslint@9.15.0(jiti@2.6.1))(typescript@5.8.2) + eslint: 9.15.0(jiti@2.6.1) typescript: 5.8.2 transitivePeerDependencies: - supports-color @@ -43910,6 +45838,8 @@ snapshots: typescript@5.8.2: {} + typescript@5.9.3: {} + uc.micro@2.1.0: {} ufo@1.5.4: {} @@ -43931,6 +45861,13 @@ snapshots: buffer: 5.7.1 through: 2.3.8 + unconfig@7.3.3: + dependencies: + '@quansync/fs': 0.1.5 + defu: 6.1.4 + jiti: 2.6.1 + quansync: 0.2.11 + underscore.string@3.3.6: dependencies: sprintf-js: 1.1.3 @@ -43940,6 +45877,8 @@ snapshots: undici-types@6.20.0: {} + undici-types@6.21.0: {} + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-match-property-ecmascript@2.0.0: @@ -44168,9 +46107,9 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 - valibot@1.0.0-beta.12(typescript@5.8.2): + valibot@1.0.0-beta.12(typescript@5.9.3): optionalDependencies: - typescript: 5.8.2 + typescript: 5.9.3 validate-html-nesting@1.2.2: {} @@ -44220,15 +46159,34 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@1.6.1(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): + vite-node@1.6.1(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): dependencies: cac: 6.7.14 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.1.1 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite-node@3.2.4(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): + dependencies: + cac: 6.7.14 + debug: 4.4.3(supports-color@5.5.0) + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) transitivePeerDependencies: - '@types/node' + - jiti - less - lightningcss - sass @@ -44237,24 +46195,26 @@ snapshots: - sugarss - supports-color - terser + - tsx + - yaml - vite-plugin-inspect@0.8.9(rollup@4.37.0)(vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)): + vite-plugin-inspect@0.8.9(rollup@4.37.0)(vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)): dependencies: '@antfu/utils': 0.7.10 '@rollup/pluginutils': 5.1.4(rollup@4.37.0) - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) error-stack-parser-es: 0.1.5 fs-extra: 11.3.0 open: 10.1.0 perfect-debounce: 1.0.0 picocolors: 1.1.1 sirv: 3.0.1 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite: 5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) transitivePeerDependencies: - rollup - supports-color - vite-plugin-solid@2.11.6(solid-js@1.9.5)(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)): + vite-plugin-solid@2.11.6(@testing-library/jest-dom@6.9.1)(solid-js@1.9.5)(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)): dependencies: '@babel/core': 7.28.4 '@types/babel__core': 7.20.5 @@ -44262,12 +46222,42 @@ snapshots: merge-anything: 5.1.7 solid-js: 1.9.5 solid-refresh: 0.6.3(solid-js@1.9.5) - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) - vitefu: 1.0.6(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + vitefu: 1.0.6(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) + optionalDependencies: + '@testing-library/jest-dom': 6.9.1 + transitivePeerDependencies: + - supports-color + + vite-plugin-zephyr@0.0.59(@types/node@22.13.13)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): + dependencies: + '@module-federation/runtime': 0.11.2 + '@module-federation/vite': 1.4.1(rollup@4.37.0) + acorn: 8.14.1 + acorn-walk: 8.3.4 + is-ci: 4.1.0 + json5: 2.2.3 + rollup: 4.37.0 + vite: 6.3.5(@types/node@22.13.13)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + zephyr-agent: 0.0.59(encoding@0.1.13) transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss - supports-color + - terser + - tsx + - utf-8-validate + - yaml - vite-plugin-zephyr@0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite-plugin-zephyr@0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: '@module-federation/runtime': 0.11.2 '@module-federation/vite': 1.4.1(rollup@4.37.0) @@ -44276,7 +46266,7 @@ snapshots: is-ci: 4.1.0 json5: 2.2.3 rollup: 4.37.0 - vite: 6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) zephyr-agent: 0.0.59(encoding@0.1.13) transitivePeerDependencies: - '@types/node' @@ -44295,7 +46285,7 @@ snapshots: - utf-8-validate - yaml - vite-plugin-zephyr@0.0.59(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite-plugin-zephyr@0.0.59(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: '@module-federation/runtime': 0.11.2 '@module-federation/vite': 1.4.1(rollup@4.37.0) @@ -44304,7 +46294,7 @@ snapshots: is-ci: 4.1.0 json5: 2.2.3 rollup: 4.37.0 - vite: 6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) zephyr-agent: 0.0.59(encoding@0.1.13) transitivePeerDependencies: - '@types/node' @@ -44323,7 +46313,7 @@ snapshots: - utf-8-validate - yaml - vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6): + vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6): dependencies: esbuild: 0.21.5 postcss: 8.5.3 @@ -44332,13 +46322,13 @@ snapshots: '@types/node': 22.13.13 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 sass: 1.77.6 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.31.6 - vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): + vite@5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): dependencies: esbuild: 0.21.5 postcss: 8.5.3 @@ -44347,49 +46337,80 @@ snapshots: '@types/node': 22.13.13 fsevents: 2.3.3 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 + sass: 1.86.0 + sass-embedded: 1.89.0 + stylus: 0.64.0 + terser: 5.39.0 + + vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.77.6)(stylus@0.64.0)(terser@5.31.6): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.3 + rollup: 4.37.0 + optionalDependencies: + '@types/node': 22.18.8 + fsevents: 2.3.3 + less: 4.2.0 + lightningcss: 1.30.2 + sass: 1.77.6 + sass-embedded: 1.89.0 + stylus: 0.64.0 + terser: 5.31.6 + optional: true + + vite@5.4.15(@types/node@22.18.8)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.3 + rollup: 4.37.0 + optionalDependencies: + '@types/node': 22.18.8 + fsevents: 2.3.3 + less: 4.2.0 + lightningcss: 1.30.2 sass: 1.86.0 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.39.0 - vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: esbuild: 0.25.1 postcss: 8.5.4 rollup: 4.37.0 optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 fsevents: 2.3.3 - jiti: 2.4.2 + jiti: 2.6.1 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 sass: 1.85.0 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.39.0 tsx: 4.20.5 - yaml: 2.7.0 + yaml: 2.8.1 - vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: esbuild: 0.25.1 postcss: 8.5.4 rollup: 4.37.0 optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 fsevents: 2.3.3 - jiti: 2.4.2 + jiti: 2.6.1 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 sass: 1.86.0 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.39.0 tsx: 4.20.5 - yaml: 2.7.0 + yaml: 2.8.1 - vite@6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite@6.3.5(@types/node@22.13.13)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: esbuild: 0.25.1 fdir: 6.4.5(picomatch@4.0.2) @@ -44400,17 +46421,38 @@ snapshots: optionalDependencies: '@types/node': 22.13.13 fsevents: 2.3.3 - jiti: 2.4.2 + jiti: 2.6.1 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 + sass: 1.86.0 + sass-embedded: 1.89.0 + stylus: 0.64.0 + terser: 5.39.0 + tsx: 4.20.5 + yaml: 2.8.1 + + vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.85.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): + dependencies: + esbuild: 0.25.1 + fdir: 6.4.5(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.4 + rollup: 4.37.0 + tinyglobby: 0.2.14 + optionalDependencies: + '@types/node': 22.18.8 + fsevents: 2.3.3 + jiti: 2.6.1 + less: 4.2.0 + lightningcss: 1.30.2 sass: 1.85.0 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.39.0 tsx: 4.20.5 - yaml: 2.7.0 + yaml: 2.8.1 - vite@6.3.5(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0): + vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): dependencies: esbuild: 0.25.1 fdir: 6.4.5(picomatch@4.0.2) @@ -44419,23 +46461,23 @@ snapshots: rollup: 4.37.0 tinyglobby: 0.2.14 optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.18.8 fsevents: 2.3.3 - jiti: 2.4.2 + jiti: 2.6.1 less: 4.2.0 - lightningcss: 1.29.3 + lightningcss: 1.30.2 sass: 1.86.0 sass-embedded: 1.89.0 stylus: 0.64.0 terser: 5.39.0 tsx: 4.20.5 - yaml: 2.7.0 + yaml: 2.8.1 - vitefu@1.0.6(vite@6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0)): + vitefu@1.0.6(vite@6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)): optionalDependencies: - vite: 6.2.3(@types/node@22.13.13)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.7.0) + vite: 6.2.3(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) - vitest@1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): + vitest@1.6.1(@types/node@22.13.13)(@vitest/ui@1.6.1)(happy-dom@17.6.3)(jsdom@22.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0): dependencies: '@vitest/expect': 1.6.1 '@vitest/runner': 1.6.1 @@ -44444,7 +46486,7 @@ snapshots: '@vitest/utils': 1.6.1 acorn-walk: 8.3.4 chai: 4.5.0 - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.1 magic-string: 0.30.17 @@ -44454,12 +46496,13 @@ snapshots: strip-literal: 2.1.1 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) - vite-node: 1.6.1(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.29.3)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite: 5.4.15(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) + vite-node: 1.6.1(@types/node@22.13.13)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.13.13 '@vitest/ui': 1.6.1(vitest@1.6.1) + happy-dom: 17.6.3 jsdom: 22.1.0 transitivePeerDependencies: - less @@ -44471,6 +46514,50 @@ snapshots: - supports-color - terser + vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.18.8)(happy-dom@17.6.3)(jiti@2.6.1)(jsdom@26.1.0)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + debug: 4.4.3(supports-color@5.5.0) + expect-type: 1.2.2 + magic-string: 0.30.17 + pathe: 2.0.3 + picomatch: 4.0.2 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 6.3.5(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + vite-node: 3.2.4(@types/node@22.18.8)(jiti@2.6.1)(less@4.2.0)(lightningcss@1.30.2)(sass-embedded@1.89.0)(sass@1.86.0)(stylus@0.64.0)(terser@5.39.0)(tsx@4.20.5)(yaml@2.8.1) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/debug': 4.1.12 + '@types/node': 22.18.8 + happy-dom: 17.6.3 + jsdom: 26.1.0 + transitivePeerDependencies: + - jiti + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - yaml + vm-browserify@1.1.2: {} void-elements@3.1.0: {} @@ -45586,6 +47673,8 @@ snapshots: yaml@2.7.0: {} + yaml@2.8.1: {} + yargs-parser@21.1.1: {} yargs@17.7.2: @@ -45623,7 +47712,7 @@ snapshots: axios: 1.12.2(debug@4.4.0) axios-retry: 4.5.0(axios@1.12.2(debug@4.4.0)) cloudflare: 3.5.0(encoding@0.1.13) - debug: 4.4.0(supports-color@5.5.0) + debug: 4.4.0(supports-color@8.1.1) git-url-parse: 15.0.0 is-ci: 4.1.0 jose: 5.10.0 @@ -45640,10 +47729,36 @@ snapshots: - supports-color - utf-8-validate + zephyr-agent@0.1.0-next.1(encoding@0.1.13): + dependencies: + axios: 1.12.2(debug@4.4.3) + axios-retry: 4.5.0(axios@1.12.2(debug@4.4.3)) + cloudflare: 3.5.0(encoding@0.1.13) + debug: 4.4.3(supports-color@5.5.0) + git-url-parse: 15.0.0 + is-ci: 4.1.0 + jose: 5.10.0 + node-persist: 4.0.4 + open: 10.1.0 + proper-lockfile: 4.1.2 + socket.io-client: 4.8.1 + tslib: 2.8.1 + uuid: 8.3.2 + zephyr-edge-contract: 0.1.0-next.1 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + zephyr-edge-contract@0.0.59: dependencies: tslib: 2.8.1 + zephyr-edge-contract@0.1.0-next.1: + dependencies: + tslib: 2.8.1 + zephyr-modernjs-plugin@0.0.59(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(styled-components@5.3.11(@babel/core@7.28.4)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@18.11.19)(typescript@5.7.3))(tsconfig-paths@4.2.0)(type-fest@4.38.0)(typescript@5.7.3)(webpack-dev-server@5.2.2(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19)))(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19))(zephyr-rspack-plugin@0.0.59(@swc/helpers@0.5.17)(encoding@0.1.13)(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19)))(zephyr-webpack-plugin@0.0.59(@swc/core@1.11.13(@swc/helpers@0.5.17))(encoding@0.1.13)(esbuild@0.17.19)): dependencies: '@modern-js/app-tools': 2.67.8(@rspack/core@1.5.5(@swc/helpers@0.5.17))(@swc/core@1.11.13(@swc/helpers@0.5.17))(encoding@0.1.13)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(styled-components@5.3.11(@babel/core@7.28.4)(react-dom@19.0.0(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(ts-node@10.9.2(@swc/core@1.11.13(@swc/helpers@0.5.17))(@types/node@18.11.19)(typescript@5.7.3))(tsconfig-paths@4.2.0)(type-fest@4.38.0)(typescript@5.7.3)(webpack-dev-server@5.2.2(webpack@5.99.9(@swc/core@1.10.18(@swc/helpers@0.5.17))(esbuild@0.17.19))) @@ -45685,10 +47800,10 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - zephyr-rolldown-plugin@0.0.59(@babel/runtime@7.28.4)(typescript@5.8.2): + zephyr-rolldown-plugin@0.0.59(@babel/runtime@7.28.4)(typescript@5.9.3): dependencies: is-ci: 4.1.0 - rolldown: 1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.8.2) + rolldown: 1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.9.3) zephyr-agent: 0.0.59(encoding@0.1.13) transitivePeerDependencies: - '@babel/runtime' @@ -45698,6 +47813,19 @@ snapshots: - typescript - utf-8-validate + zephyr-rolldown-plugin@0.1.0-next.1(@babel/runtime@7.28.4)(encoding@0.1.13)(typescript@5.9.3): + dependencies: + is-ci: 4.1.0 + rolldown: 1.0.0-beta.3(@babel/runtime@7.28.4)(typescript@5.9.3) + zephyr-agent: 0.1.0-next.1(encoding@0.1.13) + transitivePeerDependencies: + - '@babel/runtime' + - bufferutil + - encoding + - supports-color + - typescript + - utf-8-validate + zephyr-rsbuild-plugin@0.0.59(@rsbuild/core@1.3.22)(@swc/helpers@0.5.17)(webpack@5.99.9): dependencies: '@rsbuild/core': 1.3.22