diff --git a/apps/css-workshop/package.json b/apps/css-workshop/package.json index b06a43f87e5..406b63e5440 100644 --- a/apps/css-workshop/package.json +++ b/apps/css-workshop/package.json @@ -7,10 +7,10 @@ "devDependencies": { "@fontsource/noto-sans": "5", "@fontsource/noto-sans-mono": "5", - "@itwin/itwinui-icons-elements": "0.20.0", - "astro": "^4", - "astro-relative-links": "^0.3.7", - "backstopjs": "~6.2.1", + "@itwin/itwinui-icons-elements": "0.21.0", + "astro": "^5", + "astro-relative-links": "^0.4.2", + "backstopjs": "~6.3.25", "npm-run-all": "^4.1.5" }, "scripts": { diff --git a/apps/portal/package.json b/apps/portal/package.json index 500cdc2317d..8663b3a86e5 100644 --- a/apps/portal/package.json +++ b/apps/portal/package.json @@ -11,6 +11,6 @@ "clean": "rimraf .turbo && rimraf node_modules && rimraf dist" }, "dependencies": { - "astro": "4" + "astro": "5" } } diff --git a/apps/react-workshop/package.json b/apps/react-workshop/package.json index 5b42be456c6..628b254a91b 100644 --- a/apps/react-workshop/package.json +++ b/apps/react-workshop/package.json @@ -6,10 +6,10 @@ "devDependencies": { "@fontsource/noto-sans": "5", "@fontsource/noto-sans-mono": "5", - "@itwin/itwinui-icons-react": "2.8.0", + "@itwin/itwinui-icons-react": "2.9.0", "@itwin/itwinui-variables": "*", "@itwin/itwinui-react": "*", - "@ladle/react": "^4.1.2", + "@ladle/react": "^5.0.1", "@types/node": "*", "@types/react": "*", "@types/react-dom": "*", diff --git a/apps/website/package.json b/apps/website/package.json index 44f1f3ab8bd..394b9d4f61a 100644 --- a/apps/website/package.json +++ b/apps/website/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@astrojs/mdx": "2", - "@astrojs/react": "3", + "@astrojs/react": "4", "@astrojs/sitemap": "3", "@docsearch/css": "3", "@docsearch/js": "3", @@ -24,13 +24,13 @@ "@tippyjs/react": "4.2.6", "@types/react": "*", "astro": "^4", - "astro-auto-import": "^0.4.2", - "astro-expressive-code": "^0.33.5", + "astro-auto-import": "^0.4.4", + "astro-expressive-code": "^0.40.1", "examples": "workspace:*", "htm": "^3", - "lightningcss": "^1.25.0", + "lightningcss": "^1.29.1", "nanoid": "*", - "nanostores": "^0.9.0", + "nanostores": "^0.11.3", "outdent": "^0.8.0", "postcss-preset-env": "9", "react": "*", diff --git a/minimal-sandbox/package.json b/minimal-sandbox/package.json index eaf9f6947b5..3151063623e 100644 --- a/minimal-sandbox/package.json +++ b/minimal-sandbox/package.json @@ -16,7 +16,7 @@ "@types/react-dom": "18", "@vitejs/plugin-react": "4", "typescript": "5", - "vite": "5" + "vite": "6" }, "scripts": { "dev": "vite", diff --git a/playgrounds/astro/package.json b/playgrounds/astro/package.json index f675b19f70b..4bf4f29efec 100644 --- a/playgrounds/astro/package.json +++ b/playgrounds/astro/package.json @@ -12,7 +12,7 @@ "clean": "rimraf .turbo && rimraf node_modules && rimraf dist" }, "dependencies": { - "@astrojs/react": "3", + "@astrojs/react": "4", "@itwin/itwinui-react": "*", "astro": "4", "react": "^18.2.0", diff --git a/playgrounds/next/next.config.mjs b/playgrounds/next/next.config.mjs index a38122b5160..497be05f0e4 100644 --- a/playgrounds/next/next.config.mjs +++ b/playgrounds/next/next.config.mjs @@ -3,7 +3,6 @@ */ const nextConfig = { reactStrictMode: true, - swcMinify: true, transpilePackages: ['@itwin/itwinui-react'], }; diff --git a/playgrounds/next/package.json b/playgrounds/next/package.json index c37c7f268cf..035aa7935c7 100644 --- a/playgrounds/next/package.json +++ b/playgrounds/next/package.json @@ -14,7 +14,7 @@ "@types/node": "*", "@types/react": "^18", "@types/react-dom": "^18", - "next": "^14.2.21", + "next": "^15.1.6", "react": "^18", "react-dom": "^18", "typescript": "5" diff --git a/playgrounds/remix/app/root.tsx b/playgrounds/remix/app/root.tsx index 2ab61d8fd2d..7b4f6a3863f 100644 --- a/playgrounds/remix/app/root.tsx +++ b/playgrounds/remix/app/root.tsx @@ -6,8 +6,15 @@ import { ScrollRestoration, } from '@remix-run/react'; import { ThemeProvider } from '@itwin/itwinui-react'; -import '@itwin/itwinui-react/styles.css'; -import './root.css'; + +import iTwinUIStyles from '@itwin/itwinui-react/styles.css?url'; +import rootStyles from './root.css?url'; +import { LinksFunction } from '@remix-run/node'; + +export const links: LinksFunction = () => [ + { rel: 'stylesheet', href: iTwinUIStyles }, + { rel: 'stylesheet', href: rootStyles }, +]; export function Layout({ children }: { children: React.ReactNode }) { return ( diff --git a/playgrounds/remix/package.json b/playgrounds/remix/package.json index f4cfaf42a49..e6b36142ab6 100644 --- a/playgrounds/remix/package.json +++ b/playgrounds/remix/package.json @@ -12,20 +12,20 @@ }, "dependencies": { "@itwin/itwinui-react": "*", - "@remix-run/node": "^2.8.0", - "@remix-run/react": "^2.8.0", - "@remix-run/serve": "^2.8.0", - "isbot": "^4.1.0", + "@remix-run/node": "^2.15.2", + "@remix-run/react": "^2.15.2", + "@remix-run/serve": "^2.15.2", + "isbot": "^5.1.22", "react": "^18", "react-dom": "^18" }, "devDependencies": { - "@remix-run/dev": "^2.8.0", + "@remix-run/dev": "^2.15.2", "@types/react": "^18", "@types/react-dom": "^18", "typescript": "5", - "vite": "^5", - "vite-tsconfig-paths": "^4.2.1" + "vite": "^6", + "vite-tsconfig-paths": "^5.1.4" }, "lint-staged": { "*.{tsx,ts,jsx,js}": [ diff --git a/playgrounds/vite/package.json b/playgrounds/vite/package.json index 4bda5ac301b..26c6fd2a7fe 100644 --- a/playgrounds/vite/package.json +++ b/playgrounds/vite/package.json @@ -18,9 +18,9 @@ "devDependencies": { "@types/react": "^18", "@types/react-dom": "^18", - "@vitejs/plugin-react": "^4.2.1", + "@vitejs/plugin-react": "^4.3.4", "typescript": "5", - "vite": "^5" + "vite": "^6" }, "lint-staged": { "*.{tsx,ts,jsx,js}": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b7bc3dc1d0..125f276ca92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -85,17 +85,17 @@ importers: specifier: '5' version: 5.0.19 '@itwin/itwinui-icons-elements': - specifier: 0.20.0 - version: 0.20.0 + specifier: 0.21.0 + version: 0.21.0 astro: specifier: ~4.16.3 - version: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + version: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) astro-relative-links: - specifier: ^0.3.7 - version: 0.3.7(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + specifier: ^0.4.2 + version: 0.4.2(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) backstopjs: - specifier: ~6.2.1 - version: 6.2.2(typescript@5.5.2) + specifier: ~6.3.25 + version: 6.3.25(typescript@5.5.2) npm-run-all: specifier: ^4.1.5 version: 4.1.5 @@ -104,7 +104,7 @@ importers: dependencies: astro: specifier: ~4.16.3 - version: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + version: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) apps/react-workshop: devDependencies: @@ -115,8 +115,8 @@ importers: specifier: '5' version: 5.0.19 '@itwin/itwinui-icons-react': - specifier: 2.8.0 - version: 2.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 2.9.0 + version: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@itwin/itwinui-react': specifier: '*' version: link:../../packages/itwinui-react @@ -124,8 +124,8 @@ importers: specifier: '*' version: link:../../packages/itwinui-variables '@ladle/react': - specifier: ^4.1.2 - version: 4.1.2(@swc/helpers@0.5.15)(@types/node@22.5.5)(@types/react@18.2.14)(lightningcss@1.25.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + specifier: ^5.0.1 + version: 5.0.1(@swc/helpers@0.5.15)(@types/node@22.5.5)(@types/react@18.2.14)(acorn@8.14.0)(lightningcss@1.29.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(yaml@2.5.0) '@types/node': specifier: '*' version: 22.5.5 @@ -158,16 +158,16 @@ importers: version: 5.5.2 vite: specifier: '*' - version: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + version: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) apps/website: dependencies: '@astrojs/mdx': specifier: '2' - version: 2.2.0(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) + version: 2.2.0(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) '@astrojs/react': - specifier: '3' - version: 3.1.0(@types/react-dom@18.2.18)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + specifier: '4' + version: 4.2.0(@types/node@22.5.5)(@types/react-dom@18.2.18)(@types/react@18.2.14)(lightningcss@1.29.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) '@astrojs/sitemap': specifier: '3' version: 3.1.1 @@ -200,13 +200,13 @@ importers: version: 18.2.14 astro: specifier: ~4.16.3 - version: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + version: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) astro-auto-import: - specifier: ^0.4.2 - version: 0.4.2(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) + specifier: ^0.4.4 + version: 0.4.4(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) astro-expressive-code: - specifier: ^0.33.5 - version: 0.33.5(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) + specifier: ^0.40.1 + version: 0.40.1(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)) examples: specifier: workspace:* version: link:../../examples @@ -214,14 +214,14 @@ importers: specifier: ^3 version: 3.1.1 lightningcss: - specifier: ^1.25.0 - version: 1.25.1 + specifier: ^1.29.1 + version: 1.29.1 nanoid: specifier: '*' version: 3.3.8 nanostores: - specifier: ^0.9.0 - version: 0.9.5 + specifier: ^0.11.3 + version: 0.11.3 outdent: specifier: ^0.8.0 version: 0.8.0 @@ -316,7 +316,7 @@ importers: version: 3.6.0 lightningcss: specifier: ^1.25.0 - version: 1.25.1 + version: 1.29.1 npm-run-all: specifier: ^4.1.5 version: 4.1.5 @@ -340,7 +340,7 @@ importers: version: 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@swc/helpers': specifier: ^0.5.11 - version: 0.5.11 + version: 0.5.15 '@tanstack/react-virtual': specifier: ^3.8.2 version: 3.8.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -356,13 +356,13 @@ importers: devDependencies: '@swc/cli': specifier: ^0.5.1 - version: 0.5.1(@swc/core@1.5.28(@swc/helpers@0.5.11))(chokidar@3.6.0) + version: 0.5.1(@swc/core@1.10.14(@swc/helpers@0.5.15))(chokidar@3.6.0) '@swc/core': specifier: ^1.5.28 - version: 1.5.28(@swc/helpers@0.5.11) + version: 1.10.14(@swc/helpers@0.5.15) '@testing-library/jest-dom': specifier: ^6.3.0 - version: 6.3.0(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + version: 6.3.0(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)) '@testing-library/react': specifier: ^13.2.0 version: 13.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -380,7 +380,7 @@ importers: version: 18.2.18 '@vitest/coverage-v8': specifier: ^1.6.1 - version: 1.6.1(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + version: 1.6.1(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)) eslint: specifier: ^8 version: 8.56.0 @@ -404,10 +404,10 @@ importers: version: 5.5.2 vite: specifier: ~5.4.14 - version: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + version: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) vitest: specifier: ^1.6.1 - version: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + version: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) packages/itwinui-variables: devDependencies: @@ -418,14 +418,14 @@ importers: playgrounds/astro: dependencies: '@astrojs/react': - specifier: '3' - version: 3.1.0(@types/react-dom@18.2.18)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + specifier: '4' + version: 4.2.0(@types/node@22.5.5)(@types/react-dom@18.2.18)(@types/react@18.2.14)(lightningcss@1.29.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) '@itwin/itwinui-react': specifier: '*' version: link:../../packages/itwinui-react astro: specifier: ~4.16.3 - version: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + version: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) react: specifier: ^18.2.0 version: 18.2.0 @@ -448,8 +448,8 @@ importers: specifier: 18.2.18 version: 18.2.18 next: - specifier: ^14.2.21 - version: 14.2.21(@playwright/test@1.42.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.72.0) + specifier: ^15.1.6 + version: 15.1.6(@playwright/test@1.42.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.72.0) react: specifier: ^18 version: 18.2.0 @@ -466,17 +466,17 @@ importers: specifier: '*' version: link:../../packages/itwinui-react '@remix-run/node': - specifier: ^2.8.0 - version: 2.8.1(typescript@5.5.2) + specifier: ^2.15.2 + version: 2.15.3(typescript@5.5.2) '@remix-run/react': - specifier: ^2.8.0 - version: 2.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) + specifier: ^2.15.2 + version: 2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) '@remix-run/serve': - specifier: ^2.8.0 - version: 2.8.1(typescript@5.5.2) + specifier: ^2.15.2 + version: 2.15.3(typescript@5.5.2) isbot: - specifier: ^4.1.0 - version: 4.4.0 + specifier: ^5.1.22 + version: 5.1.22 react: specifier: ^18 version: 18.2.0 @@ -485,8 +485,8 @@ importers: version: 18.2.0(react@18.2.0) devDependencies: '@remix-run/dev': - specifier: ^2.8.0 - version: 2.8.1(@remix-run/serve@2.8.1(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + specifier: ^2.15.2 + version: 2.15.3(@remix-run/react@2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2))(@remix-run/serve@2.15.3(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) '@types/react': specifier: 18.2.14 version: 18.2.14 @@ -497,17 +497,17 @@ importers: specifier: ~5.5.2 version: 5.5.2 vite: - specifier: ^5 - version: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + specifier: ^6 + version: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) vite-tsconfig-paths: - specifier: ^4.2.1 - version: 4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + specifier: ^5.1.4 + version: 5.1.4(typescript@5.5.2)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) playgrounds/vite: dependencies: '@itwin/itwinui-icons-react': specifier: '2' - version: 2.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@itwin/itwinui-react': specifier: '*' version: link:../../packages/itwinui-react @@ -525,14 +525,14 @@ importers: specifier: 18.2.18 version: 18.2.18 '@vitejs/plugin-react': - specifier: ^4.2.1 - version: 4.3.1(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + specifier: ^4.3.4 + version: 4.3.4(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) typescript: specifier: ~5.5.2 version: 5.5.2 vite: - specifier: ^5 - version: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + specifier: ^6 + version: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) testing/a11y: dependencies: @@ -540,14 +540,14 @@ importers: specifier: '*' version: link:../../packages/itwinui-react axe-core: - specifier: ^4.8.2 - version: 4.10.0 + specifier: ^4.10.2 + version: 4.10.2 cypress: specifier: 13.8.1 version: 13.8.1 cypress-axe: specifier: ^1.5.0 - version: 1.5.0(axe-core@4.10.0)(cypress@13.8.1) + version: 1.5.0(axe-core@4.10.2)(cypress@13.8.1) examples: specifier: workspace:* version: link:../../examples @@ -559,13 +559,13 @@ importers: version: link:../../packages/itwinui-react '@remix-run/node': specifier: ^2.8.0 - version: 2.8.1(typescript@5.5.2) + version: 2.15.3(typescript@5.5.2) '@remix-run/react': specifier: ^2.8.0 - version: 2.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) + version: 2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) '@remix-run/serve': specifier: ^2.8.0 - version: 2.8.1(typescript@5.5.2) + version: 2.15.3(typescript@5.5.2) isbot: specifier: ^4.1.0 version: 4.4.0 @@ -581,7 +581,7 @@ importers: version: 1.42.1 '@remix-run/dev': specifier: ^2.8.0 - version: 2.8.1(@remix-run/serve@2.8.1(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + version: 2.15.3(@remix-run/react@2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2))(@remix-run/serve@2.15.3(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)) '@types/node': specifier: '*' version: 22.5.5 @@ -599,10 +599,10 @@ importers: version: 5.5.2 vite: specifier: ^5 - version: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + version: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) vite-tsconfig-paths: specifier: ^4.2.1 - version: 4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + version: 4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)) packages: '@aashutoshrathi/word-wrap@1.2.6': @@ -787,17 +787,17 @@ packages: } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 } - '@astrojs/react@3.1.0': + '@astrojs/react@4.2.0': resolution: { - integrity: sha512-KZhZyV+sUDZEjlrmPWNiPGeYowG9uq6/aMbCgVaeKEBlWT4Kg32TNwBOhZk6AcE4LY1l3mIwt3orUGE2JV96/g==, + integrity: sha512-2OccnYFK+mLuy9GpJqPM3BQGvvemnXNeww+nBVYFuiH04L7YIdfg4Gq0LT7v/BraiuADV5uTl9VhTDL/ZQPAhw==, } - engines: { node: '>=18.14.1' } + engines: { node: ^18.17.1 || ^20.3.0 || >=22.0.0 } peerDependencies: '@types/react': 18.2.14 '@types/react-dom': 18.2.18 - react: ^17.0.2 || ^18.0.0 - react-dom: ^17.0.2 || ^18.0.0 + react: ^17.0.2 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 '@astrojs/sitemap@3.1.1': resolution: @@ -812,13 +812,6 @@ packages: } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 } - '@babel/code-frame@7.24.7': - resolution: - { - integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, - } - engines: { node: '>=6.9.0' } - '@babel/code-frame@7.26.2': resolution: { @@ -826,13 +819,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/compat-data@7.25.4': - resolution: - { - integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==, - } - engines: { node: '>=6.9.0' } - '@babel/compat-data@7.26.3': resolution: { @@ -840,13 +826,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/core@7.25.2': - resolution: - { - integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==, - } - engines: { node: '>=6.9.0' } - '@babel/core@7.26.0': resolution: { @@ -854,13 +833,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/generator@7.25.6': - resolution: - { - integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==, - } - engines: { node: '>=6.9.0' } - '@babel/generator@7.26.3': resolution: { @@ -868,13 +840,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-annotate-as-pure@7.24.7': - resolution: - { - integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-annotate-as-pure@7.25.9': resolution: { @@ -882,13 +847,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-compilation-targets@7.25.2': - resolution: - { - integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-compilation-targets@7.25.9': resolution: { @@ -926,13 +884,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-module-imports@7.24.7': - resolution: - { - integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-module-imports@7.25.9': resolution: { @@ -940,15 +891,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-module-transforms@7.25.2': - resolution: - { - integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==, - } - engines: { node: '>=6.9.0' } - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/helper-module-transforms@7.26.0': resolution: { @@ -965,13 +907,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-plugin-utils@7.24.8': - resolution: - { - integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-plugin-utils@7.25.9': resolution: { @@ -1009,20 +944,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-string-parser@7.24.8': - resolution: - { - integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==, - } - engines: { node: '>=6.9.0' } - - '@babel/helper-string-parser@7.25.7': - resolution: - { - integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-string-parser@7.25.9': resolution: { @@ -1030,20 +951,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-validator-identifier@7.24.7': - resolution: - { - integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, - } - engines: { node: '>=6.9.0' } - - '@babel/helper-validator-identifier@7.25.7': - resolution: - { - integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-validator-identifier@7.25.9': resolution: { @@ -1051,13 +958,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helper-validator-option@7.24.8': - resolution: - { - integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==, - } - engines: { node: '>=6.9.0' } - '@babel/helper-validator-option@7.25.9': resolution: { @@ -1065,13 +965,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/helpers@7.25.6': - resolution: - { - integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==, - } - engines: { node: '>=6.9.0' } - '@babel/helpers@7.26.0': resolution: { @@ -1079,29 +972,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/highlight@7.24.7': - resolution: - { - integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, - } - engines: { node: '>=6.9.0' } - - '@babel/parser@7.25.6': - resolution: - { - integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==, - } - engines: { node: '>=6.0.0' } - hasBin: true - - '@babel/parser@7.25.8': - resolution: - { - integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==, - } - engines: { node: '>=6.0.0' } - hasBin: true - '@babel/parser@7.26.3': resolution: { @@ -1119,15 +989,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-jsx@7.24.7': - resolution: - { - integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==, - } - engines: { node: '>=6.9.0' } - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-jsx@7.25.9': resolution: { @@ -1155,19 +1016,19 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-self@7.24.7': + '@babel/plugin-transform-react-jsx-self@7.25.9': resolution: { - integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==, + integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==, } engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-react-jsx-source@7.24.1': + '@babel/plugin-transform-react-jsx-source@7.25.9': resolution: { - integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==, + integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==, } engines: { node: '>=6.9.0' } peerDependencies: @@ -1207,13 +1068,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/template@7.25.0': - resolution: - { - integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==, - } - engines: { node: '>=6.9.0' } - '@babel/template@7.25.9': resolution: { @@ -1221,13 +1075,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/traverse@7.25.6': - resolution: - { - integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==, - } - engines: { node: '>=6.9.0' } - '@babel/traverse@7.26.4': resolution: { @@ -1235,20 +1082,6 @@ packages: } engines: { node: '>=6.9.0' } - '@babel/types@7.25.6': - resolution: - { - integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==, - } - engines: { node: '>=6.9.0' } - - '@babel/types@7.25.8': - resolution: - { - integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==, - } - engines: { node: '>=6.9.0' } - '@babel/types@7.26.3': resolution: { @@ -1268,10 +1101,10 @@ packages: integrity: sha512-cwwGvLGqvoaOZmoP5+i4v/rbW+rHkguvTehuZyM2p/xpmaNSdT2h3B7kHw33aiffv35t1XrYHIkdJSEkSEMJuA==, } - '@bundled-es-modules/cookie@2.0.0': + '@bundled-es-modules/cookie@2.0.1': resolution: { - integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==, + integrity: sha512-8o+5fRPLNbjbdGRRmJj3h6Hh1AQJf2dk3qQ/5ZFb+PXkRNiSoMGGUKlsgLfrxneb72axVJyIYji64E2+nNfYyw==, } '@bundled-es-modules/statuses@1.0.1': @@ -1651,12 +1484,12 @@ packages: peerDependencies: postcss: ^8.4.34 - '@ctrl/tinycolor@3.6.1': + '@ctrl/tinycolor@4.1.0': resolution: { - integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, + integrity: sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==, } - engines: { node: '>=10' } + engines: { node: '>=14' } '@cypress/request@3.0.0': resolution: @@ -1733,6 +1566,15 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.24.2': + resolution: + { + integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.17.6': resolution: { @@ -1760,6 +1602,15 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.24.2': + resolution: + { + integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.17.6': resolution: { @@ -1787,6 +1638,15 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.24.2': + resolution: + { + integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.17.6': resolution: { @@ -1814,6 +1674,15 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.24.2': + resolution: + { + integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.17.6': resolution: { @@ -1841,6 +1710,15 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.24.2': + resolution: + { + integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.17.6': resolution: { @@ -1868,6 +1746,15 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.24.2': + resolution: + { + integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.17.6': resolution: { @@ -1895,6 +1782,15 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.24.2': + resolution: + { + integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.17.6': resolution: { @@ -1922,6 +1818,15 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.24.2': + resolution: + { + integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.17.6': resolution: { @@ -1949,6 +1854,15 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.24.2': + resolution: + { + integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.17.6': resolution: { @@ -1976,6 +1890,15 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.24.2': + resolution: + { + integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==, + } + engines: { node: '>=18' } + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.17.6': resolution: { @@ -2003,6 +1926,15 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.24.2': + resolution: + { + integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.17.6': resolution: { @@ -2030,6 +1962,15 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.24.2': + resolution: + { + integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==, + } + engines: { node: '>=18' } + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.17.6': resolution: { @@ -2057,6 +1998,15 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.24.2': + resolution: + { + integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==, + } + engines: { node: '>=18' } + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.17.6': resolution: { @@ -2084,6 +2034,15 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.24.2': + resolution: + { + integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==, + } + engines: { node: '>=18' } + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.17.6': resolution: { @@ -2111,6 +2070,15 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.24.2': + resolution: + { + integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==, + } + engines: { node: '>=18' } + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.17.6': resolution: { @@ -2138,6 +2106,15 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.24.2': + resolution: + { + integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==, + } + engines: { node: '>=18' } + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.17.6': resolution: { @@ -2165,6 +2142,24 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.24.2': + resolution: + { + integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.24.2': + resolution: + { + integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [netbsd] + '@esbuild/netbsd-x64@0.17.6': resolution: { @@ -2192,6 +2187,24 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.24.2': + resolution: + { + integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.24.2': + resolution: + { + integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [openbsd] + '@esbuild/openbsd-x64@0.17.6': resolution: { @@ -2219,6 +2232,15 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.24.2': + resolution: + { + integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [openbsd] + '@esbuild/sunos-x64@0.17.6': resolution: { @@ -2246,6 +2268,15 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.24.2': + resolution: + { + integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.17.6': resolution: { @@ -2273,6 +2304,15 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.24.2': + resolution: + { + integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==, + } + engines: { node: '>=18' } + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.17.6': resolution: { @@ -2300,6 +2340,15 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.24.2': + resolution: + { + integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==, + } + engines: { node: '>=18' } + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.17.6': resolution: { @@ -2327,6 +2376,15 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.24.2': + resolution: + { + integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==, + } + engines: { node: '>=18' } + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.4.0': resolution: { @@ -2357,28 +2415,28 @@ packages: } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - '@expressive-code/core@0.33.5': + '@expressive-code/core@0.40.1': resolution: { - integrity: sha512-KL0EkKAvd7SSIQL3ZIP19xqe4xNjBaQYNvcJC6RmoBUnQpvxaJNFwRxCBEF/X0ftJEMaSG7WTrabZ9c/zFeqmA==, + integrity: sha512-j71gxBepyzBgOtZomxzl8M90AjILf6hZarWFePDis7sTjqCwxWrtZEtTCafto8IOURG/ECZN0g7Ys4zExkNU7Q==, } - '@expressive-code/plugin-frames@0.33.5': + '@expressive-code/plugin-frames@0.40.1': resolution: { - integrity: sha512-lFt/gbnZscBSxHovg4XiWohp5nrxk4McS6RGABdj6+0gJcX8/YrFTM23GKBIkaDePxdDidVY0jQYGYDL/RrQHw==, + integrity: sha512-qV7BIdTQ9nJ/eLHaJlzMvUq5aqAoZKO3PLFzBVop/q0d0m5rWpwWncIQ8qkufQDabmq2m38PRRWxKgx5FkJ2Rg==, } - '@expressive-code/plugin-shiki@0.33.5': + '@expressive-code/plugin-shiki@0.40.1': resolution: { - integrity: sha512-LWgttQTUrIPE1X+Lya1qFWiX47tH2AS2hkbj/cZoWkdiSjn6zUvtTypK/2Xn6Rgn6z6ClzpgHvkXRqFn7nAB4A==, + integrity: sha512-N5oXhLv5DwLGXmLwJtwMzrfnZPWJl4pHRR5mfDoqK1+NxptdVaaQ0nEjgw13Y5ID/O5Bbze5YcOyph2K52BBrQ==, } - '@expressive-code/plugin-text-markers@0.33.5': + '@expressive-code/plugin-text-markers@0.40.1': resolution: { - integrity: sha512-JxSHL1MGrJAPNaUMjFXex3K+9NJDbfew9H6PmX8LQ+fm9VNQdtBYTAz/x7nqOk7bkTrtAZK5RfDqUfb8U5M+2A==, + integrity: sha512-LsirF7M4F2yWgrFXEocD74F/MaVXsOsHVsRxBLhXQJemSSkWkDp/EZPt//OaqQ8ExnqWZ2lH7E1/KiN46unKjg==, } '@floating-ui/core@1.6.0': @@ -2613,40 +2671,48 @@ packages: cpu: [x64] os: [win32] - '@inquirer/confirm@3.2.0': + '@inquirer/confirm@5.1.5': resolution: { - integrity: sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==, - } - engines: { node: '>=18' } - - '@inquirer/core@9.2.1': - resolution: - { - integrity: sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==, + integrity: sha512-ZB2Cz8KeMINUvoeDi7IrvghaVkYT2RB0Zb31EaLWOE87u276w4wnApv0SH2qWaJ3r0VSUa3BIuz7qAV2ZvsZlg==, } engines: { node: '>=18' } + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - '@inquirer/figures@1.0.6': + '@inquirer/core@10.1.6': resolution: { - integrity: sha512-yfZzps3Cso2UbM7WlxKwZQh2Hs6plrbjs1QnzQDZhK2DgyCo6D8AaHps9olkNcUFlcYERMqU3uJSp1gmy3s/qQ==, + integrity: sha512-Bwh/Zk6URrHwZnSSzAZAKH7YgGYi0xICIBDFOqBQoXNNAzBHw/bgXgLmChfp+GyR3PnChcTbiCTZGC6YJNJkMA==, } engines: { node: '>=18' } + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true - '@inquirer/type@1.5.5': + '@inquirer/figures@1.0.10': resolution: { - integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==, + integrity: sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==, } engines: { node: '>=18' } - '@inquirer/type@2.0.0': + '@inquirer/type@3.0.4': resolution: { - integrity: sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==, + integrity: sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==, } engines: { node: '>=18' } + peerDependencies: + '@types/node': '>=18' + peerDependenciesMeta: + '@types/node': + optional: true '@isaacs/cliui@8.0.2': resolution: @@ -2662,16 +2728,16 @@ packages: } engines: { node: '>=8' } - '@itwin/itwinui-icons-elements@0.20.0': + '@itwin/itwinui-icons-elements@0.21.0': resolution: { - integrity: sha512-jVF4zJ/kQro2ssxxQrz7nAe0Wb+w+rJiLWSRNYI5Vc0Q9zv+XeDjenfyaGDOp+hfbaRuhKyTqt1q+Tw+KBa6Fg==, + integrity: sha512-kb+P1eiBWMmIVhy842MU3fzFbJofZYwV6bXXX/mPMLLj2xhdhGGSz42KyJgj1kyNH2mOjUxaN6Nx6k7qwcB2pQ==, } - '@itwin/itwinui-icons-react@2.8.0': + '@itwin/itwinui-icons-react@2.9.0': resolution: { - integrity: sha512-FMXUrDFC7U827/QJNE603+FL6OvIngFss5B9YTSCXcrWuwVLAzJ+sFb+RQ/I1sc19qujYBkZ9asNqlHXM2O4Cg==, + integrity: sha512-48oxHUuqEaJOwVRFED0yssfIriX/IQrHd67ffxvEAu7yW1f5a/qFDyImAlwjlzr+4+obBMweshJ8sI+OgziyvA==, } peerDependencies: react: '>=16.8.6' @@ -2748,10 +2814,10 @@ packages: react: '>=16.14.0' react-dom: '>=16.14.0' - '@ladle/react@4.1.2': + '@ladle/react@5.0.1': resolution: { - integrity: sha512-6nMIPCsnkGCjIRz5kpRojJyieqcFPsq34QeqJp5mFpT1xFeX7sKwdCpQJ92d5ORsejmxTyp9gkQA+AXG3i3AGw==, + integrity: sha512-i1eNwttR+Y1ISoQqlfLNC00k6x4tYQVcoKr/s6e/tYbJr8wUKnYUvH5YzlVTp53oUgNVRWOXP8d4MNM/oOqMdw==, } engines: { node: '>=20.0.0' } hasBin: true @@ -2765,16 +2831,16 @@ packages: integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==, } - '@mdx-js/mdx@3.0.1': + '@mdx-js/mdx@3.1.0': resolution: { - integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==, + integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==, } - '@mdx-js/react@3.0.1': + '@mdx-js/react@3.1.0': resolution: { - integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==, + integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==, } peerDependencies: '@types/react': 18.2.14 @@ -2786,95 +2852,86 @@ packages: integrity: sha512-+z1c7HpC5ysdSVVyUVz67hctVLl337VlRJP/MBwpvXHkKJdlnSUVrBhlRzxgal7xpm1uDE2JeUhWbQh6wPRC4w==, } - '@mswjs/interceptors@0.35.8': + '@mswjs/interceptors@0.37.6': resolution: { - integrity: sha512-PFfqpHplKa7KMdoQdj5td03uG05VK2Ng1dG0sP4pT9h0dGSX2v9txYt/AnrzPb/vAmfyBBC0NQV7VaBEX+efgQ==, + integrity: sha512-wK+5pLK5XFmgtH3aQ2YVvA3HohS3xqV/OxuVOdNx9Wpnz7VE/fnC+e1A7ln6LFYeck7gOJ/dsZV6OLplOtAJ2w==, } engines: { node: '>=18' } - '@next/env@14.2.21': + '@next/env@15.1.6': resolution: { - integrity: sha512-lXcwcJd5oR01tggjWJ6SrNNYFGuOOMB9c251wUNkjCpkoXOPkDeF/15c3mnVlBqrW4JJXb2kVxDFhC4GduJt2A==, + integrity: sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==, } - '@next/swc-darwin-arm64@14.2.21': + '@next/swc-darwin-arm64@15.1.6': resolution: { - integrity: sha512-HwEjcKsXtvszXz5q5Z7wCtrHeTTDSTgAbocz45PHMUjU3fBYInfvhR+ZhavDRUYLonm53aHZbB09QtJVJj8T7g==, + integrity: sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==, } engines: { node: '>= 10' } cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.2.21': + '@next/swc-darwin-x64@15.1.6': resolution: { - integrity: sha512-TSAA2ROgNzm4FhKbTbyJOBrsREOMVdDIltZ6aZiKvCi/v0UwFmwigBGeqXDA97TFMpR3LNNpw52CbVelkoQBxA==, + integrity: sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==, } engines: { node: '>= 10' } cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.2.21': + '@next/swc-linux-arm64-gnu@15.1.6': resolution: { - integrity: sha512-0Dqjn0pEUz3JG+AImpnMMW/m8hRtl1GQCNbO66V1yp6RswSTiKmnHf3pTX6xMdJYSemf3O4Q9ykiL0jymu0TuA==, + integrity: sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==, } engines: { node: '>= 10' } cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.2.21': + '@next/swc-linux-arm64-musl@15.1.6': resolution: { - integrity: sha512-Ggfw5qnMXldscVntwnjfaQs5GbBbjioV4B4loP+bjqNEb42fzZlAaK+ldL0jm2CTJga9LynBMhekNfV8W4+HBw==, + integrity: sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==, } engines: { node: '>= 10' } cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.2.21': + '@next/swc-linux-x64-gnu@15.1.6': resolution: { - integrity: sha512-uokj0lubN1WoSa5KKdThVPRffGyiWlm/vCc/cMkWOQHw69Qt0X1o3b2PyLLx8ANqlefILZh1EdfLRz9gVpG6tg==, + integrity: sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==, } engines: { node: '>= 10' } cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.2.21': + '@next/swc-linux-x64-musl@15.1.6': resolution: { - integrity: sha512-iAEBPzWNbciah4+0yI4s7Pce6BIoxTQ0AGCkxn/UBuzJFkYyJt71MadYQkjPqCQCJAFQ26sYh7MOKdU+VQFgPg==, + integrity: sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==, } engines: { node: '>= 10' } cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.2.21': + '@next/swc-win32-arm64-msvc@15.1.6': resolution: { - integrity: sha512-plykgB3vL2hB4Z32W3ktsfqyuyGAPxqwiyrAi2Mr8LlEUhNn9VgkiAl5hODSBpzIfWweX3er1f5uNpGDygfQVQ==, + integrity: sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==, } engines: { node: '>= 10' } cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.2.21': - resolution: - { - integrity: sha512-w5bacz4Vxqrh06BjWgua3Yf7EMDb8iMcVhNrNx8KnJXt8t+Uu0Zg4JHLDL/T7DkTCEEfKXO/Er1fcfWxn2xfPA==, - } - engines: { node: '>= 10' } - cpu: [ia32] - os: [win32] - - '@next/swc-win32-x64-msvc@14.2.21': + '@next/swc-win32-x64-msvc@15.1.6': resolution: { - integrity: sha512-sT6+llIkzpsexGYZq8cjjthRyRGe5cJVhqh12FmlbxHqna6zsDDK8UNaV7g41T6atFHCJUPeLb3uyAwrBwy0NA==, + integrity: sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==, } engines: { node: '>= 10' } cpu: [x64] @@ -3148,6 +3205,7 @@ packages: integrity: sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==, } engines: { node: '>=16' } + deprecated: Please update to the latest version of Playwright to test up-to-date browsers. hasBin: true '@popperjs/core@2.11.8': @@ -3156,28 +3214,24 @@ packages: integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==, } - '@puppeteer/browsers@0.5.0': + '@puppeteer/browsers@2.3.0': resolution: { - integrity: sha512-Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ==, + integrity: sha512-ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==, } - engines: { node: '>=14.1.0' } + engines: { node: '>=18' } hasBin: true - peerDependencies: - typescript: ~5.5.2 - peerDependenciesMeta: - typescript: - optional: true - '@remix-run/dev@2.8.1': + '@remix-run/dev@2.15.3': resolution: { - integrity: sha512-qFt4jAsAJeIOyg6ngeSnTG/9Z5N9QJfeThP/8wRHc1crqYgTiEtcI3DZ8WlAXjVSF5emgn/ZZKqzLAI02OgMfQ==, + integrity: sha512-agndQJHs7qISPXXH/Zet0VHWvcwtQGoEOXxltjerNQ2zWcAJQBm9i06tS6n6v/ZP0sHIVdo/IsvgAA4wetqmNw==, } engines: { node: '>=18.0.0' } hasBin: true peerDependencies: - '@remix-run/serve': ^2.8.1 + '@remix-run/react': ^2.15.3 + '@remix-run/serve': ^2.15.3 typescript: ~5.5.2 vite: ^5.1.0 wrangler: ^3.28.2 @@ -3191,23 +3245,23 @@ packages: wrangler: optional: true - '@remix-run/express@2.8.1': + '@remix-run/express@2.15.3': resolution: { - integrity: sha512-p1eo8uwZk8uLihSDpUnPOPsTDfghWikVPQfa+e0ZMk6tnJCjcpHAyENKDFtn9vDh9h7YNUg6A7+19CStHgxd7Q==, + integrity: sha512-6a4S5KrRNiLDiaOneuoMpMMFo9ztB4gZ1AOJSX6BmqpXmcq/P+WhRXOqXrUYeL4fMstJhTVM8CzlInlfpem8Vw==, } engines: { node: '>=18.0.0' } peerDependencies: - express: ^4.17.1 + express: ^4.20.0 typescript: ~5.5.2 peerDependenciesMeta: typescript: optional: true - '@remix-run/node@2.8.1': + '@remix-run/node@2.15.3': resolution: { - integrity: sha512-ddCwBVlfLvRxTQJHPcaM1lhfMjsFYG3EGmYpWJIWnnzDX5EbX9pUNHBWisMuH1eA0c7pbw0PbW0UtCttKYx2qg==, + integrity: sha512-TYfS6BPhbABBpSRZ6WBA4qIWSwWvJhRVQGXCHUtgOwkuW863rcFmjh9g2Xj/IHyTmbOYPdcjHsIgZ9el4CHOKQ==, } engines: { node: '>=18.0.0' } peerDependencies: @@ -3216,10 +3270,10 @@ packages: typescript: optional: true - '@remix-run/react@2.8.1': + '@remix-run/react@2.15.3': resolution: { - integrity: sha512-HTPm1U8+xz2jPaVjZnssrckfmFMA8sUZUdaWnoF5lmLWdReqcQv+XlBhIrQQ3jO9L8iYYdnzaSZZcRFYSdpTYg==, + integrity: sha512-AynCltIk8KLlxV9a+4dORtEMNtF5wJAzBNBZLJMdw3FCJNQZRYQSen8rDnIovOOiz9UNZ2SmBTFERiFMKS16jw==, } engines: { node: '>=18.0.0' } peerDependencies: @@ -3230,32 +3284,25 @@ packages: typescript: optional: true - '@remix-run/router@1.15.3': + '@remix-run/router@1.22.0': resolution: { - integrity: sha512-Oy8rmScVrVxWZVOpEF57ovlnhpZ8CCPlnIIumVcV9nFdiSIrus99+Lw78ekXyGvVDlIsFJbSfmSovJUhCWYV3w==, + integrity: sha512-MBOl8MeOzpK0HQQQshKB7pABXbmyHizdTpqnrIseTbsv0nAepwC2ENZa1aaBExNQcpLoXmWthhak8SABLzvGPw==, } engines: { node: '>=14.0.0' } - '@remix-run/router@1.15.3-pre.0': + '@remix-run/serve@2.15.3': resolution: { - integrity: sha512-JUQb6sztqJpRbsdKpx3D4+6eaGmHU4Yb/QeKrES/ZbLuijlZMOmZ+gV0ohX5vrRDnJHJmcQPq3Tpk0GGPNM9gg==, - } - engines: { node: '>=14.0.0' } - - '@remix-run/serve@2.8.1': - resolution: - { - integrity: sha512-PyCV7IMnRshwfFw7JJ2hZJppX88VAhZyYjeTAmYb6PK7IDtdmqUf5eOrYDi8gCu914C+aZRu6blxpLRlpyCY8Q==, + integrity: sha512-7P0FWeNu1NEaSJpL2Xn8fZbr4zxkrOR6Qg03p7iYbipcQ1L0zr9Nxe5KKG4m9n8EyRWWxDV2L+wXHI7Ul9HiMw==, } engines: { node: '>=18.0.0' } hasBin: true - '@remix-run/server-runtime@2.8.1': + '@remix-run/server-runtime@2.15.3': resolution: { - integrity: sha512-fh4SOEoONrN73Kvzc0gMDCmYpVRVbvoj9j3BUXHAcn0An8iX+HD/22gU7nTkIBzExM/F9xgEcwTewOnWqLw0Bg==, + integrity: sha512-taHBe1DEqxZNjjj6OfkSYbup+sZPjbTgUhykaI+nHqrC2NDQuTiisBXhLwtx60GctONR/x0lWhF7R9ZGC5WsHw==, } engines: { node: '>=18.0.0' } peerDependencies: @@ -3307,154 +3354,154 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.28.1': + '@rollup/rollup-android-arm-eabi@4.34.3': resolution: { - integrity: sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==, + integrity: sha512-8kq/NjMKkMTGKMPldWihncOl62kgnLYk7cW+/4NCUWfS70/wz4+gQ7rMxMMpZ3dIOP/xw7wKNzIuUnN/H2GfUg==, } cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.28.1': + '@rollup/rollup-android-arm64@4.34.3': resolution: { - integrity: sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==, + integrity: sha512-1PqMHiuRochQ6++SDI7SaRDWJKr/NgAlezBi5nOne6Da6IWJo3hK0TdECBDwd92IUDPG4j/bZmWuwOnomNT8wA==, } cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.28.1': + '@rollup/rollup-darwin-arm64@4.34.3': resolution: { - integrity: sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==, + integrity: sha512-fqbrykX4mGV3DlCDXhF4OaMGcchd2tmLYxVt3On5oOZWVDFfdEoYAV2alzNChl8OzNaeMAGqm1f7gk7eIw/uDg==, } cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.28.1': + '@rollup/rollup-darwin-x64@4.34.3': resolution: { - integrity: sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==, + integrity: sha512-8Wxrx/KRvMsTyLTbdrMXcVKfpW51cCNW8x7iQD72xSEbjvhCY3b+w83Bea3nQfysTMR7K28esc+ZFITThXm+1w==, } cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.28.1': + '@rollup/rollup-freebsd-arm64@4.34.3': resolution: { - integrity: sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==, + integrity: sha512-lpBmV2qSiELh+ATQPTjQczt5hvbTLsE0c43Rx4bGxN2VpnAZWy77we7OO62LyOSZNY7CzjMoceRPc+Lt4e9J6A==, } cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.28.1': + '@rollup/rollup-freebsd-x64@4.34.3': resolution: { - integrity: sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==, + integrity: sha512-sNPvBIXpgaYcI6mAeH13GZMXFrrw5mdZVI1M9YQPRG2LpjwL8DSxSIflZoh/B5NEuOi53kxsR/S2GKozK1vDXA==, } cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': + '@rollup/rollup-linux-arm-gnueabihf@4.34.3': resolution: { - integrity: sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==, + integrity: sha512-MW6N3AoC61OfE1VgnN5O1OW0gt8VTbhx9s/ZEPLBM11wEdHjeilPzOxVmmsrx5YmejpGPvez8QwGGvMU+pGxpw==, } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.28.1': + '@rollup/rollup-linux-arm-musleabihf@4.34.3': resolution: { - integrity: sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==, + integrity: sha512-2SQkhr5xvatYq0/+H6qyW0zvrQz9LM4lxGkpWURLoQX5+yP8MsERh4uWmxFohOvwCP6l/+wgiHZ1qVwLDc7Qmw==, } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.28.1': + '@rollup/rollup-linux-arm64-gnu@4.34.3': resolution: { - integrity: sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==, + integrity: sha512-R3JLYt8YoRwKI5shJsovLpcR6pwIMui/MGG/MmxZ1DYI3iRSKI4qcYrvYgDf4Ss2oCR3RL3F3dYK7uAGQgMIuQ==, } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.28.1': + '@rollup/rollup-linux-arm64-musl@4.34.3': resolution: { - integrity: sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==, + integrity: sha512-4XQhG8v/t3S7Rxs7rmFUuM6j09hVrTArzONS3fUZ6oBRSN/ps9IPQjVhp62P0W3KhqJdQADo/MRlYRMdgxr/3w==, } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': + '@rollup/rollup-linux-loongarch64-gnu@4.34.3': resolution: { - integrity: sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==, + integrity: sha512-QlW1jCUZ1LHUIYCAK2FciVw1ptHsxzApYVi05q7bz2A8oNE8QxQ85NhM4arLxkAlcnS42t4avJbSfzSQwbIaKg==, } cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.34.3': resolution: { - integrity: sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==, + integrity: sha512-kMbLToizVeCcN69+nnm20Dh0hrRIAjgaaL+Wh0gWZcNt8e542d2FUGtsyuNsHVNNF3gqTJrpzUGIdwMGLEUM7g==, } cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.28.1': + '@rollup/rollup-linux-riscv64-gnu@4.34.3': resolution: { - integrity: sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==, + integrity: sha512-YgD0DnZ3CHtvXRH8rzjVSxwI0kMTr0RQt3o1N92RwxGdx7YejzbBO0ELlSU48DP96u1gYYVWfUhDRyaGNqJqJg==, } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.28.1': + '@rollup/rollup-linux-s390x-gnu@4.34.3': resolution: { - integrity: sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==, + integrity: sha512-dIOoOz8altjp6UjAi3U9EW99s8nta4gzi52FeI45GlPyrUH4QixUoBMH9VsVjt+9A2RiZBWyjYNHlJ/HmJOBCQ==, } cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.28.1': + '@rollup/rollup-linux-x64-gnu@4.34.3': resolution: { - integrity: sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==, + integrity: sha512-lOyG3aF4FTKrhpzXfMmBXgeKUUXdAWmP2zSNf8HTAXPqZay6QYT26l64hVizBjq+hJx3pl0DTEyvPi9sTA6VGA==, } cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.28.1': + '@rollup/rollup-linux-x64-musl@4.34.3': resolution: { - integrity: sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==, + integrity: sha512-usztyYLu2i+mYzzOjqHZTaRXbUOqw3P6laNUh1zcqxbPH1P2Tz/QdJJCQSnGxCtsRQeuU2bCyraGMtMumC46rw==, } cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.28.1': + '@rollup/rollup-win32-arm64-msvc@4.34.3': resolution: { - integrity: sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==, + integrity: sha512-ojFOKaz/ZyalIrizdBq2vyc2f0kFbJahEznfZlxdB6pF9Do6++i1zS5Gy6QLf8D7/S57MHrmBLur6AeRYeQXSA==, } cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.28.1': + '@rollup/rollup-win32-ia32-msvc@4.34.3': resolution: { - integrity: sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==, + integrity: sha512-K/V97GMbNa+Da9mGcZqmSl+DlJmWfHXTuI9V8oB2evGsQUtszCl67+OxWjBKpeOnYwox9Jpmt/J6VhpeRCYqow==, } cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.28.1': + '@rollup/rollup-win32-x64-msvc@4.34.3': resolution: { - integrity: sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==, + integrity: sha512-CUypcYP31Q8O04myV6NKGzk9GVXslO5EJNfmARNSzLF2A+5rmZUlDJ4et6eoJaZgBT9wrC2p4JZH04Vkic8HdQ==, } cpu: [x64] os: [win32] @@ -3465,34 +3512,46 @@ packages: integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==, } - '@shikijs/core@1.24.2': + '@shikijs/core@1.29.2': + resolution: + { + integrity: sha512-vju0lY9r27jJfOY4Z7+Rt/nIOjzJpZ3y+nYpqtUZInVoXQ/TJZcfGnNOGnKjFdVZb8qexiCuSlZRKcGfhhTTZQ==, + } + + '@shikijs/engine-javascript@1.29.2': resolution: { - integrity: sha512-BpbNUSKIwbKrRRA+BQj0BEWSw+8kOPKDJevWeSE/xIqGX7K0xrCZQ9kK0nnEQyrzsUoka1l81ZtJ2mGaCA32HQ==, + integrity: sha512-iNEZv4IrLYPv64Q6k7EPpOCE/nuvGiKl7zxdq0WFuRPF5PAE9PRo2JGq/d8crLusM59BRemJ4eOqrFrC4wiQ+A==, } - '@shikijs/engine-javascript@1.24.2': + '@shikijs/engine-oniguruma@1.29.2': resolution: { - integrity: sha512-EqsmYBJdLEwEiO4H+oExz34a5GhhnVp+jH9Q/XjPjmBPc6TE/x4/gD0X3i0EbkKKNqXYHHJTJUpOLRQNkEzS9Q==, + integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==, } - '@shikijs/engine-oniguruma@1.24.2': + '@shikijs/langs@1.29.2': resolution: { - integrity: sha512-ZN6k//aDNWRJs1uKB12pturKHh7GejKugowOFGAuG7TxDRLod1Bd5JhpOikOiFqPmKjKEPtEA6mRCf7q3ulDyQ==, + integrity: sha512-FIBA7N3LZ+223U7cJDUYd5shmciFQlYkFXlkKVaHsCPgfVLiO+e12FmQE6Tf9vuyEsFe3dIl8qGWKXgEHL9wmQ==, } - '@shikijs/types@1.24.2': + '@shikijs/themes@1.29.2': resolution: { - integrity: sha512-bdeWZiDtajGLG9BudI0AHet0b6e7FbR0EsE4jpGaI0YwHm/XJunI9+3uZnzFtX65gsyJ6ngCIWUfA4NWRPnBkQ==, + integrity: sha512-i9TNZlsq4uoyqSbluIcZkmPL9Bfi3djVxRnofUHwvx/h6SRW3cwgBC5SML7vsDcWyukY0eCzVN980rqP6qNl9g==, } - '@shikijs/vscode-textmate@9.3.0': + '@shikijs/types@1.29.2': resolution: { - integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==, + integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==, + } + + '@shikijs/vscode-textmate@10.0.1': + resolution: + { + integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==, } '@sinclair/typebox@0.27.8': @@ -3529,100 +3588,100 @@ packages: chokidar: optional: true - '@swc/core-darwin-arm64@1.5.28': + '@swc/core-darwin-arm64@1.10.14': resolution: { - integrity: sha512-sP6g63ybzIdOWNDbn51tyHN8EMt7Mb4RMeHQEsXB7wQfDvzhpWB+AbfK6Gs3Q8fwP/pmWIrWW9csKOc1K2Mmkg==, + integrity: sha512-Dh4VyrhDDb05tdRmqJ/MucOPMTnrB4pRJol18HVyLlqu1HOT5EzonUniNTCdQbUXjgdv5UVJSTE1lYTzrp+myA==, } engines: { node: '>=10' } cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.5.28': + '@swc/core-darwin-x64@1.10.14': resolution: { - integrity: sha512-Bd/agp/g7QocQG5AuorOzSC78t8OzeN+pCN/QvJj1CvPhvppjJw6e1vAbOR8vO2vvGi2pvtf3polrYQStJtSiA==, + integrity: sha512-KpzotL/I0O12RE3tF8NmQErINv0cQe/0mnN/Q50ESFzB5kU6bLgp2HMnnwDTm/XEZZRJCNe0oc9WJ5rKbAJFRQ==, } engines: { node: '>=10' } cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.5.28': + '@swc/core-linux-arm-gnueabihf@1.10.14': resolution: { - integrity: sha512-Wr3TwPGIveS9/OBWm0r9VAL8wkCR0zQn46J8K01uYCmVhUNK3Muxjs0vQBZaOrGu94mqbj9OXY+gB3W7aDvGdA==, + integrity: sha512-20yRXZjMJVz1wp1TcscKiGTVXistG+saIaxOmxSNQia1Qun3hSWLL+u6+5kXbfYGr7R2N6kqSwtZbIfJI25r9Q==, } engines: { node: '>=10' } cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.5.28': + '@swc/core-linux-arm64-gnu@1.10.14': resolution: { - integrity: sha512-8G1ZwVTuLgTAVTMPD+M97eU6WeiRIlGHwKZ5fiJHPBcz1xqIC7jQcEh7XBkobkYoU5OILotls3gzjRt8CMNyDQ==, + integrity: sha512-Gy7cGrNkiMfPxQyLGxdgXPwyWzNzbHuWycJFcoKBihxZKZIW8hkPBttkGivuLC+0qOgsV2/U+S7tlvAju7FtmQ==, } engines: { node: '>=10' } cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.5.28': + '@swc/core-linux-arm64-musl@1.10.14': resolution: { - integrity: sha512-0Ajdzb5Fzvz+XUbN5ESeHAz9aHHSYiQcm+vmsDi0TtPHmsalfnqEPZmnK0zPALPJPLQP2dDo4hELeDg3/c3xgA==, + integrity: sha512-+oYVqJvFw62InZ8PIy1rBACJPC2WTe4vbVb9kM1jJj2D7dKLm9acnnYIVIDsM5Wo7Uab8RvPHXVbs19IBurzuw==, } engines: { node: '>=10' } cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.5.28': + '@swc/core-linux-x64-gnu@1.10.14': resolution: { - integrity: sha512-ueQ9VejnQUM2Pt+vT0IAKoF4vYBWUP6n1KHGdILpoGe3LuafQrqu7RoyQ15C7/AYii7hAeNhTFdf6gLbg8cjFg==, + integrity: sha512-OmEbVEKQFLQVHwo4EJl9osmlulURy46k232Opfpn/1ji0t2KcNCci3POsnfMuoZjLkGJv8vGNJdPQxX+CP+wSA==, } engines: { node: '>=10' } cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.5.28': + '@swc/core-linux-x64-musl@1.10.14': resolution: { - integrity: sha512-G5th8Mg0az8CbY4GQt9/m5hg2Y0kGIwvQBeVACuLQB6q2Y4txzdiTpjmFqUUhEvvl7Klyx1IHvNhfXs3zpt7PA==, + integrity: sha512-OZW+Icm8DMPqHbhdxplkuG8qrNnPk5i7xJOZWYi1y5bTjgGFI4nEzrsmmeHKMdQTaWwsFrm3uK1rlyQ48MmXmg==, } engines: { node: '>=10' } cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.5.28': + '@swc/core-win32-arm64-msvc@1.10.14': resolution: { - integrity: sha512-JezwCGavZ7CkNXx4yInI4kpb71L0zxzxA9BFlmnsGKEEjVQcKc3hFpmIzfFVs+eotlBUwDNb0+Yo9m6Cb7lllA==, + integrity: sha512-sTvc+xrDQXy3HXZFtTEClY35Efvuc3D+busYm0+rb1+Thau4HLRY9WP+sOKeGwH9/16rzfzYEqD7Ds8A9ykrHw==, } engines: { node: '>=10' } cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.5.28': + '@swc/core-win32-ia32-msvc@1.10.14': resolution: { - integrity: sha512-q8tW5J4RkOkl7vYShnWS//VAb2Ngolfm9WOMaF2GRJUr2Y/Xeb/+cNjdsNOqea2BzW049D5vdP7XPmir3/zUZw==, + integrity: sha512-j2iQ4y9GWTKtES5eMU0sDsFdYni7IxME7ejFej25Tv3Fq4B+U9tgtYWlJwh1858nIWDXelHiKcSh/UICAyVMdQ==, } engines: { node: '>=10' } cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.5.28': + '@swc/core-win32-x64-msvc@1.10.14': resolution: { - integrity: sha512-jap6EiB3wG1YE1hyhNr9KLPpH4PGm+5tVMfN0l7fgKtV0ikgpcEN/YF94tru+z5m2HovqYW009+Evq9dcVGmpg==, + integrity: sha512-TYtWkUSMkjs0jGPeWdtWbex4B+DlQZmN/ySVLiPI+EltYCLEXsFMkVFq6aWn48dqFHggFK0UYfvDrJUR2c3Qxg==, } engines: { node: '>=10' } cpu: [x64] os: [win32] - '@swc/core@1.5.28': + '@swc/core@1.10.14': resolution: { - integrity: sha512-muCdNIqOTURUgYeyyOLYE3ShL8SZO6dw6bhRm6dCvxWzCZOncPc5fB0kjcPXTML+9KJoHL7ks5xg+vsQK+v6ig==, + integrity: sha512-WSrnE6JRnH20ZYjOOgSS4aOaPv9gxlkI2KRkN24kagbZnPZMnN8bZZyzw1rrLvwgpuRGv17Uz+hflosbR+SP6w==, } engines: { node: '>=10' } peerDependencies: @@ -3637,28 +3696,16 @@ packages: integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, } - '@swc/helpers@0.5.11': - resolution: - { - integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==, - } - '@swc/helpers@0.5.15': resolution: { integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==, } - '@swc/helpers@0.5.5': - resolution: - { - integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, - } - - '@swc/types@0.1.8': + '@swc/types@0.1.17': resolution: { - integrity: sha512-RNFA3+7OJFNYY78x0FYwi1Ow+iF1eF5WvmfY1nXPOEH4R2p/D4Cr1vzje7dNAI2aLFqpv8Wyz4oKSWqIZArpQA==, + integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==, } '@szmarczak/http-timer@5.0.1': @@ -3748,6 +3795,12 @@ packages: integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==, } + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: + { + integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==, + } + '@types/acorn@4.0.6': resolution: { @@ -3814,12 +3867,6 @@ packages: integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==, } - '@types/estree@1.0.5': - resolution: - { - integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, - } - '@types/estree@1.0.6': resolution: { @@ -3892,12 +3939,6 @@ packages: integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==, } - '@types/mute-stream@0.0.4': - resolution: - { - integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==, - } - '@types/nlcst@1.0.4': resolution: { @@ -3934,12 +3975,6 @@ packages: integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, } - '@types/parse5@6.0.3': - resolution: - { - integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==, - } - '@types/prismjs@1.26.2': resolution: { @@ -4018,12 +4053,6 @@ packages: integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==, } - '@types/wrap-ansi@3.0.0': - resolution: - { - integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==, - } - '@types/yauzl@2.10.3': resolution: { @@ -4142,22 +4171,22 @@ packages: integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==, } - '@vitejs/plugin-react-swc@3.7.0': + '@vitejs/plugin-react-swc@3.7.2': resolution: { - integrity: sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA==, + integrity: sha512-y0byko2b2tSVVf5Gpng1eEhX1OvPC7x8yns1Fx8jDzlJp4LS6CMkCPfLw47cjyoMrshQDoQw4qcgjsU9VvlCew==, } peerDependencies: - vite: ^4 || ^5 + vite: ^4 || ^5 || ^6 - '@vitejs/plugin-react@4.3.1': + '@vitejs/plugin-react@4.3.4': resolution: { - integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==, + integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==, } engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: - vite: ^4.2.0 || ^5.0.0 + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 '@vitest/coverage-v8@1.6.1': resolution: @@ -4308,14 +4337,6 @@ packages: } engines: { node: '>=0.4.0' } - acorn@8.12.1: - resolution: - { - integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, - } - engines: { node: '>=0.4.0' } - hasBin: true - acorn@8.14.0: resolution: { @@ -4324,17 +4345,10 @@ packages: engines: { node: '>=0.4.0' } hasBin: true - agent-base@6.0.2: + agent-base@7.1.3: resolution: { - integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, - } - engines: { node: '>= 6.0.0' } - - agent-base@7.1.0: - resolution: - { - integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==, + integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==, } engines: { node: '>= 14' } @@ -4468,12 +4482,6 @@ packages: integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, } - aria-query@5.3.0: - resolution: - { - integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, - } - aria-query@5.3.2: resolution: { @@ -4560,6 +4568,13 @@ packages: integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, } + ast-types@0.13.4: + resolution: + { + integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==, + } + engines: { node: '>=4' } + ast-types@0.14.2: resolution: { @@ -4581,28 +4596,30 @@ packages: } hasBin: true - astro-auto-import@0.4.2: + astro-auto-import@0.4.4: resolution: { - integrity: sha512-ZgWZQ58+EhbEym1+aoUnNyECOy0wsG5uRUs+rVp/7BzHtj1V76J2qkhjaTWLplgNb+8WrzhvTQNxytmXRCW+Ow==, + integrity: sha512-tiYe1hp+VusdiyaD3INgZgbvXEPamDFiURnQR5Niz+E9fWa6IHYjJ99TwGlHh/evfaXE/U/86jp9MRKWTuJU1A==, } engines: { node: '>=16.0.0' } peerDependencies: astro: ~4.16.3 - astro-expressive-code@0.33.5: + astro-expressive-code@0.40.1: resolution: { - integrity: sha512-9JAyllueMUN8JTl/h/yTdbKinNmfalEWcV11s3lSf/UJQbAZfWJuy+IlGcArZDI/CmD21GXhFHLqYthpdY33ug==, + integrity: sha512-dQ47XhgtxuRTiKQrZOJKdebMuxvvTBR89U439EHzLP6KR45IILFlGDihGQp3//1aUjj4nwpbINSzms1heJ7vmQ==, } peerDependencies: astro: ~4.16.3 - astro-relative-links@0.3.7: + astro-relative-links@0.4.2: resolution: { - integrity: sha512-r0OxCHyBnaQYy0BdeiSkTk10PEfiQdi7ZD4ksk/QDIig3Nh9XCQU5uSm2G8j3n4cvI5lF1olps7RmEia1riHeQ==, + integrity: sha512-YXwnmZz47yxiIIxWR10LwpGlqvGTERJ7JWX2lFRINTg/sFaPkqTx9xNM50W1+9FNMMxtTn7C8YNW5yDVX33Vzw==, } + peerDependencies: + astro: ~4.16.3 astro@4.16.18: resolution: @@ -4667,10 +4684,10 @@ packages: integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==, } - axe-core@4.10.0: + axe-core@4.10.2: resolution: { - integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==, + integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==, } engines: { node: '>=4' } @@ -4687,36 +4704,71 @@ packages: integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==, } - backstopjs@6.2.2: + backstopjs@6.3.25: + resolution: + { + integrity: sha512-jy0dxlk45tItXLcj9zjRTCyCa6D27M9OMK5kM8To0ELLclKhI/dWn/igUTMBBMJXe4Kql+CGyDRErMtTv2+40Q==, + } + engines: { node: '>=16.0.0', npm: '>=8.0.0' } + hasBin: true + + bail@2.0.2: + resolution: + { + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + } + + balanced-match@1.0.2: resolution: { - integrity: sha512-Uy+y7FR+4jjhg+lxO2Sx9ag7D08HII9p5bfTpLD6/t2wkSk38pTTFbb7eeRvhuUNoPAgEk4o1urYrtPq4G9jyg==, + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } + + balanced-match@2.0.0: + resolution: + { + integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==, + } + + bare-events@2.5.0: + resolution: + { + integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==, } - hasBin: true - bail@2.0.2: + bare-fs@4.0.1: resolution: { - integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + integrity: sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==, } + engines: { bare: '>=1.7.0' } - balanced-match@1.0.2: + bare-os@3.4.0: resolution: { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + integrity: sha512-9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==, } + engines: { bare: '>=1.6.0' } - balanced-match@2.0.0: + bare-path@3.0.0: resolution: { - integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==, + integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==, } - bare-events@2.5.0: + bare-stream@2.6.5: resolution: { - integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==, + integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==, } + peerDependencies: + bare-buffer: '*' + bare-events: '*' + peerDependenciesMeta: + bare-buffer: + optional: true + bare-events: + optional: true base-64@1.0.0: resolution: @@ -4737,6 +4789,13 @@ packages: } engines: { node: '>= 0.8' } + basic-ftp@5.0.5: + resolution: + { + integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==, + } + engines: { node: '>=10.0.0' } + bcp-47-match@2.0.3: resolution: { @@ -4813,13 +4872,6 @@ packages: integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==, } - boxen@7.1.1: - resolution: - { - integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==, - } - engines: { node: '>=14.16' } - boxen@8.0.1: resolution: { @@ -4852,14 +4904,6 @@ packages: integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==, } - browserslist@4.23.3: - resolution: - { - integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } - hasBin: true - browserslist@4.24.3: resolution: { @@ -5023,13 +5067,6 @@ packages: } engines: { node: '>=10' } - camelcase@7.0.1: - resolution: - { - integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==, - } - engines: { node: '>=14.16' } - camelcase@8.0.0: resolution: { @@ -5142,6 +5179,13 @@ packages: } engines: { node: '>= 8.10.0' } + chokidar@4.0.3: + resolution: + { + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, + } + engines: { node: '>= 14.16.0' } + chownr@1.1.4: resolution: { @@ -5155,10 +5199,10 @@ packages: } engines: { node: '>=10' } - chromium-bidi@0.4.7: + chromium-bidi@0.6.3: resolution: { - integrity: sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ==, + integrity: sha512-qXlsCmpCZJAnoTYI83Iu6EdYQpMYdVkCfq08KDh2pmlVqK5t5IA9mGs4/LwCwp4fqisSOMXZxP3HIh8w8aRn0A==, } peerDependencies: devtools-protocol: '*' @@ -5489,13 +5533,6 @@ packages: integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, } - cosmiconfig@8.1.3: - resolution: - { - integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==, - } - engines: { node: '>=14' } - cosmiconfig@8.3.6: resolution: { @@ -5508,11 +5545,17 @@ packages: typescript: optional: true - cross-fetch@3.1.5: + cosmiconfig@9.0.0: resolution: { - integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==, + integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==, } + engines: { node: '>=14' } + peerDependencies: + typescript: ~5.5.2 + peerDependenciesMeta: + typescript: + optional: true cross-spawn@6.0.6: resolution: @@ -5562,10 +5605,10 @@ packages: peerDependencies: postcss: ^8.4.34 - css-selector-parser@2.3.2: + css-selector-parser@3.0.5: resolution: { - integrity: sha512-JjnG6/pdLJh3iqipq7kteNVtbIczsU2A1cNxb+VAiniSuNmrB/NI3us4rSCfArvlwRXYly+jZhUUfEoInSH9Qg==, + integrity: sha512-3itoDFbKUNx1eKmVpYMFyqKX04Ww9osZ+dLgrk6GEv6KMVeXUhUnp4I5X+evw+u3ZxVU6RFXSSRxlTeMh8bA+g==, } css-tree@2.3.1: @@ -5662,6 +5705,13 @@ packages: } engines: { node: '>= 6' } + data-uri-to-buffer@6.0.2: + resolution: + { + integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==, + } + engines: { node: '>= 14' } + data-urls@5.0.0: resolution: { @@ -5732,10 +5782,10 @@ packages: supports-color: optional: true - debug@4.3.4: + debug@4.3.7: resolution: { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, } engines: { node: '>=6.0' } peerDependencies: @@ -5744,10 +5794,10 @@ packages: supports-color: optional: true - debug@4.3.7: + debug@4.4.0: resolution: { - integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, + integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==, } engines: { node: '>=6.0' } peerDependencies: @@ -5890,6 +5940,13 @@ packages: } engines: { node: '>= 0.4' } + degenerator@5.0.1: + resolution: + { + integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==, + } + engines: { node: '>= 14' } + delayed-stream@1.0.0: resolution: { @@ -5971,10 +6028,10 @@ packages: integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, } - devtools-protocol@0.0.1107588: + devtools-protocol@0.0.1312386: resolution: { - integrity: sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==, + integrity: sha512-DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA==, } diff-sequences@29.6.3: @@ -6094,12 +6151,6 @@ packages: integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, } - electron-to-chromium@1.5.26: - resolution: - { - integrity: sha512-Z+OMe9M/V6Ep9n/52+b7lkvYEps26z4Yz3vjWL1V61W0q+VLF1pOHhMY17sa4roz4AWmULSI8E6SAojZA5L0YQ==, - } - electron-to-chromium@1.5.74: resolution: { @@ -6170,6 +6221,13 @@ packages: } engines: { node: '>=0.12' } + env-paths@2.2.1: + resolution: + { + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, + } + engines: { node: '>=6' } + environment@1.1.0: resolution: { @@ -6249,6 +6307,18 @@ packages: } engines: { node: '>= 0.4' } + esast-util-from-estree@2.0.0: + resolution: + { + integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==, + } + + esast-util-from-js@2.0.1: + resolution: + { + integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==, + } + esbuild-plugins-node-modules-polyfill@1.6.3: resolution: { @@ -6282,12 +6352,13 @@ packages: engines: { node: '>=12' } hasBin: true - escalade@3.1.2: + esbuild@0.24.2: resolution: { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, + integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==, } - engines: { node: '>=6' } + engines: { node: '>=18' } + hasBin: true escalade@3.2.0: resolution: @@ -6323,6 +6394,14 @@ packages: } engines: { node: '>=12' } + escodegen@2.1.0: + resolution: + { + integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==, + } + engines: { node: '>=6.0' } + hasBin: true + eslint-config-prettier@8.8.0: resolution: { @@ -6481,6 +6560,12 @@ packages: integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==, } + estree-util-scope@1.0.0: + resolution: + { + integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==, + } + estree-util-to-js@1.2.0: resolution: { @@ -6606,10 +6691,10 @@ packages: } engines: { node: '>= 0.10.0' } - expressive-code@0.33.5: + expressive-code@0.40.1: resolution: { - integrity: sha512-UPg2jSvZEfXPiCa4MKtMoMQ5Hwiv7In5/LSCa/ukhjzZqPO48iVsCcEBgXWEUmEAQ02P0z00/xFfBmVnUKH+Zw==, + integrity: sha512-jBsTRX+MPsqiqYQsE9vRXMiAkUafU11j2zuWAaOX9vubLutNB0er8c0FJWeudVDH5D52V4Lf4vTIqbOE54PUcQ==, } ext-list@2.2.2: @@ -6928,6 +7013,13 @@ packages: } engines: { node: '>=12' } + fs-extra@11.3.0: + resolution: + { + integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==, + } + engines: { node: '>=14.14' } + fs-extra@9.1.0: resolution: { @@ -7079,6 +7171,13 @@ packages: } engines: { node: '>= 0.4' } + get-uri@6.0.4: + resolution: + { + integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==, + } + engines: { node: '>= 14' } + getos@3.2.1: resolution: { @@ -7315,24 +7414,12 @@ packages: integrity: sha512-tI3JjoGDEBVorMAWK4jNRsfLMYmih1BUOG3VV36pH36njs1IEl7xkNrVTD2mD2yYHmQCa5R/fj61a8IAF4bRaQ==, } - hast-util-from-html@2.0.1: - resolution: - { - integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==, - } - hast-util-from-html@2.0.3: resolution: { integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==, } - hast-util-from-parse5@7.1.2: - resolution: - { - integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==, - } - hast-util-from-parse5@8.0.1: resolution: { @@ -7357,34 +7444,22 @@ packages: integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, } - hast-util-parse-selector@3.1.1: - resolution: - { - integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==, - } - hast-util-parse-selector@4.0.0: resolution: { integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, } - hast-util-raw@7.2.3: - resolution: - { - integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==, - } - hast-util-raw@9.0.2: resolution: { integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==, } - hast-util-select@6.0.1: + hast-util-select@6.0.3: resolution: { - integrity: sha512-KPNOtLqeJCcFRyxQm9BakO3bdIQfremXraw4mh9jxsJ+L593v/VdP3G9Dfjahacl/bw8PPvIFseaXzElKOYRpA==, + integrity: sha512-OVRQlQ1XuuLP8aFVLYmC2atrfWHS5UD3shonxpnyrjcCkwtvmt/+N6kYJdcY4mkMJhxp4kj2EFIxQ9kvkkt/eQ==, } hast-util-to-estree@2.3.3: @@ -7399,16 +7474,10 @@ packages: integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==, } - hast-util-to-html@8.0.4: - resolution: - { - integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==, - } - - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.4: resolution: { - integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==, + integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==, } hast-util-to-jsx-runtime@2.3.0: @@ -7417,12 +7486,6 @@ packages: integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==, } - hast-util-to-parse5@7.1.0: - resolution: - { - integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==, - } - hast-util-to-parse5@8.0.0: resolution: { @@ -7453,16 +7516,16 @@ packages: integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, } - hastscript@7.2.0: + hastscript@8.0.0: resolution: { - integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==, + integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, } - hastscript@8.0.0: + hastscript@9.0.0: resolution: { - integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, + integrity: sha512-jzaLBGavEDKHrc5EfFImKN7nZKKBdSLIdGvCwDZ9TfzbF2ffXiov8CKE445L2Z1Ek2t/m4SKQ2j6Ipv7NyUolw==, } headers-polyfill@4.0.2: @@ -7523,12 +7586,6 @@ packages: } engines: { node: '>=8' } - html-void-elements@2.0.1: - resolution: - { - integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==, - } - html-void-elements@3.0.0: resolution: { @@ -7562,10 +7619,10 @@ packages: } engines: { node: '>= 0.8' } - http-proxy-agent@7.0.0: + http-proxy-agent@7.0.2: resolution: { - integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==, + integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==, } engines: { node: '>= 14' } @@ -7583,17 +7640,10 @@ packages: } engines: { node: '>=10.19.0' } - https-proxy-agent@5.0.1: - resolution: - { - integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, - } - engines: { node: '>= 6' } - - https-proxy-agent@7.0.2: + https-proxy-agent@7.0.6: resolution: { - integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==, + integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==, } engines: { node: '>= 14' } @@ -7766,6 +7816,13 @@ packages: } engines: { node: '>= 0.4' } + ip-address@9.0.5: + resolution: + { + integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==, + } + engines: { node: '>= 12' } + ipaddr.js@1.9.1: resolution: { @@ -8223,6 +8280,13 @@ packages: } engines: { node: '>=18' } + isbot@5.1.22: + resolution: + { + integrity: sha512-RqCFY3cJy3c2y1I+rMn81cfzAR4XJwfPBC+M8kffUjbPzxApzyyv7Tbm1C/gXXq2dSCuD238pKFEWlQMTWsTFw==, + } + engines: { node: '>=18' } + isexe@2.0.0: resolution: { @@ -8335,6 +8399,12 @@ packages: integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, } + jsbn@1.1.0: + resolution: + { + integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==, + } + jsdom@24.0.0: resolution: { @@ -8347,14 +8417,6 @@ packages: canvas: optional: true - jsesc@2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: { node: '>=4' } - hasBin: true - jsesc@3.0.2: resolution: { @@ -8564,91 +8626,100 @@ packages: } engines: { node: '>= 0.8.0' } - lightningcss-darwin-arm64@1.25.1: + lightningcss-darwin-arm64@1.29.1: resolution: { - integrity: sha512-G4Dcvv85bs5NLENcu/s1f7ehzE3D5ThnlWSDwE190tWXRQCQaqwcuHe+MGSVI/slm0XrxnaayXY+cNl3cSricw==, + integrity: sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw==, } engines: { node: '>= 12.0.0' } cpu: [arm64] os: [darwin] - lightningcss-darwin-x64@1.25.1: + lightningcss-darwin-x64@1.29.1: resolution: { - integrity: sha512-dYWuCzzfqRueDSmto6YU5SoGHvZTMU1Em9xvhcdROpmtOQLorurUZz8+xFxZ51lCO2LnYbfdjZ/gCqWEkwixNg==, + integrity: sha512-k33G9IzKUpHy/J/3+9MCO4e+PzaFblsgBjSGlpAaFikeBFm8B/CkO3cKU9oI4g+fjS2KlkLM/Bza9K/aw8wsNA==, } engines: { node: '>= 12.0.0' } cpu: [x64] os: [darwin] - lightningcss-freebsd-x64@1.25.1: + lightningcss-freebsd-x64@1.29.1: resolution: { - integrity: sha512-hXoy2s9A3KVNAIoKz+Fp6bNeY+h9c3tkcx1J3+pS48CqAt+5bI/R/YY4hxGL57fWAIquRjGKW50arltD6iRt/w==, + integrity: sha512-0SUW22fv/8kln2LnIdOCmSuXnxgxVC276W5KLTwoehiO0hxkacBxjHOL5EtHD8BAXg2BvuhsJPmVMasvby3LiQ==, } engines: { node: '>= 12.0.0' } cpu: [x64] os: [freebsd] - lightningcss-linux-arm-gnueabihf@1.25.1: + lightningcss-linux-arm-gnueabihf@1.29.1: resolution: { - integrity: sha512-tWyMgHFlHlp1e5iW3EpqvH5MvsgoN7ZkylBbG2R2LWxnvH3FuWCJOhtGcYx9Ks0Kv0eZOBud789odkYLhyf1ng==, + integrity: sha512-sD32pFvlR0kDlqsOZmYqH/68SqUMPNj+0pucGxToXZi4XZgZmqeX/NkxNKCPsswAXU3UeYgDSpGhu05eAufjDg==, } engines: { node: '>= 12.0.0' } cpu: [arm] os: [linux] - lightningcss-linux-arm64-gnu@1.25.1: + lightningcss-linux-arm64-gnu@1.29.1: resolution: { - integrity: sha512-Xjxsx286OT9/XSnVLIsFEDyDipqe4BcLeB4pXQ/FEA5+2uWCCuAEarUNQumRucnj7k6ftkAHUEph5r821KBccQ==, + integrity: sha512-0+vClRIZ6mmJl/dxGuRsE197o1HDEeeRk6nzycSy2GofC2JsY4ifCRnvUWf/CUBQmlrvMzt6SMQNMSEu22csWQ==, } engines: { node: '>= 12.0.0' } cpu: [arm64] os: [linux] - lightningcss-linux-arm64-musl@1.25.1: + lightningcss-linux-arm64-musl@1.29.1: resolution: { - integrity: sha512-IhxVFJoTW8wq6yLvxdPvyHv4NjzcpN1B7gjxrY3uaykQNXPHNIpChLB52+wfH+yS58zm1PL4LemUp8u9Cfp6Bw==, + integrity: sha512-UKMFrG4rL/uHNgelBsDwJcBqVpzNJbzsKkbI3Ja5fg00sgQnHw/VrzUTEc4jhZ+AN2BvQYz/tkHu4vt1kLuJyw==, } engines: { node: '>= 12.0.0' } cpu: [arm64] os: [linux] - lightningcss-linux-x64-gnu@1.25.1: + lightningcss-linux-x64-gnu@1.29.1: resolution: { - integrity: sha512-RXIaru79KrREPEd6WLXfKfIp4QzoppZvD3x7vuTKkDA64PwTzKJ2jaC43RZHRt8BmyIkRRlmywNhTRMbmkPYpA==, + integrity: sha512-u1S+xdODy/eEtjADqirA774y3jLcm8RPtYztwReEXoZKdzgsHYPl0s5V52Tst+GKzqjebkULT86XMSxejzfISw==, } engines: { node: '>= 12.0.0' } cpu: [x64] os: [linux] - lightningcss-linux-x64-musl@1.25.1: + lightningcss-linux-x64-musl@1.29.1: resolution: { - integrity: sha512-TdcNqFsAENEEFr8fJWg0Y4fZ/nwuqTRsIr7W7t2wmDUlA8eSXVepeeONYcb+gtTj1RaXn/WgNLB45SFkz+XBZA==, + integrity: sha512-L0Tx0DtaNUTzXv0lbGCLB/c/qEADanHbu4QdcNOXLIe1i8i22rZRpbT3gpWYsCh9aSL9zFujY/WmEXIatWvXbw==, } engines: { node: '>= 12.0.0' } cpu: [x64] os: [linux] - lightningcss-win32-x64-msvc@1.25.1: + lightningcss-win32-arm64-msvc@1.29.1: + resolution: + { + integrity: sha512-QoOVnkIEFfbW4xPi+dpdft/zAKmgLgsRHfJalEPYuJDOWf7cLQzYg0DEh8/sn737FaeMJxHZRc1oBreiwZCjog==, + } + engines: { node: '>= 12.0.0' } + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.29.1: resolution: { - integrity: sha512-9KZZkmmy9oGDSrnyHuxP6iMhbsgChUiu/NSgOx+U1I/wTngBStDf2i2aGRCHvFqj19HqqBEI4WuGVQBa2V6e0A==, + integrity: sha512-NygcbThNBe4JElP+olyTI/doBNGJvLs3bFCRPdvuCcxZCcCZ71B858IHpdm7L1btZex0FvCmM17FK98Y9MRy1Q==, } engines: { node: '>= 12.0.0' } cpu: [x64] os: [win32] - lightningcss@1.25.1: + lightningcss@1.29.1: resolution: { - integrity: sha512-V0RMVZzK1+rCHpymRv4URK2lNhIRyO8g7U7zOFwVAhJuat74HtkjIQpQRKNCwFEYkRGpafOpmXXLoaoBcyVtBg==, + integrity: sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q==, } engines: { node: '>= 12.0.0' } @@ -9730,10 +9801,10 @@ packages: } engines: { node: '>= 8' } - mitt@3.0.0: + mitt@3.0.1: resolution: { - integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==, + integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, } mkdirp-classic@0.5.3: @@ -9803,22 +9874,16 @@ packages: integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, } - ms@2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } - ms@2.1.3: resolution: { integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, } - msw@2.4.9: + msw@2.7.0: resolution: { - integrity: sha512-1m8xccT6ipN4PTqLinPwmzhxQREuxaEJYdx4nIbggxP8aM7r1e71vE7RtOUSQoAm1LydjGfZKy7370XD/tsuYg==, + integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==, } engines: { node: '>=18' } hasBin: true @@ -9828,12 +9893,12 @@ packages: typescript: optional: true - mute-stream@1.0.0: + mute-stream@2.0.0: resolution: { - integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==, + integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==, } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + engines: { node: ^18.17.0 || >=20.5.0 } nanoid@3.3.8: resolution: @@ -9843,12 +9908,12 @@ packages: engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - nanostores@0.9.5: + nanostores@0.11.3: resolution: { - integrity: sha512-Z+p+g8E7yzaWwOe5gEUB2Ox0rCEeXWYIZWmYvw/ajNYX8DlXdMvMDj8DWfM/subqPAcsf8l8Td4iAwO1DeIIRQ==, + integrity: sha512-TUes3xKIX33re4QzdxwZ6tdbodjmn3tWXCEc1uokiEmo14sI1EaGYNs2k3bU2pyyGNmBqFGAVl6jAGWd06AVIg==, } - engines: { node: ^16.0.0 || ^18.0.0 || >=20.0.0 } + engines: { node: ^18.0.0 || >=20.0.0 } natural-compare-lite@1.4.0: resolution: @@ -9882,24 +9947,34 @@ packages: } engines: { node: '>= 10' } - next@14.2.21: + netmask@2.0.2: + resolution: + { + integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==, + } + engines: { node: '>= 0.4.0' } + + next@15.1.6: resolution: { - integrity: sha512-rZmLwucLHr3/zfDMYbJXbw0ZeoBpirxkXuvsJbk7UPorvPYZhP7vq7aHbKnU7dQNCYIimRrbB2pp3xmf+wsYUg==, + integrity: sha512-Hch4wzbaX0vKQtalpXvUiw5sYivBy4cm5rzUKrBnUB/y436LGrvOUqYvlSeNVCWFO/770gDlltR9gqZH62ct4Q==, } - engines: { node: '>=18.17.0' } + engines: { node: ^18.18.0 || ^19.8.0 || >= 20.0.0 } hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 - react: ^18.2.0 - react-dom: ^18.2.0 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': optional: true '@playwright/test': optional: true + babel-plugin-react-compiler: + optional: true sass: optional: true @@ -9941,18 +10016,6 @@ packages: } engines: { node: '>= 0.10.5' } - node-fetch@2.6.7: - resolution: - { - integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, - } - engines: { node: 4.x || >=6.0.0 } - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true - node-gyp-build@4.8.1: resolution: { @@ -9960,12 +10023,6 @@ packages: } hasBin: true - node-releases@2.0.18: - resolution: - { - integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==, - } - node-releases@2.0.19: resolution: { @@ -10000,12 +10057,6 @@ packages: } engines: { node: '>=14.16' } - not@0.1.0: - resolution: - { - integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==, - } - npm-install-checks@6.3.0: resolution: { @@ -10184,10 +10235,10 @@ packages: } engines: { node: '>=18' } - oniguruma-to-es@0.7.0: + oniguruma-to-es@2.3.0: resolution: { - integrity: sha512-HRaRh09cE0gRS3+wi2zxekB+I5L8C/gN60S+vb11eADHUaB/q4u8wGGOX3GvwvitG8ixaeycZfeoyruKQzUgNg==, + integrity: sha512-bwALDxriqfKGfUufKGGepCzu9x7nJQuoRoAFp4AnwehhC2crqrDIAP/uN2qdlsAvSMpeRC3+Yzhqc7hLmle5+g==, } only@0.0.2: @@ -10203,12 +10254,13 @@ packages: } engines: { node: '>=18' } - opn@5.5.0: + opn@6.0.0: resolution: { - integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==, + integrity: sha512-I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ==, } - engines: { node: '>=4' } + engines: { node: '>=8' } + deprecated: The package has been renamed to `open` optionator@0.9.3: resolution: @@ -10339,6 +10391,20 @@ packages: } engines: { node: '>=6' } + pac-proxy-agent@7.1.0: + resolution: + { + integrity: sha512-Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==, + } + engines: { node: '>= 14' } + + pac-resolver@7.0.1: + resolution: + { + integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==, + } + engines: { node: '>= 14' } + pako@0.2.9: resolution: { @@ -10391,12 +10457,6 @@ packages: } engines: { node: '>=6' } - parse5@6.0.1: - resolution: - { - integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, - } - parse5@7.1.2: resolution: { @@ -10547,10 +10607,10 @@ packages: integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==, } - picocolors@1.1.0: + picocolors@1.1.1: resolution: { - integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==, + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, } picomatch@2.3.1: @@ -11102,10 +11162,10 @@ packages: } engines: { node: '>=10' } - prism-react-renderer@2.3.1: + prism-react-renderer@2.4.1: resolution: { - integrity: sha512-Rdf+HzBLR7KYjzpJ1rSoxT9ioO85nZngQEoFIhL07XhtJHlCU3SOz0GJ6+qvMyQe0Se+BV3qpe6Yd/NmQF5Juw==, + integrity: sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==, } peerDependencies: react: '>=16.0.0' @@ -11188,6 +11248,13 @@ packages: } engines: { node: '>= 0.10' } + proxy-agent@6.5.0: + resolution: + { + integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==, + } + engines: { node: '>= 14' } + proxy-from-env@1.0.0: resolution: { @@ -11231,24 +11298,20 @@ packages: } engines: { node: '>=6' } - puppeteer-core@19.11.1: + puppeteer-core@22.15.0: resolution: { - integrity: sha512-qcuC2Uf0Fwdj9wNtaTZ2OvYRraXpAK+puwwVW8ofOhOgLPZyz1c68tsorfIZyCUOpyBisjr+xByu7BMbEYMepA==, + integrity: sha512-cHArnywCiAAVXa3t4GGL2vttNxh7GqXtIYGym99egkNJ3oG//wL9LkvO4WE8W1TJe95t1F1ocu9X4xWaGsOKOA==, } - engines: { node: '>=14.14.0' } - peerDependencies: - typescript: ~5.5.2 - peerDependenciesMeta: - typescript: - optional: true + engines: { node: '>=18' } - puppeteer@19.11.1: + puppeteer@22.15.0: resolution: { - integrity: sha512-39olGaX2djYUdhaQQHDZ0T0GwEp+5f9UB9HmEP0qHfdQHIq0xGQZuAZ5TLnJIc/88SrPLpEflPC+xUqOTv3c5g==, + integrity: sha512-XjCY1SiSEi1T7iSYuxS82ft85kwDJUS7wj1Z0eGVXKdtr5g4xnVcbjwxhq5xBnpK/E7x1VZZoJDxpjAOasHT4Q==, } - deprecated: < 21.9.0 is no longer supported + engines: { node: '>=18' } + hasBin: true qs@6.10.5: resolution: @@ -11265,10 +11328,10 @@ packages: } engines: { node: '>=0.6' } - query-string@9.1.0: + query-string@9.1.1: resolution: { - integrity: sha512-t6dqMECpCkqfyv2FfwVS1xcB6lgXW/0XZSaKdsCNGYkqMO76AFiJEg4vINzoDKcZa6MS7JX+OHIjwh06K5vczw==, + integrity: sha512-MWkCOVIcJP9QSKU52Ngow6bsAWAPlPK2MludXvcrS2bGZSl+T1qX9MZvRIkqUIkGLJquMJHWfsT6eRqUpp4aWg==, } engines: { node: '>=18' } @@ -11284,12 +11347,6 @@ packages: integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, } - queue-tick@1.0.1: - resolution: - { - integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==, - } - quick-lru@5.1.1: resolution: { @@ -11335,10 +11392,10 @@ packages: peerDependencies: react: ^18.2.0 - react-hotkeys-hook@4.5.1: + react-hotkeys-hook@4.6.1: resolution: { - integrity: sha512-scAEJOh3Irm0g95NIn6+tQVf/OICCjsQsC9NBHfQws/Vxw4sfq1tDQut5fhTEvPraXhu/sHxRd9lOtxzyYuNAg==, + integrity: sha512-XlZpbKUj9tkfgPgT9gA+1p7Ey6vFIZHttUjPqpTdyT5nqQ8mHL7elxvSbaC+dpSiHUSmr21Ya1mDxBZG3aje4Q==, } peerDependencies: react: '>=16.8.1' @@ -11377,20 +11434,20 @@ packages: } engines: { node: '>=0.10.0' } - react-router-dom@6.22.3: + react-router-dom@6.29.0: resolution: { - integrity: sha512-7ZILI7HjcE+p31oQvwbokjk6OA/bnFxrhJ19n82Ex9Ph8fNAq+Hm/7KchpMGlTgWhUxRHMMCut+vEtNpWpowKw==, + integrity: sha512-pkEbJPATRJ2iotK+wUwHfy0xs2T59YPEN8BQxVCPeBZvK7kfPESRc/nyxzdcxR17hXgUPYx2whMwl+eo9cUdnQ==, } engines: { node: '>=14.0.0' } peerDependencies: react: '>=16.8' react-dom: '>=16.8' - react-router@6.22.3: + react-router@6.29.0: resolution: { - integrity: sha512-dr2eb3Mj5zK2YISHK++foM9w4eBnO23eKnZEDs7c880P6oKbrjz/Svg9+nxqtHQK+oMW4OtjZca0RqPglXxguQ==, + integrity: sha512-DXZJoE0q+KyeVw75Ck6GkPxFak63C4fGqZGNijnWgzB/HzSP1ZfTlBj5COaGWwhrMQ/R8bXiq5Ooy4KG+ReyjQ==, } engines: { node: '>=14.0.0' } peerDependencies: @@ -11452,6 +11509,37 @@ packages: } engines: { node: '>=8.10.0' } + readdirp@4.1.1: + resolution: + { + integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==, + } + engines: { node: '>= 14.18.0' } + + recma-build-jsx@1.0.0: + resolution: + { + integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==, + } + + recma-jsx@1.0.0: + resolution: + { + integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==, + } + + recma-parse@1.0.0: + resolution: + { + integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==, + } + + recma-stringify@1.0.0: + resolution: + { + integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==, + } + redent@3.0.0: resolution: { @@ -11479,10 +11567,10 @@ packages: integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, } - regex-recursion@4.3.0: + regex-recursion@5.1.1: resolution: { - integrity: sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==, + integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==, } regex-utilities@2.3.0: @@ -11491,10 +11579,10 @@ packages: integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, } - regex@5.0.2: + regex@5.1.1: resolution: { - integrity: sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==, + integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==, } regexp.prototype.flags@1.5.2: @@ -11516,6 +11604,12 @@ packages: integrity: sha512-jldCIiAEvXKdq8hqr5f5PzNdIDkvHC6zfKhwta9oRoMu7bn0W7qLES/JrrjBvr9rKz3nJ8x4vY1EWI+dhjHVZQ==, } + rehype-expressive-code@0.40.1: + resolution: + { + integrity: sha512-EjmhGHcgmcPoIsb4M6vm2FQQDUctdcgFFiKGCYtPJuMpzr1q+ChCNsc443MaE412MyAgL6Q/XUB7I56Mcl6bnw==, + } + rehype-parse@9.0.0: resolution: { @@ -11528,16 +11622,16 @@ packages: integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, } - rehype-slug@6.0.0: + rehype-recma@1.0.0: resolution: { - integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==, + integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==, } - rehype-stringify@10.0.0: + rehype-slug@6.0.0: resolution: { - integrity: sha512-1TX1i048LooI9QoecrXy7nGFFbFSufxVRAfc6Y9YMRAi56l+oB0zP51mLSV312uRuvVLPV1opSlJmslozR1XHQ==, + integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==, } rehype-stringify@10.0.1: @@ -11552,12 +11646,6 @@ packages: integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==, } - remark-expressive-code@0.33.5: - resolution: - { - integrity: sha512-E4CZq3AuUXLu6or0AaDKkgsHYqmnm4ZL8/+1/8YgwtKcogHwTMRJfQtxkZpth90QQoNUpsapvm5x5n3Np2OC9w==, - } - remark-frontmatter@4.0.1: resolution: { @@ -11607,12 +11695,6 @@ packages: integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==, } - remark-rehype@11.1.0: - resolution: - { - integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==, - } - remark-rehype@11.1.1: resolution: { @@ -11831,10 +11913,10 @@ packages: engines: { node: '>=14' } hasBin: true - rollup@4.28.1: + rollup@4.34.3: resolution: { - integrity: sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==, + integrity: sha512-ORCtU0UBJyiAIn9m0llUXJXAswG/68pZptCrqxHG7//Z2DDzAUeyyY5hqf4XrsGlUxscMr9GkQ2QI7KTLqeyPw==, } engines: { node: '>=18.0.0', npm: '>=8.0.0' } hasBin: true @@ -12158,10 +12240,10 @@ packages: integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, } - shiki@1.24.2: + shiki@1.29.2: resolution: { - integrity: sha512-TR1fi6mkRrzW+SKT5G6uKuc32Dj2EEa7Kj0k8kGqiBINb+C1TiflVOiT9ta6GqOJtC4fraxO5SLUaKBcSY38Fg==, + integrity: sha512-njXuliz/cP+67jU2hukkxCNuH1yUi4QfdZZY+sMr5PPrIyXSu5iTb/qYC4BiWWB0vZ+7TbdvYUCeL23zpwCfbg==, } side-channel@1.0.6: @@ -12252,12 +12334,33 @@ packages: } engines: { node: '>=18' } + smart-buffer@4.2.0: + resolution: + { + integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==, + } + engines: { node: '>= 6.0.0', npm: '>= 3.0.0' } + snarkdown@2.0.0: resolution: { integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==, } + socks-proxy-agent@8.0.5: + resolution: + { + integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==, + } + engines: { node: '>= 14' } + + socks@2.8.3: + resolution: + { + integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==, + } + engines: { node: '>= 10.0.0', npm: '>= 3.0.0' } + sort-keys-length@1.0.1: resolution: { @@ -12348,6 +12451,12 @@ packages: integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, } + sprintf-js@1.1.3: + resolution: + { + integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, + } + sshpk@1.17.0: resolution: { @@ -12415,10 +12524,10 @@ packages: } engines: { node: '>=10.0.0' } - streamx@2.20.2: + streamx@2.22.0: resolution: { - integrity: sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA==, + integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==, } strict-event-emitter@0.5.1: @@ -12611,16 +12720,16 @@ packages: integrity: sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==, } - styled-jsx@5.1.1: + styled-jsx@5.1.6: resolution: { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==, } engines: { node: '>= 12.0.0' } peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' peerDependenciesMeta: '@babel/core': optional: true @@ -12768,6 +12877,12 @@ packages: integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==, } + tar-fs@3.0.8: + resolution: + { + integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==, + } + tar-stream@2.2.0: resolution: { @@ -12871,13 +12986,6 @@ packages: } engines: { node: '>=8.17.0' } - to-fast-properties@2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: { node: '>=4' } - to-regex-range@5.0.1: resolution: { @@ -12912,12 +13020,6 @@ packages: } engines: { node: '>=6' } - tr46@0.0.3: - resolution: - { - integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, - } - tr46@5.0.0: resolution: { @@ -12951,19 +13053,6 @@ packages: integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==, } - tsconfck@3.1.3: - resolution: - { - integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==, - } - engines: { node: ^18 || >=20 } - hasBin: true - peerDependencies: - typescript: ~5.5.2 - peerDependenciesMeta: - typescript: - optional: true - tsconfck@3.1.4: resolution: { @@ -12990,12 +13079,6 @@ packages: integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, } - tslib@2.6.1: - resolution: - { - integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==, - } - tslib@2.8.1: resolution: { @@ -13056,6 +13139,12 @@ packages: cpu: [arm64] os: [linux] + turbo-stream@2.4.0: + resolution: + { + integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==, + } + turbo-windows-64@1.12.4: resolution: { @@ -13120,13 +13209,6 @@ packages: } engines: { node: '>=10' } - type-fest@2.19.0: - resolution: - { - integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==, - } - engines: { node: '>=12.20' } - type-fest@4.26.1: resolution: { @@ -13134,13 +13216,6 @@ packages: } engines: { node: '>=16' } - type-fest@4.9.0: - resolution: - { - integrity: sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==, - } - engines: { node: '>=16' } - type-is@1.6.18: resolution: { @@ -13235,6 +13310,13 @@ packages: integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, } + undici@6.21.1: + resolution: + { + integrity: sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==, + } + engines: { node: '>=18.17' } + unherit@3.0.1: resolution: { @@ -13434,15 +13516,6 @@ packages: } engines: { node: '>=8' } - update-browserslist-db@1.1.0: - resolution: - { - integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==, - } - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.1.1: resolution: { @@ -13464,6 +13537,12 @@ packages: integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, } + urlpattern-polyfill@10.0.0: + resolution: + { + integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==, + } + util-deprecate@1.0.2: resolution: { @@ -13511,6 +13590,17 @@ packages: } engines: { node: '>=10.12.0' } + valibot@0.41.0: + resolution: + { + integrity: sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==, + } + peerDependencies: + typescript: ~5.5.2 + peerDependenciesMeta: + typescript: + optional: true + validate-npm-package-license@3.0.4: resolution: { @@ -13544,12 +13634,6 @@ packages: } engines: { '0': node >=0.6.0 } - vfile-location@4.1.0: - resolution: - { - integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==, - } - vfile-location@5.0.2: resolution: { @@ -13599,6 +13683,17 @@ packages: vite: optional: true + vite-tsconfig-paths@5.1.4: + resolution: + { + integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==, + } + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + vite@5.4.14: resolution: { @@ -13633,6 +13728,49 @@ packages: terser: optional: true + vite@6.1.0: + resolution: + { + integrity: sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==, + } + engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + vitefu@1.0.4: resolution: { @@ -13704,12 +13842,6 @@ packages: } engines: { node: '>= 8' } - webidl-conversions@3.0.1: - resolution: - { - integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, - } - webidl-conversions@7.0.0: resolution: { @@ -13738,12 +13870,6 @@ packages: } engines: { node: '>=18' } - whatwg-url@5.0.0: - resolution: - { - integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, - } - which-boxed-primitive@1.0.2: resolution: { @@ -13821,13 +13947,6 @@ packages: engines: { node: '>=8' } hasBin: true - widest-line@4.0.1: - resolution: - { - integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==, - } - engines: { node: '>=12' } - widest-line@5.0.0: resolution: { @@ -14018,13 +14137,6 @@ packages: } engines: { node: '>=10' } - yargs@17.7.1: - resolution: - { - integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==, - } - engines: { node: '>=12' } - yargs@17.7.2: resolution: { @@ -14212,17 +14324,17 @@ snapshots: dependencies: '@astrojs/prism': 3.1.0 github-slugger: 2.0.0 - hast-util-from-html: 2.0.1 + hast-util-from-html: 2.0.3 hast-util-to-text: 4.0.2 import-meta-resolve: 4.1.0 mdast-util-definitions: 6.0.0 rehype-raw: 7.0.0 - rehype-stringify: 10.0.0 + rehype-stringify: 10.0.1 remark-gfm: 4.0.0 remark-parse: 11.0.0 - remark-rehype: 11.1.0 + remark-rehype: 11.1.1 remark-smartypants: 2.1.0 - shiki: 1.24.2 + shiki: 1.29.2 unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 @@ -14245,7 +14357,7 @@ snapshots: remark-parse: 11.0.0 remark-rehype: 11.1.1 remark-smartypants: 3.0.2 - shiki: 1.24.2 + shiki: 1.29.2 unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 @@ -14254,17 +14366,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/mdx@2.2.0(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2))': + '@astrojs/mdx@2.2.0(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2))': dependencies: '@astrojs/markdown-remark': 4.3.0 - '@mdx-js/mdx': 3.0.1 - acorn: 8.12.1 - astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + '@mdx-js/mdx': 3.1.0(acorn@8.14.0) + acorn: 8.14.0 + astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) es-module-lexer: 1.5.4 estree-util-visit: 2.0.0 github-slugger: 2.0.0 gray-matter: 4.0.3 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.4 kleur: 4.1.5 rehype-raw: 7.0.0 remark-gfm: 4.0.0 @@ -14279,17 +14391,28 @@ snapshots: dependencies: prismjs: 1.29.0 - '@astrojs/react@3.1.0(@types/react-dom@18.2.18)(@types/react@18.2.14)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@astrojs/react@4.2.0(@types/node@22.5.5)(@types/react-dom@18.2.18)(@types/react@18.2.14)(lightningcss@1.29.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)': dependencies: '@types/react': 18.2.14 '@types/react-dom': 18.2.18 - '@vitejs/plugin-react': 4.3.1(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + '@vitejs/plugin-react': 4.3.4(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ultrahtml: 1.5.3 + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) transitivePeerDependencies: + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss - supports-color - - vite + - terser + - tsx + - yaml '@astrojs/sitemap@3.1.1': dependencies: @@ -14299,7 +14422,7 @@ snapshots: '@astrojs/telemetry@3.1.0': dependencies: ci-info: 4.1.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) dlv: 1.1.3 dset: 3.1.4 is-docker: 3.0.0 @@ -14308,41 +14431,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.1.0 - '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.25.9 js-tokens: 4.0.0 - picocolors: 1.1.0 - - '@babel/compat-data@7.25.4': {} + picocolors: 1.1.1 '@babel/compat-data@7.26.3': {} - '@babel/core@7.25.2': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.6 - '@babel/helper-compilation-targets': 7.25.2 - '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) - '@babel/helpers': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 - convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@8.1.1) - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 7.6.0 - transitivePeerDependencies: - - supports-color - '@babel/core@7.26.0': dependencies: '@ampproject/remapping': 2.3.0 @@ -14356,20 +14452,13 @@ snapshots: '@babel/traverse': 7.26.4 '@babel/types': 7.26.3 convert-source-map: 2.0.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 7.6.0 transitivePeerDependencies: - supports-color - '@babel/generator@7.25.6': - dependencies: - '@babel/types': 7.25.8 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 - '@babel/generator@7.26.3': dependencies: '@babel/parser': 7.26.3 @@ -14378,22 +14467,10 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 - '@babel/helper-annotate-as-pure@7.24.7': - dependencies: - '@babel/types': 7.26.3 - '@babel/helper-annotate-as-pure@7.25.9': dependencies: '@babel/types': 7.26.3 - '@babel/helper-compilation-targets@7.25.2': - dependencies: - '@babel/compat-data': 7.25.4 - '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.3 - lru-cache: 5.1.1 - semver: 7.6.0 - '@babel/helper-compilation-targets@7.25.9': dependencies: '@babel/compat-data': 7.26.3 @@ -14402,15 +14479,15 @@ snapshots: lru-cache: 5.1.1 semver: 7.6.0 - '@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.25.2)': + '@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.25.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.26.0) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 7.6.0 @@ -14419,20 +14496,13 @@ snapshots: '@babel/helper-function-name@7.23.0': dependencies: - '@babel/template': 7.25.0 + '@babel/template': 7.25.9 '@babel/types': 7.26.3 '@babel/helper-member-expression-to-functions@7.23.0': dependencies: '@babel/types': 7.26.3 - '@babel/helper-module-imports@7.24.7': - dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.26.3 - transitivePeerDependencies: - - supports-color - '@babel/helper-module-imports@7.25.9': dependencies: '@babel/traverse': 7.26.4 @@ -14440,16 +14510,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-simple-access': 7.24.7 - '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.6 - transitivePeerDependencies: - - supports-color - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 @@ -14463,20 +14523,18 @@ snapshots: dependencies: '@babel/types': 7.26.3 - '@babel/helper-plugin-utils@7.24.8': {} - '@babel/helper-plugin-utils@7.25.9': {} - '@babel/helper-replace-supers@7.22.20(@babel/core@7.25.2)': + '@babel/helper-replace-supers@7.22.20(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 + '@babel/core': 7.26.0 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-simple-access@7.24.7': dependencies: - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.26.4 '@babel/types': 7.26.3 transitivePeerDependencies: - supports-color @@ -14489,89 +14547,54 @@ snapshots: dependencies: '@babel/types': 7.26.3 - '@babel/helper-string-parser@7.24.8': {} - - '@babel/helper-string-parser@7.25.7': {} - '@babel/helper-string-parser@7.25.9': {} - '@babel/helper-validator-identifier@7.24.7': {} - - '@babel/helper-validator-identifier@7.25.7': {} - '@babel/helper-validator-identifier@7.25.9': {} - '@babel/helper-validator-option@7.24.8': {} - '@babel/helper-validator-option@7.25.9': {} - '@babel/helpers@7.25.6': - dependencies: - '@babel/template': 7.25.0 - '@babel/types': 7.26.3 - '@babel/helpers@7.26.0': dependencies: '@babel/template': 7.25.9 '@babel/types': 7.26.3 - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.25.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 - - '@babel/parser@7.25.6': - dependencies: - '@babel/types': 7.25.8 - - '@babel/parser@7.25.8': - dependencies: - '@babel/types': 7.26.3 - '@babel/parser@7.26.3': dependencies: '@babel/types': 7.26.3 - '@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.25.2)': - dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 - - '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': dependencies: '@babel/core': 7.26.0 '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.25.2)': + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.25.2)': + '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 '@babel/helper-simple-access': 7.24.7 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)': + '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.25.2)': + '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)': dependencies: @@ -14584,22 +14607,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.25.2)': + '@babel/plugin-transform-typescript@7.23.6(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.25.2) - '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.25.2) + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.26.0) - '@babel/preset-typescript@7.23.3(@babel/core@7.25.2)': + '@babel/preset-typescript@7.23.3(@babel/core@7.26.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) - '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.25.2) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-option': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.26.0) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.26.0) transitivePeerDependencies: - supports-color @@ -14607,30 +14630,12 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.25.0': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/parser': 7.25.6 - '@babel/types': 7.25.8 - '@babel/template@7.25.9': dependencies: '@babel/code-frame': 7.26.2 '@babel/parser': 7.26.3 '@babel/types': 7.26.3 - '@babel/traverse@7.25.6': - dependencies: - '@babel/code-frame': 7.24.7 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/types': 7.25.8 - debug: 4.3.7(supports-color@8.1.1) - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/traverse@7.26.4': dependencies: '@babel/code-frame': 7.26.2 @@ -14638,23 +14643,11 @@ snapshots: '@babel/parser': 7.26.3 '@babel/template': 7.25.9 '@babel/types': 7.26.3 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.25.6': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - - '@babel/types@7.25.8': - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - '@babel/types@7.26.3': dependencies: '@babel/helper-string-parser': 7.25.9 @@ -14664,7 +14657,7 @@ snapshots: '@bufbuild/protobuf@1.2.1': {} - '@bundled-es-modules/cookie@2.0.0': + '@bundled-es-modules/cookie@2.0.1': dependencies: cookie: 0.7.2 @@ -14912,7 +14905,7 @@ snapshots: dependencies: postcss: 8.4.37 - '@ctrl/tinycolor@3.6.1': {} + '@ctrl/tinycolor@4.1.0': {} '@cypress/request@3.0.0': dependencies: @@ -14979,7 +14972,10 @@ snapshots: '@esbuild/aix-ppc64@0.19.12': optional: true - '@esbuild/aix-ppc64@0.21.5': + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/aix-ppc64@0.24.2': optional: true '@esbuild/android-arm64@0.17.6': @@ -14991,6 +14987,9 @@ snapshots: '@esbuild/android-arm64@0.21.5': optional: true + '@esbuild/android-arm64@0.24.2': + optional: true + '@esbuild/android-arm@0.17.6': optional: true @@ -15000,6 +14999,9 @@ snapshots: '@esbuild/android-arm@0.21.5': optional: true + '@esbuild/android-arm@0.24.2': + optional: true + '@esbuild/android-x64@0.17.6': optional: true @@ -15009,6 +15011,9 @@ snapshots: '@esbuild/android-x64@0.21.5': optional: true + '@esbuild/android-x64@0.24.2': + optional: true + '@esbuild/darwin-arm64@0.17.6': optional: true @@ -15018,6 +15023,9 @@ snapshots: '@esbuild/darwin-arm64@0.21.5': optional: true + '@esbuild/darwin-arm64@0.24.2': + optional: true + '@esbuild/darwin-x64@0.17.6': optional: true @@ -15027,6 +15035,9 @@ snapshots: '@esbuild/darwin-x64@0.21.5': optional: true + '@esbuild/darwin-x64@0.24.2': + optional: true + '@esbuild/freebsd-arm64@0.17.6': optional: true @@ -15036,6 +15047,9 @@ snapshots: '@esbuild/freebsd-arm64@0.21.5': optional: true + '@esbuild/freebsd-arm64@0.24.2': + optional: true + '@esbuild/freebsd-x64@0.17.6': optional: true @@ -15045,6 +15059,9 @@ snapshots: '@esbuild/freebsd-x64@0.21.5': optional: true + '@esbuild/freebsd-x64@0.24.2': + optional: true + '@esbuild/linux-arm64@0.17.6': optional: true @@ -15054,6 +15071,9 @@ snapshots: '@esbuild/linux-arm64@0.21.5': optional: true + '@esbuild/linux-arm64@0.24.2': + optional: true + '@esbuild/linux-arm@0.17.6': optional: true @@ -15063,6 +15083,9 @@ snapshots: '@esbuild/linux-arm@0.21.5': optional: true + '@esbuild/linux-arm@0.24.2': + optional: true + '@esbuild/linux-ia32@0.17.6': optional: true @@ -15072,6 +15095,9 @@ snapshots: '@esbuild/linux-ia32@0.21.5': optional: true + '@esbuild/linux-ia32@0.24.2': + optional: true + '@esbuild/linux-loong64@0.17.6': optional: true @@ -15081,6 +15107,9 @@ snapshots: '@esbuild/linux-loong64@0.21.5': optional: true + '@esbuild/linux-loong64@0.24.2': + optional: true + '@esbuild/linux-mips64el@0.17.6': optional: true @@ -15090,6 +15119,9 @@ snapshots: '@esbuild/linux-mips64el@0.21.5': optional: true + '@esbuild/linux-mips64el@0.24.2': + optional: true + '@esbuild/linux-ppc64@0.17.6': optional: true @@ -15099,6 +15131,9 @@ snapshots: '@esbuild/linux-ppc64@0.21.5': optional: true + '@esbuild/linux-ppc64@0.24.2': + optional: true + '@esbuild/linux-riscv64@0.17.6': optional: true @@ -15108,6 +15143,9 @@ snapshots: '@esbuild/linux-riscv64@0.21.5': optional: true + '@esbuild/linux-riscv64@0.24.2': + optional: true + '@esbuild/linux-s390x@0.17.6': optional: true @@ -15117,6 +15155,9 @@ snapshots: '@esbuild/linux-s390x@0.21.5': optional: true + '@esbuild/linux-s390x@0.24.2': + optional: true + '@esbuild/linux-x64@0.17.6': optional: true @@ -15126,6 +15167,12 @@ snapshots: '@esbuild/linux-x64@0.21.5': optional: true + '@esbuild/linux-x64@0.24.2': + optional: true + + '@esbuild/netbsd-arm64@0.24.2': + optional: true + '@esbuild/netbsd-x64@0.17.6': optional: true @@ -15135,6 +15182,12 @@ snapshots: '@esbuild/netbsd-x64@0.21.5': optional: true + '@esbuild/netbsd-x64@0.24.2': + optional: true + + '@esbuild/openbsd-arm64@0.24.2': + optional: true + '@esbuild/openbsd-x64@0.17.6': optional: true @@ -15144,6 +15197,9 @@ snapshots: '@esbuild/openbsd-x64@0.21.5': optional: true + '@esbuild/openbsd-x64@0.24.2': + optional: true + '@esbuild/sunos-x64@0.17.6': optional: true @@ -15153,6 +15209,9 @@ snapshots: '@esbuild/sunos-x64@0.21.5': optional: true + '@esbuild/sunos-x64@0.24.2': + optional: true + '@esbuild/win32-arm64@0.17.6': optional: true @@ -15162,6 +15221,9 @@ snapshots: '@esbuild/win32-arm64@0.21.5': optional: true + '@esbuild/win32-arm64@0.24.2': + optional: true + '@esbuild/win32-ia32@0.17.6': optional: true @@ -15171,6 +15233,9 @@ snapshots: '@esbuild/win32-ia32@0.21.5': optional: true + '@esbuild/win32-ia32@0.24.2': + optional: true + '@esbuild/win32-x64@0.17.6': optional: true @@ -15180,6 +15245,9 @@ snapshots: '@esbuild/win32-x64@0.21.5': optional: true + '@esbuild/win32-x64@0.24.2': + optional: true + '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)': dependencies: eslint: 8.56.0 @@ -15190,7 +15258,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) espree: 9.6.1 globals: 13.20.0 ignore: 5.2.4 @@ -15203,29 +15271,30 @@ snapshots: '@eslint/js@8.56.0': {} - '@expressive-code/core@0.33.5': + '@expressive-code/core@0.40.1': dependencies: - '@ctrl/tinycolor': 3.6.1 - hast-util-to-html: 8.0.4 - hastscript: 7.2.0 + '@ctrl/tinycolor': 4.1.0 + hast-util-select: 6.0.3 + hast-util-to-html: 9.0.4 + hast-util-to-text: 4.0.2 + hastscript: 9.0.0 postcss: 8.4.37 postcss-nested: 6.0.1(postcss@8.4.37) + unist-util-visit: 5.0.0 + unist-util-visit-parents: 6.0.1 - '@expressive-code/plugin-frames@0.33.5': + '@expressive-code/plugin-frames@0.40.1': dependencies: - '@expressive-code/core': 0.33.5 - hastscript: 7.2.0 + '@expressive-code/core': 0.40.1 - '@expressive-code/plugin-shiki@0.33.5': + '@expressive-code/plugin-shiki@0.40.1': dependencies: - '@expressive-code/core': 0.33.5 - shiki: 1.24.2 + '@expressive-code/core': 0.40.1 + shiki: 1.29.2 - '@expressive-code/plugin-text-markers@0.33.5': + '@expressive-code/plugin-text-markers@0.40.1': dependencies: - '@expressive-code/core': 0.33.5 - hastscript: 7.2.0 - unist-util-visit-parents: 5.1.3 + '@expressive-code/core': 0.40.1 '@floating-ui/core@1.6.0': dependencies: @@ -15259,7 +15328,7 @@ snapshots: '@humanwhocodes/config-array@0.11.14': dependencies: '@humanwhocodes/object-schema': 2.0.2 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -15343,35 +15412,31 @@ snapshots: '@img/sharp-win32-x64@0.33.5': optional: true - '@inquirer/confirm@3.2.0': + '@inquirer/confirm@5.1.5(@types/node@22.5.5)': dependencies: - '@inquirer/core': 9.2.1 - '@inquirer/type': 1.5.5 + '@inquirer/core': 10.1.6(@types/node@22.5.5) + '@inquirer/type': 3.0.4(@types/node@22.5.5) + optionalDependencies: + '@types/node': 22.5.5 - '@inquirer/core@9.2.1': + '@inquirer/core@10.1.6(@types/node@22.5.5)': dependencies: - '@inquirer/figures': 1.0.6 - '@inquirer/type': 2.0.0 - '@types/mute-stream': 0.0.4 - '@types/node': 22.5.5 - '@types/wrap-ansi': 3.0.0 + '@inquirer/figures': 1.0.10 + '@inquirer/type': 3.0.4(@types/node@22.5.5) ansi-escapes: 4.3.2 cli-width: 4.1.0 - mute-stream: 1.0.0 + mute-stream: 2.0.0 signal-exit: 4.1.0 - strip-ansi: 6.0.1 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 22.5.5 - '@inquirer/figures@1.0.6': {} - - '@inquirer/type@1.5.5': - dependencies: - mute-stream: 1.0.0 + '@inquirer/figures@1.0.10': {} - '@inquirer/type@2.0.0': - dependencies: - mute-stream: 1.0.0 + '@inquirer/type@3.0.4(@types/node@22.5.5)': + optionalDependencies: + '@types/node': 22.5.5 '@isaacs/cliui@8.0.2': dependencies: @@ -15384,9 +15449,9 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@itwin/itwinui-icons-elements@0.20.0': {} + '@itwin/itwinui-icons-elements@0.21.0': {} - '@itwin/itwinui-icons-react@2.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@itwin/itwinui-icons-react@2.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -15426,53 +15491,55 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@ladle/react@4.1.2(@swc/helpers@0.5.15)(@types/node@22.5.5)(@types/react@18.2.14)(lightningcss@1.25.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)': + '@ladle/react@5.0.1(@swc/helpers@0.5.15)(@types/node@22.5.5)(@types/react@18.2.14)(acorn@8.14.0)(lightningcss@1.29.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(yaml@2.5.0)': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/template': 7.25.0 - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/code-frame': 7.26.2 + '@babel/core': 7.26.0 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 '@ladle/react-context': 1.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mdx-js/mdx': 3.0.1 - '@mdx-js/react': 3.0.1(@types/react@18.2.14)(react@18.2.0) - '@vitejs/plugin-react': 4.3.1(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) - '@vitejs/plugin-react-swc': 3.7.0(@swc/helpers@0.5.15)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) - axe-core: 4.10.0 - boxen: 7.1.1 - chokidar: 3.6.0 + '@mdx-js/mdx': 3.1.0(acorn@8.14.0) + '@mdx-js/react': 3.1.0(@types/react@18.2.14)(react@18.2.0) + '@vitejs/plugin-react': 4.3.4(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) + '@vitejs/plugin-react-swc': 3.7.2(@swc/helpers@0.5.15)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) + axe-core: 4.10.2 + boxen: 8.0.1 + chokidar: 4.0.3 classnames: 2.5.1 commander: 12.1.0 cross-spawn: 7.0.6 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) get-port: 7.1.0 globby: 14.0.2 history: 5.3.0 koa: 2.15.3 koa-connect: 2.1.0 lodash.merge: 4.6.2 - msw: 2.4.9(typescript@5.5.2) + msw: 2.7.0(@types/node@22.5.5)(typescript@5.5.2) open: 10.1.0 - prism-react-renderer: 2.3.1(react@18.2.0) + prism-react-renderer: 2.4.1(react@18.2.0) prop-types: 15.8.1 - query-string: 9.1.0 + query-string: 9.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-hotkeys-hook: 4.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-hotkeys-hook: 4.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-inspector: 6.0.2(react@18.2.0) rehype-class-names: 2.0.0 rehype-raw: 7.0.0 remark-gfm: 4.0.0 source-map: 0.7.4 vfile: 6.0.3 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) - vite-tsconfig-paths: 4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) + vite-tsconfig-paths: 5.1.4(typescript@5.5.2)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)) transitivePeerDependencies: - '@swc/helpers' - '@types/node' - '@types/react' + - acorn + - jiti - less - lightningcss - sass @@ -15481,7 +15548,9 @@ snapshots: - sugarss - supports-color - terser + - tsx - typescript + - yaml '@mdx-js/mdx@2.3.0': dependencies: @@ -15505,25 +15574,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/mdx@3.0.1': + '@mdx-js/mdx@3.1.0(acorn@8.14.0)': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdx': 2.0.11 collapse-white-space: 2.1.0 devlop: 1.1.0 - estree-util-build-jsx: 3.0.1 estree-util-is-identifier-name: 3.0.0 - estree-util-to-js: 2.0.0 + estree-util-scope: 1.0.0 estree-walker: 3.0.3 - hast-util-to-estree: 3.1.0 hast-util-to-jsx-runtime: 2.3.0 markdown-extensions: 2.0.0 - periscopic: 3.1.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.0(acorn@8.14.0) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 remark-mdx: 3.0.1 remark-parse: 11.0.0 - remark-rehype: 11.1.0 + remark-rehype: 11.1.1 source-map: 0.7.4 unified: 11.0.5 unist-util-position-from-estree: 2.0.0 @@ -15531,9 +15601,10 @@ snapshots: unist-util-visit: 5.0.0 vfile: 6.0.3 transitivePeerDependencies: + - acorn - supports-color - '@mdx-js/react@3.0.1(@types/react@18.2.14)(react@18.2.0)': + '@mdx-js/react@3.1.0(@types/react@18.2.14)(react@18.2.0)': dependencies: '@types/mdx': 2.0.11 '@types/react': 18.2.14 @@ -15544,7 +15615,7 @@ snapshots: jpeg-js: 0.4.4 pngjs: 6.0.0 - '@mswjs/interceptors@0.35.8': + '@mswjs/interceptors@0.37.6': dependencies: '@open-draft/deferred-promise': 2.2.0 '@open-draft/logger': 0.3.0 @@ -15553,33 +15624,30 @@ snapshots: outvariant: 1.4.3 strict-event-emitter: 0.5.1 - '@next/env@14.2.21': {} - - '@next/swc-darwin-arm64@14.2.21': - optional: true + '@next/env@15.1.6': {} - '@next/swc-darwin-x64@14.2.21': + '@next/swc-darwin-arm64@15.1.6': optional: true - '@next/swc-linux-arm64-gnu@14.2.21': + '@next/swc-darwin-x64@15.1.6': optional: true - '@next/swc-linux-arm64-musl@14.2.21': + '@next/swc-linux-arm64-gnu@15.1.6': optional: true - '@next/swc-linux-x64-gnu@14.2.21': + '@next/swc-linux-arm64-musl@15.1.6': optional: true - '@next/swc-linux-x64-musl@14.2.21': + '@next/swc-linux-x64-gnu@15.1.6': optional: true - '@next/swc-win32-arm64-msvc@14.2.21': + '@next/swc-linux-x64-musl@15.1.6': optional: true - '@next/swc-win32-ia32-msvc@14.2.21': + '@next/swc-win32-arm64-msvc@15.1.6': optional: true - '@next/swc-win32-x64-msvc@14.2.21': + '@next/swc-win32-x64-msvc@15.1.6': optional: true '@nodelib/fs.scandir@2.1.5': @@ -15801,38 +15869,115 @@ snapshots: '@popperjs/core@2.11.8': {} - '@puppeteer/browsers@0.5.0(typescript@5.5.2)': + '@puppeteer/browsers@2.3.0': dependencies: - debug: 4.3.4 + debug: 4.4.0(supports-color@8.1.1) extract-zip: 2.0.1(supports-color@8.1.1) - https-proxy-agent: 5.0.1 progress: 2.0.3 - proxy-from-env: 1.1.0 - tar-fs: 2.1.1 + proxy-agent: 6.5.0 + semver: 7.6.0 + tar-fs: 3.0.8 unbzip2-stream: 1.4.3 - yargs: 17.7.1 + yargs: 17.7.2 + transitivePeerDependencies: + - bare-buffer + - supports-color + + '@remix-run/dev@2.15.3(@remix-run/react@2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2))(@remix-run/serve@2.15.3(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0))': + dependencies: + '@babel/core': 7.26.0 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.26.0) + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/preset-typescript': 7.23.3(@babel/core@7.26.0) + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + '@mdx-js/mdx': 2.3.0 + '@npmcli/package-json': 4.0.1 + '@remix-run/node': 2.15.3(typescript@5.5.2) + '@remix-run/react': 2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) + '@remix-run/router': 1.22.0 + '@remix-run/server-runtime': 2.15.3(typescript@5.5.2) + '@types/mdx': 2.0.11 + '@vanilla-extract/integration': 6.5.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + arg: 5.0.2 + cacache: 17.1.4 + chalk: 4.1.2 + chokidar: 3.6.0 + cross-spawn: 7.0.6 + dotenv: 16.4.5 + es-module-lexer: 1.5.4 + esbuild: 0.17.6 + esbuild-plugins-node-modules-polyfill: 1.6.3(esbuild@0.17.6) + execa: 5.1.1 + exit-hook: 2.2.1 + express: 4.21.2 + fs-extra: 10.1.0 + get-port: 5.1.1 + gunzip-maybe: 1.4.2 + jsesc: 3.0.2 + json5: 2.2.3 + lodash: 4.17.21 + lodash.debounce: 4.0.8 + minimatch: 9.0.3 + ora: 5.4.1 + picocolors: 1.1.1 + picomatch: 2.3.1 + pidtree: 0.6.0 + postcss: 8.4.37 + postcss-discard-duplicates: 5.1.0(postcss@8.4.37) + postcss-load-config: 4.0.2(postcss@8.4.37) + postcss-modules: 6.0.0(postcss@8.4.37) + prettier: 3.1.1 + pretty-ms: 7.0.1 + react-refresh: 0.14.2 + remark-frontmatter: 4.0.1 + remark-mdx-frontmatter: 1.1.1 + semver: 7.6.0 + set-cookie-parser: 2.6.0 + tar-fs: 2.1.1 + tsconfig-paths: 4.2.0 + valibot: 0.41.0(typescript@5.5.2) + vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + ws: 7.5.10 optionalDependencies: + '@remix-run/serve': 2.15.3(typescript@5.5.2) typescript: 5.5.2 + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) transitivePeerDependencies: + - '@types/node' + - bluebird + - bufferutil + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss - supports-color + - terser + - ts-node + - utf-8-validate - '@remix-run/dev@2.8.1(@remix-run/serve@2.8.1(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@remix-run/dev@2.15.3(@remix-run/react@2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2))(@remix-run/serve@2.15.3(typescript@5.5.2))(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0))': dependencies: - '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 - '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.25.2) - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/preset-typescript': 7.23.3(@babel/core@7.25.2) - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/core': 7.26.0 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.26.0) + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/preset-typescript': 7.23.3(@babel/core@7.26.0) + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 '@mdx-js/mdx': 2.3.0 '@npmcli/package-json': 4.0.1 - '@remix-run/node': 2.8.1(typescript@5.5.2) - '@remix-run/router': 1.15.3-pre.0 - '@remix-run/server-runtime': 2.8.1(typescript@5.5.2) + '@remix-run/node': 2.15.3(typescript@5.5.2) + '@remix-run/react': 2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2) + '@remix-run/router': 1.22.0 + '@remix-run/server-runtime': 2.15.3(typescript@5.5.2) '@types/mdx': 2.0.11 - '@vanilla-extract/integration': 6.5.0(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + '@vanilla-extract/integration': 6.5.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) arg: 5.0.2 cacache: 17.1.4 chalk: 4.1.2 @@ -15854,7 +15999,7 @@ snapshots: lodash.debounce: 4.0.8 minimatch: 9.0.3 ora: 5.4.1 - picocolors: 1.1.0 + picocolors: 1.1.1 picomatch: 2.3.1 pidtree: 0.6.0 postcss: 8.4.37 @@ -15870,11 +16015,13 @@ snapshots: set-cookie-parser: 2.6.0 tar-fs: 2.1.1 tsconfig-paths: 4.2.0 + valibot: 0.41.0(typescript@5.5.2) + vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) ws: 7.5.10 optionalDependencies: - '@remix-run/serve': 2.8.1(typescript@5.5.2) + '@remix-run/serve': 2.15.3(typescript@5.5.2) typescript: 5.5.2 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) transitivePeerDependencies: - '@types/node' - bluebird @@ -15890,45 +16037,43 @@ snapshots: - ts-node - utf-8-validate - '@remix-run/express@2.8.1(express@4.21.2)(typescript@5.5.2)': + '@remix-run/express@2.15.3(express@4.21.2)(typescript@5.5.2)': dependencies: - '@remix-run/node': 2.8.1(typescript@5.5.2) + '@remix-run/node': 2.15.3(typescript@5.5.2) express: 4.21.2 optionalDependencies: typescript: 5.5.2 - '@remix-run/node@2.8.1(typescript@5.5.2)': + '@remix-run/node@2.15.3(typescript@5.5.2)': dependencies: - '@remix-run/server-runtime': 2.8.1(typescript@5.5.2) + '@remix-run/server-runtime': 2.15.3(typescript@5.5.2) '@remix-run/web-fetch': 4.4.2 - '@remix-run/web-file': 3.1.0 - '@remix-run/web-stream': 1.1.0 '@web3-storage/multipart-parser': 1.0.0 cookie-signature: 1.2.1 source-map-support: 0.5.21 stream-slice: 0.1.2 + undici: 6.21.1 optionalDependencies: typescript: 5.5.2 - '@remix-run/react@2.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)': + '@remix-run/react@2.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.5.2)': dependencies: - '@remix-run/router': 1.15.3 - '@remix-run/server-runtime': 2.8.1(typescript@5.5.2) + '@remix-run/router': 1.22.0 + '@remix-run/server-runtime': 2.15.3(typescript@5.5.2) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.22.3(react@18.2.0) - react-router-dom: 6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-router: 6.29.0(react@18.2.0) + react-router-dom: 6.29.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + turbo-stream: 2.4.0 optionalDependencies: typescript: 5.5.2 - '@remix-run/router@1.15.3': {} - - '@remix-run/router@1.15.3-pre.0': {} + '@remix-run/router@1.22.0': {} - '@remix-run/serve@2.8.1(typescript@5.5.2)': + '@remix-run/serve@2.15.3(typescript@5.5.2)': dependencies: - '@remix-run/express': 2.8.1(express@4.21.2)(typescript@5.5.2) - '@remix-run/node': 2.8.1(typescript@5.5.2) + '@remix-run/express': 2.15.3(express@4.21.2)(typescript@5.5.2) + '@remix-run/node': 2.15.3(typescript@5.5.2) chokidar: 3.6.0 compression: 1.7.4 express: 4.21.2 @@ -15939,14 +16084,15 @@ snapshots: - supports-color - typescript - '@remix-run/server-runtime@2.8.1(typescript@5.5.2)': + '@remix-run/server-runtime@2.15.3(typescript@5.5.2)': dependencies: - '@remix-run/router': 1.15.3 + '@remix-run/router': 1.22.0 '@types/cookie': 0.6.0 '@web3-storage/multipart-parser': 1.0.0 cookie: 0.7.2 set-cookie-parser: 2.6.0 source-map: 0.7.4 + turbo-stream: 2.4.0 optionalDependencies: typescript: 5.5.2 @@ -15978,99 +16124,107 @@ snapshots: dependencies: web-streams-polyfill: 3.3.3 - '@rollup/pluginutils@5.1.4(rollup@4.28.1)': + '@rollup/pluginutils@5.1.4(rollup@4.34.3)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.28.1 + rollup: 4.34.3 - '@rollup/rollup-android-arm-eabi@4.28.1': + '@rollup/rollup-android-arm-eabi@4.34.3': optional: true - '@rollup/rollup-android-arm64@4.28.1': + '@rollup/rollup-android-arm64@4.34.3': optional: true - '@rollup/rollup-darwin-arm64@4.28.1': + '@rollup/rollup-darwin-arm64@4.34.3': optional: true - '@rollup/rollup-darwin-x64@4.28.1': + '@rollup/rollup-darwin-x64@4.34.3': optional: true - '@rollup/rollup-freebsd-arm64@4.28.1': + '@rollup/rollup-freebsd-arm64@4.34.3': optional: true - '@rollup/rollup-freebsd-x64@4.28.1': + '@rollup/rollup-freebsd-x64@4.34.3': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.28.1': + '@rollup/rollup-linux-arm-gnueabihf@4.34.3': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.28.1': + '@rollup/rollup-linux-arm-musleabihf@4.34.3': optional: true - '@rollup/rollup-linux-arm64-gnu@4.28.1': + '@rollup/rollup-linux-arm64-gnu@4.34.3': optional: true - '@rollup/rollup-linux-arm64-musl@4.28.1': + '@rollup/rollup-linux-arm64-musl@4.34.3': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.28.1': + '@rollup/rollup-linux-loongarch64-gnu@4.34.3': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.28.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.34.3': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.28.1': + '@rollup/rollup-linux-riscv64-gnu@4.34.3': optional: true - '@rollup/rollup-linux-s390x-gnu@4.28.1': + '@rollup/rollup-linux-s390x-gnu@4.34.3': optional: true - '@rollup/rollup-linux-x64-gnu@4.28.1': + '@rollup/rollup-linux-x64-gnu@4.34.3': optional: true - '@rollup/rollup-linux-x64-musl@4.28.1': + '@rollup/rollup-linux-x64-musl@4.34.3': optional: true - '@rollup/rollup-win32-arm64-msvc@4.28.1': + '@rollup/rollup-win32-arm64-msvc@4.34.3': optional: true - '@rollup/rollup-win32-ia32-msvc@4.28.1': + '@rollup/rollup-win32-ia32-msvc@4.34.3': optional: true - '@rollup/rollup-win32-x64-msvc@4.28.1': + '@rollup/rollup-win32-x64-msvc@4.34.3': optional: true '@sec-ant/readable-stream@0.4.1': {} - '@shikijs/core@1.24.2': + '@shikijs/core@1.29.2': dependencies: - '@shikijs/engine-javascript': 1.24.2 - '@shikijs/engine-oniguruma': 1.24.2 - '@shikijs/types': 1.24.2 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/engine-javascript': 1.29.2 + '@shikijs/engine-oniguruma': 1.29.2 + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.4 + + '@shikijs/engine-javascript@1.29.2': + dependencies: + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 + oniguruma-to-es: 2.3.0 + + '@shikijs/engine-oniguruma@1.29.2': + dependencies: + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 - '@shikijs/engine-javascript@1.24.2': + '@shikijs/langs@1.29.2': dependencies: - '@shikijs/types': 1.24.2 - '@shikijs/vscode-textmate': 9.3.0 - oniguruma-to-es: 0.7.0 + '@shikijs/types': 1.29.2 - '@shikijs/engine-oniguruma@1.24.2': + '@shikijs/themes@1.29.2': dependencies: - '@shikijs/types': 1.24.2 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 1.29.2 - '@shikijs/types@1.24.2': + '@shikijs/types@1.29.2': dependencies: - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 - '@shikijs/vscode-textmate@9.3.0': {} + '@shikijs/vscode-textmate@10.0.1': {} '@sinclair/typebox@0.27.8': {} @@ -16078,9 +16232,9 @@ snapshots: '@sindresorhus/merge-streams@2.3.0': {} - '@swc/cli@0.5.1(@swc/core@1.5.28(@swc/helpers@0.5.11))(chokidar@3.6.0)': + '@swc/cli@0.5.1(@swc/core@1.10.14(@swc/helpers@0.5.15))(chokidar@3.6.0)': dependencies: - '@swc/core': 1.5.28(@swc/helpers@0.5.11) + '@swc/core': 1.10.14(@swc/helpers@0.5.15) '@swc/counter': 0.1.3 '@xhmikosr/bin-wrapper': 13.0.5 commander: 8.3.0 @@ -16093,87 +16247,60 @@ snapshots: optionalDependencies: chokidar: 3.6.0 - '@swc/core-darwin-arm64@1.5.28': + '@swc/core-darwin-arm64@1.10.14': optional: true - '@swc/core-darwin-x64@1.5.28': + '@swc/core-darwin-x64@1.10.14': optional: true - '@swc/core-linux-arm-gnueabihf@1.5.28': + '@swc/core-linux-arm-gnueabihf@1.10.14': optional: true - '@swc/core-linux-arm64-gnu@1.5.28': + '@swc/core-linux-arm64-gnu@1.10.14': optional: true - '@swc/core-linux-arm64-musl@1.5.28': + '@swc/core-linux-arm64-musl@1.10.14': optional: true - '@swc/core-linux-x64-gnu@1.5.28': + '@swc/core-linux-x64-gnu@1.10.14': optional: true - '@swc/core-linux-x64-musl@1.5.28': + '@swc/core-linux-x64-musl@1.10.14': optional: true - '@swc/core-win32-arm64-msvc@1.5.28': + '@swc/core-win32-arm64-msvc@1.10.14': optional: true - '@swc/core-win32-ia32-msvc@1.5.28': + '@swc/core-win32-ia32-msvc@1.10.14': optional: true - '@swc/core-win32-x64-msvc@1.5.28': + '@swc/core-win32-x64-msvc@1.10.14': optional: true - '@swc/core@1.5.28(@swc/helpers@0.5.11)': + '@swc/core@1.10.14(@swc/helpers@0.5.15)': dependencies: '@swc/counter': 0.1.3 - '@swc/types': 0.1.8 + '@swc/types': 0.1.17 optionalDependencies: - '@swc/core-darwin-arm64': 1.5.28 - '@swc/core-darwin-x64': 1.5.28 - '@swc/core-linux-arm-gnueabihf': 1.5.28 - '@swc/core-linux-arm64-gnu': 1.5.28 - '@swc/core-linux-arm64-musl': 1.5.28 - '@swc/core-linux-x64-gnu': 1.5.28 - '@swc/core-linux-x64-musl': 1.5.28 - '@swc/core-win32-arm64-msvc': 1.5.28 - '@swc/core-win32-ia32-msvc': 1.5.28 - '@swc/core-win32-x64-msvc': 1.5.28 - '@swc/helpers': 0.5.11 - - '@swc/core@1.5.28(@swc/helpers@0.5.15)': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.8 - optionalDependencies: - '@swc/core-darwin-arm64': 1.5.28 - '@swc/core-darwin-x64': 1.5.28 - '@swc/core-linux-arm-gnueabihf': 1.5.28 - '@swc/core-linux-arm64-gnu': 1.5.28 - '@swc/core-linux-arm64-musl': 1.5.28 - '@swc/core-linux-x64-gnu': 1.5.28 - '@swc/core-linux-x64-musl': 1.5.28 - '@swc/core-win32-arm64-msvc': 1.5.28 - '@swc/core-win32-ia32-msvc': 1.5.28 - '@swc/core-win32-x64-msvc': 1.5.28 + '@swc/core-darwin-arm64': 1.10.14 + '@swc/core-darwin-x64': 1.10.14 + '@swc/core-linux-arm-gnueabihf': 1.10.14 + '@swc/core-linux-arm64-gnu': 1.10.14 + '@swc/core-linux-arm64-musl': 1.10.14 + '@swc/core-linux-x64-gnu': 1.10.14 + '@swc/core-linux-x64-musl': 1.10.14 + '@swc/core-win32-arm64-msvc': 1.10.14 + '@swc/core-win32-ia32-msvc': 1.10.14 + '@swc/core-win32-x64-msvc': 1.10.14 '@swc/helpers': 0.5.15 '@swc/counter@0.1.3': {} - '@swc/helpers@0.5.11': - dependencies: - tslib: 2.6.1 - '@swc/helpers@0.5.15': dependencies: tslib: 2.8.1 - optional: true - - '@swc/helpers@0.5.5': - dependencies: - '@swc/counter': 0.1.3 - tslib: 2.8.1 - '@swc/types@0.1.8': + '@swc/types@0.1.17': dependencies: '@swc/counter': 0.1.3 @@ -16191,7 +16318,7 @@ snapshots: '@testing-library/dom@8.13.0': dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.26.2 '@babel/runtime': 7.23.9 '@types/aria-query': 4.2.2 aria-query: 5.3.2 @@ -16200,18 +16327,18 @@ snapshots: lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.3.0(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@testing-library/jest-dom@6.3.0(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0))': dependencies: '@adobe/css-tools': 4.3.3 '@babel/runtime': 7.23.9 - aria-query: 5.3.0 + aria-query: 5.3.2 chalk: 3.0.0 css.escape: 1.5.1 dom-accessibility-api: 0.6.3 lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - vitest: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vitest: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) '@testing-library/react@13.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -16233,6 +16360,8 @@ snapshots: '@tokenizer/token@0.3.0': {} + '@tootallnate/quickjs-emscripten@0.23.0': {} + '@types/acorn@4.0.6': dependencies: '@types/estree': 1.0.6 @@ -16243,7 +16372,7 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.8 + '@babel/parser': 7.26.3 '@babel/types': 7.26.3 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 @@ -16274,8 +16403,6 @@ snapshots: dependencies: '@types/estree': 1.0.6 - '@types/estree@1.0.5': {} - '@types/estree@1.0.6': {} '@types/hast@2.3.10': @@ -16310,10 +16437,6 @@ snapshots: '@types/ms@0.7.31': {} - '@types/mute-stream@0.0.4': - dependencies: - '@types/node': 22.5.5 - '@types/nlcst@1.0.4': dependencies: '@types/unist': 2.0.10 @@ -16334,8 +16457,6 @@ snapshots: '@types/normalize-package-data@2.4.1': {} - '@types/parse5@6.0.3': {} - '@types/prismjs@1.26.2': {} '@types/prop-types@15.7.11': {} @@ -16370,8 +16491,6 @@ snapshots: '@types/unist@3.0.2': {} - '@types/wrap-ansi@3.0.0': {} - '@types/yauzl@2.10.3': dependencies: '@types/node': 22.5.5 @@ -16384,7 +16503,7 @@ snapshots: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.5.2) '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.5.2) - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) eslint: 8.56.0 graphemer: 1.4.0 ignore: 5.2.4 @@ -16401,7 +16520,7 @@ snapshots: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) eslint: 8.56.0 optionalDependencies: typescript: 5.5.2 @@ -16417,7 +16536,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.5.2) - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) eslint: 8.56.0 tsutils: 3.21.0(typescript@5.5.2) optionalDependencies: @@ -16431,7 +16550,7 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.0 @@ -16465,7 +16584,7 @@ snapshots: '@vanilla-extract/babel-plugin-debug-ids@1.0.5': dependencies: - '@babel/core': 7.25.2 + '@babel/core': 7.26.0 transitivePeerDependencies: - supports-color @@ -16483,10 +16602,10 @@ snapshots: modern-ahocorasick: 1.0.1 outdent: 0.8.0 - '@vanilla-extract/integration@6.5.0(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)': + '@vanilla-extract/integration@6.5.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)': dependencies: - '@babel/core': 7.25.2 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.25.2) + '@babel/core': 7.26.0 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.26.0) '@vanilla-extract/babel-plugin-debug-ids': 1.0.5 '@vanilla-extract/css': 1.14.1 esbuild: 0.19.12 @@ -16496,8 +16615,8 @@ snapshots: lodash: 4.17.21 mlly: 1.5.0 outdent: 0.8.0 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) - vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) transitivePeerDependencies: - '@types/node' - less @@ -16511,40 +16630,40 @@ snapshots: '@vanilla-extract/private@1.0.3': {} - '@vitejs/plugin-react-swc@3.7.0(@swc/helpers@0.5.15)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@vitejs/plugin-react-swc@3.7.2(@swc/helpers@0.5.15)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0))': dependencies: - '@swc/core': 1.5.28(@swc/helpers@0.5.15) - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + '@swc/core': 1.10.14(@swc/helpers@0.5.15) + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) transitivePeerDependencies: - '@swc/helpers' - '@vitejs/plugin-react@4.3.1(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@vitejs/plugin-react@4.3.4(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0))': dependencies: - '@babel/core': 7.25.2 - '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.25.2) + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@1.6.1(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0))': + '@vitest/coverage-v8@1.6.1(vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 - debug: 4.3.7(supports-color@8.1.1) + 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 istanbul-reports: 3.1.6 magic-string: 0.30.17 magicast: 0.3.5 - picocolors: 1.1.0 + picocolors: 1.1.1 std-env: 3.7.0 strip-literal: 2.1.1 test-exclude: 6.0.0 - vitest: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vitest: 1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) transitivePeerDependencies: - supports-color @@ -16665,21 +16784,9 @@ snapshots: acorn-walk@8.3.2: {} - acorn@8.12.1: {} - acorn@8.14.0: {} - agent-base@6.0.2: - dependencies: - debug: 4.3.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - agent-base@7.1.0: - dependencies: - debug: 4.3.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color + agent-base@7.1.3: {} aggregate-error@3.1.0: dependencies: @@ -16764,10 +16871,6 @@ snapshots: argparse@2.0.1: {} - aria-query@5.3.0: - dependencies: - dequal: 2.0.3 - aria-query@5.3.2: {} array-buffer-byte-length@1.0.1: @@ -16825,44 +16928,35 @@ snapshots: assertion-error@1.1.0: {} + ast-types@0.13.4: + dependencies: + tslib: 2.8.1 + ast-types@0.14.2: dependencies: - tslib: 2.6.1 + tslib: 2.8.1 astral-regex@2.0.0: {} astring@1.8.4: {} - astro-auto-import@0.4.2(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)): + astro-auto-import@0.4.4(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)): dependencies: '@types/node': 18.19.26 - acorn: 8.12.1 - astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + acorn: 8.14.0 + astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) - astro-expressive-code@0.33.5(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)): + astro-expressive-code@0.40.1(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)): dependencies: - astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) - hast-util-to-html: 8.0.4 - remark-expressive-code: 0.33.5 + astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + rehype-expressive-code: 0.40.1 - astro-relative-links@0.3.7(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2): + astro-relative-links@0.4.2(astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2)): dependencies: - astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) + astro: 4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2) glob: 10.3.10 - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - rollup - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - typescript - astro@4.16.18(@types/node@22.5.5)(lightningcss@1.25.1)(rollup@4.28.1)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2): + astro@4.16.18(@types/node@22.5.5)(lightningcss@1.29.1)(rollup@4.34.3)(sass-embedded@1.64.1)(sass@1.72.0)(typescript@5.5.2): dependencies: '@astrojs/compiler': 2.10.3 '@astrojs/internal-helpers': 0.4.1 @@ -16872,7 +16966,7 @@ snapshots: '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0) '@babel/types': 7.26.3 '@oslojs/encoding': 1.1.0 - '@rollup/pluginutils': 5.1.4(rollup@4.28.1) + '@rollup/pluginutils': 5.1.4(rollup@4.34.3) '@types/babel__core': 7.20.5 '@types/cookie': 0.6.0 acorn: 8.14.0 @@ -16884,7 +16978,7 @@ snapshots: common-ancestor-path: 1.0.1 cookie: 0.7.2 cssesc: 3.0.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) deterministic-object-hash: 2.0.2 devalue: 5.1.1 diff: 5.2.0 @@ -16913,13 +17007,13 @@ snapshots: prompts: 2.4.2 rehype: 13.0.2 semver: 7.6.0 - shiki: 1.24.2 + shiki: 1.29.2 tinyexec: 0.3.1 tsconfck: 3.1.4(typescript@5.5.2) unist-util-visit: 5.0.0 vfile: 6.0.3 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) - vitefu: 1.0.4(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)) + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + vitefu: 1.0.4(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)) which-pm: 3.0.0 xxhash-wasm: 1.1.0 yargs-parser: 21.1.1 @@ -16953,11 +17047,11 @@ snapshots: autoprefixer@10.4.18(postcss@8.4.37): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.3 caniuse-lite: 1.0.30001689 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.37 postcss-value-parser: 4.2.0 @@ -16969,35 +17063,35 @@ snapshots: aws4@1.11.0: {} - axe-core@4.10.0: {} + axe-core@4.10.2: {} axobject-query@4.1.0: {} b4a@1.6.7: {} - backstopjs@6.2.2(typescript@5.5.2): + backstopjs@6.3.25(typescript@5.5.2): dependencies: os: 0.1.2 '@mirzazeyrek/node-resemble-js': 1.2.1 chalk: 4.1.2 diverged: 0.1.3 - fs-extra: 10.1.0 + fs-extra: 11.3.0 jump.js: 1.0.2 junit-report-builder: 3.2.1 lodash: 4.17.21 minimist: 1.2.8 object-hash: 3.0.0 - opn: 5.5.0 + opn: 6.0.0 p-map: 4.0.0 path: 0.12.7 playwright: 1.42.1 portfinder: 1.0.32 - puppeteer: 19.11.1(typescript@5.5.2) + puppeteer: 22.15.0(typescript@5.5.2) super-simple-web-server: 1.1.4 temp: 0.9.4 transitivePeerDependencies: + - bare-buffer - bufferutil - - encoding - supports-color - typescript - utf-8-validate @@ -17011,6 +17105,30 @@ snapshots: bare-events@2.5.0: optional: true + bare-fs@4.0.1: + dependencies: + bare-events: 2.5.0 + bare-path: 3.0.0 + bare-stream: 2.6.5(bare-events@2.5.0) + transitivePeerDependencies: + - bare-buffer + optional: true + + bare-os@3.4.0: + optional: true + + bare-path@3.0.0: + dependencies: + bare-os: 3.4.0 + optional: true + + bare-stream@2.6.5(bare-events@2.5.0): + dependencies: + streamx: 2.22.0 + optionalDependencies: + bare-events: 2.5.0 + optional: true + base-64@1.0.0: {} base64-js@1.5.1: {} @@ -17019,6 +17137,8 @@ snapshots: dependencies: safe-buffer: 5.1.2 + basic-ftp@5.0.5: {} + bcp-47-match@2.0.3: {} bcrypt-pbkdf@1.0.2: @@ -17071,17 +17191,6 @@ snapshots: bottleneck@2.19.5: {} - boxen@7.1.1: - dependencies: - ansi-align: 3.0.1 - camelcase: 7.0.1 - chalk: 5.3.0 - cli-boxes: 3.0.0 - string-width: 5.1.2 - type-fest: 2.19.0 - widest-line: 4.0.1 - wrap-ansi: 8.1.0 - boxen@8.0.1: dependencies: ansi-align: 3.0.1 @@ -17110,13 +17219,6 @@ snapshots: dependencies: pako: 0.2.9 - browserslist@4.23.3: - dependencies: - caniuse-lite: 1.0.30001689 - electron-to-chromium: 1.5.26 - node-releases: 2.0.18 - update-browserslist-db: 1.1.0(browserslist@4.23.3) - browserslist@4.24.3: dependencies: caniuse-lite: 1.0.30001689 @@ -17227,8 +17329,6 @@ snapshots: camelcase@6.3.0: {} - camelcase@7.0.1: {} - camelcase@8.0.0: {} caniuse-lite@1.0.30001689: {} @@ -17298,14 +17398,20 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + chokidar@4.0.3: + dependencies: + readdirp: 4.1.1 + chownr@1.1.4: {} chownr@2.0.0: {} - chromium-bidi@0.4.7(devtools-protocol@0.0.1107588): + chromium-bidi@0.6.3(devtools-protocol@0.0.1312386): dependencies: - devtools-protocol: 0.0.1107588 - mitt: 3.0.0 + devtools-protocol: 0.0.1312386 + mitt: 3.0.1 + urlpattern-polyfill: 10.0.0 + zod: 3.23.8 ci-info@3.9.0: {} @@ -17472,28 +17578,24 @@ snapshots: core-util-is@1.0.2: {} - cosmiconfig@8.1.3: + cosmiconfig@8.3.6(typescript@5.5.2): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 + optionalDependencies: + typescript: 5.5.2 - cosmiconfig@8.3.6(typescript@5.5.2): + cosmiconfig@9.0.0(typescript@5.5.2): dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 optionalDependencies: typescript: 5.5.2 - cross-fetch@3.1.5: - dependencies: - node-fetch: 2.6.7 - transitivePeerDependencies: - - encoding - cross-spawn@6.0.6: dependencies: nice-try: 1.0.5 @@ -17526,7 +17628,7 @@ snapshots: dependencies: postcss: 8.4.37 - css-selector-parser@2.3.2: {} + css-selector-parser@3.0.5: {} css-tree@2.3.1: dependencies: @@ -17547,9 +17649,9 @@ snapshots: csstype@3.1.3: {} - cypress-axe@1.5.0(axe-core@4.10.0)(cypress@13.8.1): + cypress-axe@1.5.0(axe-core@4.10.2)(cypress@13.8.1): dependencies: - axe-core: 4.10.0 + axe-core: 4.10.2 cypress: 13.8.1 cypress-image-diff-js@1.30.1(cypress@13.8.1): @@ -17585,7 +17687,7 @@ snapshots: commander: 6.2.1 common-tags: 1.8.2 dayjs: 1.11.2 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) enquirer: 2.3.6 eventemitter2: 6.4.7 execa: 4.1.0 @@ -17618,6 +17720,8 @@ snapshots: data-uri-to-buffer@3.0.1: {} + data-uri-to-buffer@6.0.2: {} + data-urls@5.0.0: dependencies: whatwg-mimetype: 4.0.0 @@ -17659,11 +17763,11 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - debug@4.3.4: + debug@4.3.7: dependencies: - ms: 2.1.2 + ms: 2.1.3 - debug@4.3.7(supports-color@8.1.1): + debug@4.4.0(supports-color@8.1.1): dependencies: ms: 2.1.3 optionalDependencies: @@ -17731,6 +17835,12 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 + degenerator@5.0.1: + dependencies: + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + delayed-stream@1.0.0: {} delegates@1.0.0: {} @@ -17760,7 +17870,7 @@ snapshots: dependencies: dequal: 2.0.3 - devtools-protocol@0.0.1107588: {} + devtools-protocol@0.0.1312386: {} diff-sequences@29.6.3: {} @@ -17821,8 +17931,6 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.26: {} - electron-to-chromium@1.5.74: {} emoji-regex-xs@1.0.0: {} @@ -17849,6 +17957,8 @@ snapshots: entities@4.5.0: {} + env-paths@2.2.1: {} + environment@1.1.0: {} err-code@2.0.3: {} @@ -17951,6 +18061,20 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 + esast-util-from-estree@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 + + esast-util-from-js@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + acorn: 8.14.0 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.2 + esbuild-plugins-node-modules-polyfill@1.6.3(esbuild@0.17.6): dependencies: '@jspm/core': 2.0.1 @@ -18035,7 +18159,33 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - escalade@3.1.2: {} + esbuild@0.24.2: + optionalDependencies: + '@esbuild/aix-ppc64': 0.24.2 + '@esbuild/android-arm': 0.24.2 + '@esbuild/android-arm64': 0.24.2 + '@esbuild/android-x64': 0.24.2 + '@esbuild/darwin-arm64': 0.24.2 + '@esbuild/darwin-x64': 0.24.2 + '@esbuild/freebsd-arm64': 0.24.2 + '@esbuild/freebsd-x64': 0.24.2 + '@esbuild/linux-arm': 0.24.2 + '@esbuild/linux-arm64': 0.24.2 + '@esbuild/linux-ia32': 0.24.2 + '@esbuild/linux-loong64': 0.24.2 + '@esbuild/linux-mips64el': 0.24.2 + '@esbuild/linux-ppc64': 0.24.2 + '@esbuild/linux-riscv64': 0.24.2 + '@esbuild/linux-s390x': 0.24.2 + '@esbuild/linux-x64': 0.24.2 + '@esbuild/netbsd-arm64': 0.24.2 + '@esbuild/netbsd-x64': 0.24.2 + '@esbuild/openbsd-arm64': 0.24.2 + '@esbuild/openbsd-x64': 0.24.2 + '@esbuild/sunos-x64': 0.24.2 + '@esbuild/win32-arm64': 0.24.2 + '@esbuild/win32-ia32': 0.24.2 + '@esbuild/win32-x64': 0.24.2 escalade@3.2.0: {} @@ -18047,6 +18197,14 @@ snapshots: escape-string-regexp@5.0.0: {} + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + eslint-config-prettier@8.8.0(eslint@8.56.0): dependencies: eslint: 8.56.0 @@ -18104,7 +18262,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -18156,8 +18314,8 @@ snapshots: estree-to-babel@3.2.1: dependencies: - '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 c8: 7.14.0 transitivePeerDependencies: - supports-color @@ -18189,6 +18347,11 @@ snapshots: estree-util-is-identifier-name@3.0.0: {} + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.6 + devlop: 1.1.0 + estree-util-to-js@1.2.0: dependencies: '@types/estree-jsx': 1.0.5 @@ -18314,12 +18477,12 @@ snapshots: transitivePeerDependencies: - supports-color - expressive-code@0.33.5: + expressive-code@0.40.1: dependencies: - '@expressive-code/core': 0.33.5 - '@expressive-code/plugin-frames': 0.33.5 - '@expressive-code/plugin-shiki': 0.33.5 - '@expressive-code/plugin-text-markers': 0.33.5 + '@expressive-code/core': 0.40.1 + '@expressive-code/plugin-frames': 0.40.1 + '@expressive-code/plugin-shiki': 0.40.1 + '@expressive-code/plugin-text-markers': 0.40.1 ext-list@2.2.2: dependencies: @@ -18338,7 +18501,7 @@ snapshots: extract-zip@2.0.1(supports-color@8.1.1): dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -18504,6 +18667,12 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 + fs-extra@11.3.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + fs-extra@9.1.0: dependencies: at-least-node: 1.0.0 @@ -18581,6 +18750,14 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 + get-uri@6.0.4: + dependencies: + basic-ftp: 5.0.5 + data-uri-to-buffer: 6.0.2 + debug: 4.4.0(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + getos@3.2.1: dependencies: async: 3.2.5 @@ -18740,15 +18917,6 @@ snapshots: '@types/hast': 3.0.4 space-separated-tokens: 2.0.2 - hast-util-from-html@2.0.1: - dependencies: - '@types/hast': 3.0.4 - devlop: 1.1.0 - hast-util-from-parse5: 8.0.1 - parse5: 7.1.2 - vfile: 6.0.3 - vfile-message: 4.0.2 - hast-util-from-html@2.0.3: dependencies: '@types/hast': 3.0.4 @@ -18758,16 +18926,6 @@ snapshots: vfile: 6.0.3 vfile-message: 4.0.2 - hast-util-from-parse5@7.1.2: - dependencies: - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 - hastscript: 7.2.0 - property-information: 6.4.1 - vfile: 5.3.7 - vfile-location: 4.1.0 - web-namespaces: 2.0.1 - hast-util-from-parse5@8.0.1: dependencies: '@types/hast': 3.0.4 @@ -18791,28 +18949,10 @@ snapshots: dependencies: '@types/hast': 3.0.4 - hast-util-parse-selector@3.1.1: - dependencies: - '@types/hast': 2.3.10 - hast-util-parse-selector@4.0.0: dependencies: '@types/hast': 3.0.4 - hast-util-raw@7.2.3: - dependencies: - '@types/hast': 2.3.10 - '@types/parse5': 6.0.3 - hast-util-from-parse5: 7.1.2 - hast-util-to-parse5: 7.1.0 - html-void-elements: 2.0.1 - parse5: 6.0.1 - unist-util-position: 4.0.4 - unist-util-visit: 4.1.2 - vfile: 5.3.7 - web-namespaces: 2.0.1 - zwitch: 2.0.4 - hast-util-raw@9.0.2: dependencies: '@types/hast': 3.0.4 @@ -18829,19 +18969,18 @@ snapshots: web-namespaces: 2.0.1 zwitch: 2.0.4 - hast-util-select@6.0.1: + hast-util-select@6.0.3: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 bcp-47-match: 2.0.3 comma-separated-tokens: 2.0.3 - css-selector-parser: 2.3.2 + css-selector-parser: 3.0.5 devlop: 1.1.0 direction: 2.0.1 hast-util-has-property: 3.0.0 hast-util-to-string: 3.0.0 hast-util-whitespace: 3.0.0 - not: 0.1.0 nth-check: 2.1.1 property-information: 6.4.1 space-separated-tokens: 2.0.2 @@ -18889,21 +19028,7 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-html@8.0.4: - dependencies: - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 - ccount: 2.0.1 - comma-separated-tokens: 2.0.3 - hast-util-raw: 7.2.3 - hast-util-whitespace: 2.0.1 - html-void-elements: 2.0.1 - property-information: 6.4.1 - space-separated-tokens: 2.0.2 - stringify-entities: 4.0.3 - zwitch: 2.0.4 - - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.4: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.2 @@ -18937,15 +19062,6 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-parse5@7.1.0: - dependencies: - '@types/hast': 2.3.10 - comma-separated-tokens: 2.0.3 - property-information: 6.4.1 - space-separated-tokens: 2.0.2 - web-namespaces: 2.0.1 - zwitch: 2.0.4 - hast-util-to-parse5@8.0.0: dependencies: '@types/hast': 3.0.4 @@ -18973,15 +19089,15 @@ snapshots: dependencies: '@types/hast': 3.0.4 - hastscript@7.2.0: + hastscript@8.0.0: dependencies: - '@types/hast': 2.3.10 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 - hast-util-parse-selector: 3.1.1 + hast-util-parse-selector: 4.0.0 property-information: 6.4.1 space-separated-tokens: 2.0.2 - hastscript@8.0.0: + hastscript@9.0.0: dependencies: '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -19015,8 +19131,6 @@ snapshots: html-tags@3.3.1: {} - html-void-elements@2.0.1: {} - html-void-elements@3.0.0: {} http-assert@1.5.0: @@ -19042,10 +19156,10 @@ snapshots: statuses: 2.0.1 toidentifier: 1.0.1 - http-proxy-agent@7.0.0: + http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.0 - debug: 4.3.7(supports-color@8.1.1) + agent-base: 7.1.3 + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -19060,17 +19174,10 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@5.0.1: + https-proxy-agent@7.0.6: dependencies: - agent-base: 6.0.2 - debug: 4.3.7(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - - https-proxy-agent@7.0.2: - dependencies: - agent-base: 7.1.0 - debug: 4.3.7(supports-color@8.1.1) + agent-base: 7.1.3 + debug: 4.4.0(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -19142,6 +19249,11 @@ snapshots: hasown: 2.0.2 side-channel: 1.0.6 + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + ipaddr.js@1.9.1: {} is-alphabetical@2.0.1: {} @@ -19340,6 +19452,8 @@ snapshots: isbot@4.4.0: {} + isbot@5.1.22: {} + isexe@2.0.0: {} isstream@0.1.2: {} @@ -19355,7 +19469,7 @@ snapshots: istanbul-lib-source-maps@5.0.6: dependencies: '@jridgewell/trace-mapping': 0.3.25 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) istanbul-lib-coverage: 3.2.2 transitivePeerDependencies: - supports-color @@ -19403,6 +19517,8 @@ snapshots: jsbn@0.1.1: {} + jsbn@1.1.0: {} + jsdom@24.0.0: dependencies: cssstyle: 4.0.1 @@ -19410,8 +19526,8 @@ snapshots: decimal.js: 10.4.3 form-data: 4.0.0 html-encoding-sniffer: 4.0.0 - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.7 parse5: 7.1.2 @@ -19431,8 +19547,6 @@ snapshots: - supports-color - utf-8-validate - jsesc@2.5.2: {} - jsesc@3.0.2: {} json-buffer@3.0.1: {} @@ -19540,7 +19654,7 @@ snapshots: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -19568,46 +19682,50 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - lightningcss-darwin-arm64@1.25.1: + lightningcss-darwin-arm64@1.29.1: + optional: true + + lightningcss-darwin-x64@1.29.1: optional: true - lightningcss-darwin-x64@1.25.1: + lightningcss-freebsd-x64@1.29.1: optional: true - lightningcss-freebsd-x64@1.25.1: + lightningcss-linux-arm-gnueabihf@1.29.1: optional: true - lightningcss-linux-arm-gnueabihf@1.25.1: + lightningcss-linux-arm64-gnu@1.29.1: optional: true - lightningcss-linux-arm64-gnu@1.25.1: + lightningcss-linux-arm64-musl@1.29.1: optional: true - lightningcss-linux-arm64-musl@1.25.1: + lightningcss-linux-x64-gnu@1.29.1: optional: true - lightningcss-linux-x64-gnu@1.25.1: + lightningcss-linux-x64-musl@1.29.1: optional: true - lightningcss-linux-x64-musl@1.25.1: + lightningcss-win32-arm64-msvc@1.29.1: optional: true - lightningcss-win32-x64-msvc@1.25.1: + lightningcss-win32-x64-msvc@1.29.1: optional: true - lightningcss@1.25.1: + lightningcss@1.29.1: dependencies: detect-libc: 1.0.3 optionalDependencies: - lightningcss-darwin-arm64: 1.25.1 - lightningcss-darwin-x64: 1.25.1 - lightningcss-freebsd-x64: 1.25.1 - lightningcss-linux-arm-gnueabihf: 1.25.1 - lightningcss-linux-arm64-gnu: 1.25.1 - lightningcss-linux-arm64-musl: 1.25.1 - lightningcss-linux-x64-gnu: 1.25.1 - lightningcss-linux-x64-musl: 1.25.1 - lightningcss-win32-x64-msvc: 1.25.1 + lightningcss-darwin-arm64: 1.29.1 + lightningcss-darwin-x64: 1.29.1 + lightningcss-freebsd-x64: 1.29.1 + lightningcss-linux-arm-gnueabihf: 1.29.1 + lightningcss-linux-arm64-gnu: 1.29.1 + lightningcss-linux-arm64-musl: 1.29.1 + lightningcss-linux-x64-gnu: 1.29.1 + lightningcss-linux-x64-musl: 1.29.1 + lightningcss-win32-arm64-msvc: 1.29.1 + lightningcss-win32-x64-msvc: 1.29.1 lilconfig@3.1.2: {} @@ -19617,7 +19735,7 @@ snapshots: dependencies: chalk: 5.3.0 commander: 12.1.0 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.3.7 execa: 8.0.1 lilconfig: 3.1.2 listr2: 8.2.4 @@ -19767,7 +19885,7 @@ snapshots: magicast@0.3.5: dependencies: - '@babel/parser': 7.25.8 + '@babel/parser': 7.26.3 '@babel/types': 7.26.3 source-map-js: 1.2.0 @@ -20536,7 +20654,7 @@ snapshots: micromark@3.2.0: dependencies: '@types/debug': 4.1.10 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) decode-named-character-reference: 1.0.1 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -20558,7 +20676,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.10 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) decode-named-character-reference: 1.0.1 devlop: 1.1.0 micromark-core-commonmark: 2.0.0 @@ -20643,7 +20761,7 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 - mitt@3.0.0: {} + mitt@3.0.1: {} mkdirp-classic@0.5.3: {} @@ -20680,37 +20798,38 @@ snapshots: ms@2.0.0: {} - ms@2.1.2: {} - ms@2.1.3: {} - msw@2.4.9(typescript@5.5.2): + msw@2.7.0(@types/node@22.5.5)(typescript@5.5.2): dependencies: - '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/cookie': 2.0.1 '@bundled-es-modules/statuses': 1.0.1 '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 3.2.0 - '@mswjs/interceptors': 0.35.8 + '@inquirer/confirm': 5.1.5(@types/node@22.5.5) + '@mswjs/interceptors': 0.37.6 + '@open-draft/deferred-promise': 2.2.0 '@open-draft/until': 2.1.0 '@types/cookie': 0.6.0 '@types/statuses': 2.0.4 - chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.2 is-node-process: 1.2.0 outvariant: 1.4.3 path-to-regexp: 6.3.0 + picocolors: 1.1.1 strict-event-emitter: 0.5.1 - type-fest: 4.9.0 + type-fest: 4.26.1 yargs: 17.7.2 optionalDependencies: typescript: 5.5.2 + transitivePeerDependencies: + - '@types/node' - mute-stream@1.0.0: {} + mute-stream@2.0.0: {} nanoid@3.3.8: {} - nanostores@0.9.5: {} + nanostores@0.11.3: {} natural-compare-lite@1.4.0: {} @@ -20722,29 +20841,31 @@ snapshots: neotraverse@0.6.18: {} - next@14.2.21(@playwright/test@1.42.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.72.0): + netmask@2.0.2: {} + + next@15.1.6(@playwright/test@1.42.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.72.0): dependencies: - '@next/env': 14.2.21 - '@swc/helpers': 0.5.5 + '@next/env': 15.1.6 + '@swc/counter': 0.1.3 + '@swc/helpers': 0.5.15 busboy: 1.6.0 caniuse-lite: 1.0.30001689 - graceful-fs: 4.2.11 postcss: 8.4.37 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(react@18.2.0) + styled-jsx: 5.1.6(react@18.2.0) optionalDependencies: - '@next/swc-darwin-arm64': 14.2.21 - '@next/swc-darwin-x64': 14.2.21 - '@next/swc-linux-arm64-gnu': 14.2.21 - '@next/swc-linux-arm64-musl': 14.2.21 - '@next/swc-linux-x64-gnu': 14.2.21 - '@next/swc-linux-x64-musl': 14.2.21 - '@next/swc-win32-arm64-msvc': 14.2.21 - '@next/swc-win32-ia32-msvc': 14.2.21 - '@next/swc-win32-x64-msvc': 14.2.21 + '@next/swc-darwin-arm64': 15.1.6 + '@next/swc-darwin-x64': 15.1.6 + '@next/swc-linux-arm64-gnu': 15.1.6 + '@next/swc-linux-arm64-musl': 15.1.6 + '@next/swc-linux-x64-gnu': 15.1.6 + '@next/swc-linux-x64-musl': 15.1.6 + '@next/swc-win32-arm64-msvc': 15.1.6 + '@next/swc-win32-x64-msvc': 15.1.6 '@playwright/test': 1.42.1 sass: 1.72.0 + sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -20772,15 +20893,9 @@ snapshots: dependencies: minimatch: 3.1.2 - node-fetch@2.6.7: - dependencies: - whatwg-url: 5.0.0 - node-gyp-build@4.8.1: optional: true - node-releases@2.0.18: {} - node-releases@2.0.19: {} normalize-package-data@6.0.0: @@ -20796,8 +20911,6 @@ snapshots: normalize-url@8.0.1: {} - not@0.1.0: {} - npm-install-checks@6.3.0: dependencies: semver: 7.6.0 @@ -20921,11 +21034,11 @@ snapshots: dependencies: mimic-function: 5.0.1 - oniguruma-to-es@0.7.0: + oniguruma-to-es@2.3.0: dependencies: emoji-regex-xs: 1.0.0 - regex: 5.0.2 - regex-recursion: 4.3.0 + regex: 5.1.1 + regex-recursion: 5.1.1 only@0.0.2: {} @@ -20936,7 +21049,7 @@ snapshots: is-inside-container: 1.0.0 is-wsl: 3.1.0 - opn@5.5.0: + opn@6.0.0: dependencies: is-wsl: 1.1.0 @@ -21024,6 +21137,24 @@ snapshots: p-try@2.2.0: {} + pac-proxy-agent@7.1.0: + dependencies: + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.3 + 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 + pac-resolver: 7.0.1 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + + pac-resolver@7.0.1: + dependencies: + degenerator: 5.0.1 + netmask: 2.0.2 + pako@0.2.9: {} parent-module@1.0.1: @@ -21048,7 +21179,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -21070,8 +21201,6 @@ snapshots: parse-ms@2.1.0: {} - parse5@6.0.1: {} - parse5@7.1.2: dependencies: entities: 4.5.0 @@ -21136,7 +21265,7 @@ snapshots: estree-walker: 3.0.3 is-reference: 3.0.2 - picocolors@1.1.0: {} + picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -21410,7 +21539,7 @@ snapshots: '@csstools/postcss-trigonometric-functions': 3.0.6(postcss@8.4.37) '@csstools/postcss-unset-value': 3.0.1(postcss@8.4.37) autoprefixer: 10.4.18(postcss@8.4.37) - browserslist: 4.23.3 + browserslist: 4.24.3 css-blank-pseudo: 6.0.1(postcss@8.4.37) css-has-pseudo: 6.0.2(postcss@8.4.37) css-prefers-color-scheme: 9.0.1(postcss@8.4.37) @@ -21476,7 +21605,7 @@ snapshots: postcss@8.4.37: dependencies: nanoid: 3.3.8 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.0 preact@10.19.7: {} @@ -21515,7 +21644,7 @@ snapshots: dependencies: parse-ms: 2.1.0 - prism-react-renderer@2.3.1(react@18.2.0): + prism-react-renderer@2.4.1(react@18.2.0): dependencies: '@types/prismjs': 1.26.2 clsx: 2.1.1 @@ -21556,6 +21685,19 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 + proxy-agent@6.5.0: + dependencies: + agent-base: 7.1.3 + 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 + pac-proxy-agent: 7.1.0 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + proxy-from-env@1.0.0: {} proxy-from-env@1.1.0: {} @@ -21580,38 +21722,28 @@ snapshots: punycode@2.3.1: {} - puppeteer-core@19.11.1(typescript@5.5.2): + puppeteer-core@22.15.0: dependencies: - '@puppeteer/browsers': 0.5.0(typescript@5.5.2) - chromium-bidi: 0.4.7(devtools-protocol@0.0.1107588) - cross-fetch: 3.1.5 - debug: 4.3.4 - devtools-protocol: 0.0.1107588 - extract-zip: 2.0.1(supports-color@8.1.1) - https-proxy-agent: 5.0.1 - proxy-from-env: 1.1.0 - tar-fs: 2.1.1 - unbzip2-stream: 1.4.3 + '@puppeteer/browsers': 2.3.0 + chromium-bidi: 0.6.3(devtools-protocol@0.0.1312386) + debug: 4.4.0(supports-color@8.1.1) + devtools-protocol: 0.0.1312386 ws: 8.17.1 - optionalDependencies: - typescript: 5.5.2 transitivePeerDependencies: + - bare-buffer - bufferutil - - encoding - supports-color - utf-8-validate - puppeteer@19.11.1(typescript@5.5.2): + puppeteer@22.15.0(typescript@5.5.2): dependencies: - '@puppeteer/browsers': 0.5.0(typescript@5.5.2) - cosmiconfig: 8.1.3 - https-proxy-agent: 5.0.1 - progress: 2.0.3 - proxy-from-env: 1.1.0 - puppeteer-core: 19.11.1(typescript@5.5.2) + '@puppeteer/browsers': 2.3.0 + cosmiconfig: 9.0.0(typescript@5.5.2) + devtools-protocol: 0.0.1312386 + puppeteer-core: 22.15.0 transitivePeerDependencies: + - bare-buffer - bufferutil - - encoding - supports-color - typescript - utf-8-validate @@ -21624,7 +21756,7 @@ snapshots: dependencies: side-channel: 1.0.6 - query-string@9.1.0: + query-string@9.1.1: dependencies: decode-uri-component: 0.4.1 filter-obj: 5.1.0 @@ -21634,8 +21766,6 @@ snapshots: queue-microtask@1.2.3: {} - queue-tick@1.0.1: {} - quick-lru@5.1.1: {} range-parser@1.2.1: {} @@ -21653,8 +21783,8 @@ snapshots: react-docgen@6.0.0-alpha.3: dependencies: - '@babel/core': 7.25.2 - '@babel/generator': 7.25.6 + '@babel/core': 7.26.0 + '@babel/generator': 7.26.3 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -21672,7 +21802,7 @@ snapshots: react: 18.2.0 scheduler: 0.23.0 - react-hotkeys-hook@4.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-hotkeys-hook@4.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21689,16 +21819,16 @@ snapshots: react-refresh@0.14.2: {} - react-router-dom@6.22.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-router-dom@6.29.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@remix-run/router': 1.15.3 + '@remix-run/router': 1.22.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.22.3(react@18.2.0) + react-router: 6.29.0(react@18.2.0) - react-router@6.22.3(react@18.2.0): + react-router@6.29.0(react@18.2.0): dependencies: - '@remix-run/router': 1.15.3 + '@remix-run/router': 1.22.0 react: 18.2.0 react-table@7.8.0(react@18.2.0): @@ -21748,6 +21878,38 @@ snapshots: dependencies: picomatch: 2.3.1 + readdirp@4.1.1: {} + + recma-build-jsx@1.0.0: + dependencies: + '@types/estree': 1.0.6 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.3 + + recma-jsx@1.0.0(acorn@8.14.0): + dependencies: + acorn-jsx: 5.3.2(acorn@8.14.0) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - acorn + + recma-parse@1.0.0: + dependencies: + '@types/estree': 1.0.6 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.3 + + recma-stringify@1.0.0: + dependencies: + '@types/estree': 1.0.6 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.3 + redent@3.0.0: dependencies: indent-string: 4.0.0 @@ -21770,13 +21932,14 @@ snapshots: regenerator-runtime@0.14.1: {} - regex-recursion@4.3.0: + regex-recursion@5.1.1: dependencies: + regex: 5.1.1 regex-utilities: 2.3.0 regex-utilities@2.3.0: {} - regex@5.0.2: + regex@5.1.1: dependencies: regex-utilities: 2.3.0 @@ -21800,9 +21963,13 @@ snapshots: dependencies: '@types/hast': 3.0.4 hast-util-classnames: 3.0.0 - hast-util-select: 6.0.1 + hast-util-select: 6.0.3 unified: 11.0.5 + rehype-expressive-code@0.40.1: + dependencies: + expressive-code: 0.40.1 + rehype-parse@9.0.0: dependencies: '@types/hast': 3.0.4 @@ -21815,6 +21982,14 @@ snapshots: hast-util-raw: 9.0.2 vfile: 6.0.3 + rehype-recma@1.0.0: + dependencies: + '@types/estree': 1.0.6 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.0 + transitivePeerDependencies: + - supports-color + rehype-slug@6.0.0: dependencies: '@types/hast': 3.0.4 @@ -21823,16 +21998,10 @@ snapshots: hast-util-to-string: 3.0.0 unist-util-visit: 5.0.0 - rehype-stringify@10.0.0: - dependencies: - '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 - unified: 11.0.5 - rehype-stringify@10.0.1: dependencies: '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.4 unified: 11.0.5 rehype@13.0.2: @@ -21842,12 +22011,6 @@ snapshots: rehype-stringify: 10.0.1 unified: 11.0.5 - remark-expressive-code@0.33.5: - dependencies: - expressive-code: 0.33.5 - hast-util-to-html: 8.0.4 - unist-util-visit: 4.1.2 - remark-frontmatter@4.0.1: dependencies: '@types/mdast': 3.0.15 @@ -21911,14 +22074,6 @@ snapshots: mdast-util-to-hast: 12.3.0 unified: 10.1.2 - remark-rehype@11.1.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.3 - mdast-util-to-hast: 13.1.0 - unified: 11.0.5 - vfile: 6.0.3 - remark-rehype@11.1.1: dependencies: '@types/hast': 3.0.4 @@ -22064,29 +22219,29 @@ snapshots: dependencies: glob: 10.3.10 - rollup@4.28.1: + rollup@4.34.3: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.28.1 - '@rollup/rollup-android-arm64': 4.28.1 - '@rollup/rollup-darwin-arm64': 4.28.1 - '@rollup/rollup-darwin-x64': 4.28.1 - '@rollup/rollup-freebsd-arm64': 4.28.1 - '@rollup/rollup-freebsd-x64': 4.28.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.28.1 - '@rollup/rollup-linux-arm-musleabihf': 4.28.1 - '@rollup/rollup-linux-arm64-gnu': 4.28.1 - '@rollup/rollup-linux-arm64-musl': 4.28.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.28.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.28.1 - '@rollup/rollup-linux-riscv64-gnu': 4.28.1 - '@rollup/rollup-linux-s390x-gnu': 4.28.1 - '@rollup/rollup-linux-x64-gnu': 4.28.1 - '@rollup/rollup-linux-x64-musl': 4.28.1 - '@rollup/rollup-win32-arm64-msvc': 4.28.1 - '@rollup/rollup-win32-ia32-msvc': 4.28.1 - '@rollup/rollup-win32-x64-msvc': 4.28.1 + '@rollup/rollup-android-arm-eabi': 4.34.3 + '@rollup/rollup-android-arm64': 4.34.3 + '@rollup/rollup-darwin-arm64': 4.34.3 + '@rollup/rollup-darwin-x64': 4.34.3 + '@rollup/rollup-freebsd-arm64': 4.34.3 + '@rollup/rollup-freebsd-x64': 4.34.3 + '@rollup/rollup-linux-arm-gnueabihf': 4.34.3 + '@rollup/rollup-linux-arm-musleabihf': 4.34.3 + '@rollup/rollup-linux-arm64-gnu': 4.34.3 + '@rollup/rollup-linux-arm64-musl': 4.34.3 + '@rollup/rollup-linux-loongarch64-gnu': 4.34.3 + '@rollup/rollup-linux-powerpc64le-gnu': 4.34.3 + '@rollup/rollup-linux-riscv64-gnu': 4.34.3 + '@rollup/rollup-linux-s390x-gnu': 4.34.3 + '@rollup/rollup-linux-x64-gnu': 4.34.3 + '@rollup/rollup-linux-x64-musl': 4.34.3 + '@rollup/rollup-win32-arm64-msvc': 4.34.3 + '@rollup/rollup-win32-ia32-msvc': 4.34.3 + '@rollup/rollup-win32-x64-msvc': 4.34.3 fsevents: 2.3.3 rrweb-cssom@0.6.0: {} @@ -22099,7 +22254,7 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.6.1 + tslib: 2.8.1 s.color@0.0.15: {} @@ -22299,13 +22454,15 @@ snapshots: shell-quote@1.8.1: {} - shiki@1.24.2: + shiki@1.29.2: dependencies: - '@shikijs/core': 1.24.2 - '@shikijs/engine-javascript': 1.24.2 - '@shikijs/engine-oniguruma': 1.24.2 - '@shikijs/types': 1.24.2 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/core': 1.29.2 + '@shikijs/engine-javascript': 1.29.2 + '@shikijs/engine-oniguruma': 1.29.2 + '@shikijs/langs': 1.29.2 + '@shikijs/themes': 1.29.2 + '@shikijs/types': 1.29.2 + '@shikijs/vscode-textmate': 10.0.1 '@types/hast': 3.0.4 side-channel@1.0.6: @@ -22361,8 +22518,23 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 + smart-buffer@4.2.0: {} + snarkdown@2.0.0: {} + socks-proxy-agent@8.0.5: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0(supports-color@8.1.1) + socks: 2.8.3 + transitivePeerDependencies: + - supports-color + + socks@2.8.3: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + sort-keys-length@1.0.1: dependencies: sort-keys: 1.1.2 @@ -22404,6 +22576,8 @@ snapshots: sprintf-js@1.0.3: {} + sprintf-js@1.1.3: {} + sshpk@1.17.0: dependencies: asn1: 0.2.6 @@ -22436,10 +22610,9 @@ snapshots: streamsearch@1.1.0: {} - streamx@2.20.2: + streamx@2.22.0: dependencies: fast-fifo: 1.3.2 - queue-tick: 1.0.1 text-decoder: 1.2.1 optionalDependencies: bare-events: 2.5.0 @@ -22569,7 +22742,7 @@ snapshots: dependencies: inline-style-parser: 0.2.2 - styled-jsx@5.1.1(react@18.2.0): + styled-jsx@5.1.6(react@18.2.0): dependencies: client-only: 0.0.1 react: 18.2.0 @@ -22622,7 +22795,7 @@ snapshots: cosmiconfig: 8.3.6(typescript@5.5.2) css-functions-list: 3.2.1 css-tree: 2.3.1 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 file-entry-cache: 7.0.2 @@ -22639,7 +22812,7 @@ snapshots: meow: 10.1.5 micromatch: 4.0.8 normalize-path: 3.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.37 postcss-resolve-nested-selector: 0.1.1 postcss-safe-parser: 6.0.0(postcss@8.4.37) @@ -22707,6 +22880,16 @@ snapshots: pump: 3.0.0 tar-stream: 2.2.0 + tar-fs@3.0.8: + dependencies: + pump: 3.0.0 + tar-stream: 3.1.7 + optionalDependencies: + bare-fs: 4.0.1 + bare-path: 3.0.0 + transitivePeerDependencies: + - bare-buffer + tar-stream@2.2.0: dependencies: bl: 4.1.0 @@ -22719,7 +22902,7 @@ snapshots: dependencies: b4a: 1.6.7 fast-fifo: 1.3.2 - streamx: 2.20.2 + streamx: 2.22.0 tar@6.2.1: dependencies: @@ -22770,8 +22953,6 @@ snapshots: dependencies: rimraf: 3.0.2 - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -22792,8 +22973,6 @@ snapshots: universalify: 0.2.0 url-parse: 1.5.10 - tr46@0.0.3: {} - tr46@5.0.0: dependencies: punycode: 2.3.1 @@ -22806,10 +22985,6 @@ snapshots: trough@2.1.0: {} - tsconfck@3.1.3(typescript@5.5.2): - optionalDependencies: - typescript: 5.5.2 - tsconfck@3.1.4(typescript@5.5.2): optionalDependencies: typescript: 5.5.2 @@ -22822,8 +22997,6 @@ snapshots: tslib@1.14.1: {} - tslib@2.6.1: {} - tslib@2.8.1: {} tsscmp@1.0.6: {} @@ -22849,6 +23022,8 @@ snapshots: turbo-linux-arm64@1.12.4: optional: true + turbo-stream@2.4.0: {} + turbo-windows-64@1.12.4: optional: true @@ -22878,12 +23053,8 @@ snapshots: type-fest@1.4.0: {} - type-fest@2.19.0: {} - type-fest@4.26.1: {} - type-fest@4.9.0: {} - type-is@1.6.18: dependencies: media-typer: 0.3.0 @@ -22948,6 +23119,8 @@ snapshots: undici-types@6.19.8: {} + undici@6.21.1: {} + unherit@3.0.1: {} unicorn-magic@0.1.0: {} @@ -23082,17 +23255,11 @@ snapshots: untildify@4.0.0: {} - update-browserslist-db@1.1.0(browserslist@4.23.3): - dependencies: - browserslist: 4.23.3 - escalade: 3.1.2 - picocolors: 1.1.0 - update-browserslist-db@1.1.1(browserslist@4.24.3): dependencies: browserslist: 4.24.3 escalade: 3.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 uri-js@4.4.1: dependencies: @@ -23103,6 +23270,8 @@ snapshots: querystringify: 2.2.0 requires-port: 1.0.0 + urlpattern-polyfill@10.0.0: {} + util-deprecate@1.0.2: {} util@0.10.4: @@ -23134,6 +23303,10 @@ snapshots: '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 2.0.0 + valibot@0.41.0(typescript@5.5.2): + optionalDependencies: + typescript: 5.5.2 + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.1.1 @@ -23153,11 +23326,6 @@ snapshots: core-util-is: 1.0.2 extsprintf: 1.4.1 - vfile-location@4.1.0: - dependencies: - '@types/unist': 2.0.10 - vfile: 5.3.7 - vfile-location@5.0.2: dependencies: '@types/unist': 3.0.2 @@ -23185,13 +23353,13 @@ snapshots: '@types/unist': 3.0.2 vfile-message: 4.0.2 - vite-node@1.6.1(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0): + vite-node@1.6.1(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0): dependencies: cac: 6.7.14 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) pathe: 1.1.2 - picocolors: 1.1.0 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + picocolors: 1.1.1 + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) transitivePeerDependencies: - '@types/node' - less @@ -23203,34 +23371,58 @@ snapshots: - supports-color - terser - vite-tsconfig-paths@4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)): + vite-tsconfig-paths@4.3.2(typescript@5.5.2)(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)): + dependencies: + debug: 4.4.0(supports-color@8.1.1) + globrex: 0.1.2 + tsconfck: 3.1.4(typescript@5.5.2) + optionalDependencies: + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + transitivePeerDependencies: + - supports-color + - typescript + + vite-tsconfig-paths@5.1.4(typescript@5.5.2)(vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0)): dependencies: - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) globrex: 0.1.2 - tsconfck: 3.1.3(typescript@5.5.2) + tsconfck: 3.1.4(typescript@5.5.2) optionalDependencies: - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0) transitivePeerDependencies: - supports-color - typescript - vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0): + vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0): dependencies: esbuild: 0.21.5 postcss: 8.4.37 - rollup: 4.28.1 + rollup: 4.34.3 + optionalDependencies: + '@types/node': 22.5.5 + fsevents: 2.3.3 + lightningcss: 1.29.1 + sass: 1.72.0 + sass-embedded: 1.64.1 + + vite@6.1.0(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)(yaml@2.5.0): + dependencies: + esbuild: 0.24.2 + postcss: 8.4.37 + rollup: 4.34.3 optionalDependencies: '@types/node': 22.5.5 fsevents: 2.3.3 - lightningcss: 1.25.1 + lightningcss: 1.29.1 sass: 1.72.0 sass-embedded: 1.64.1 + yaml: 2.5.0 - vitefu@1.0.4(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0)): + vitefu@1.0.4(vite@5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0)): optionalDependencies: - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) - vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0): + vitest@1.6.1(@types/node@22.5.5)(jsdom@24.0.0)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0): dependencies: '@vitest/expect': 1.6.1 '@vitest/runner': 1.6.1 @@ -23239,18 +23431,18 @@ snapshots: '@vitest/utils': 1.6.1 acorn-walk: 8.3.2 chai: 4.4.1 - debug: 4.3.7(supports-color@8.1.1) + debug: 4.4.0(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.17 pathe: 1.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 std-env: 3.7.0 strip-literal: 2.1.1 tinybench: 2.6.0 tinypool: 0.8.4 - vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) - vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.25.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite: 5.4.14(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) + vite-node: 1.6.1(@types/node@22.5.5)(lightningcss@1.29.1)(sass-embedded@1.64.1)(sass@1.72.0) why-is-node-running: 2.2.2 optionalDependencies: '@types/node': 22.5.5 @@ -23283,8 +23475,6 @@ snapshots: web-streams-polyfill@3.3.3: {} - webidl-conversions@3.0.1: {} - webidl-conversions@7.0.0: {} whatwg-encoding@3.1.1: @@ -23298,11 +23488,6 @@ snapshots: tr46: 5.0.0 webidl-conversions: 7.0.0 - whatwg-url@5.0.0: - dependencies: - tr46: 0.0.3 - webidl-conversions: 3.0.1 - which-boxed-primitive@1.0.2: dependencies: is-bigint: 1.0.4 @@ -23366,10 +23551,6 @@ snapshots: siginfo: 2.0.0 stackback: 0.0.2 - widest-line@4.0.1: - dependencies: - string-width: 5.1.2 - widest-line@5.0.0: dependencies: string-width: 7.2.0 @@ -23462,27 +23643,17 @@ snapshots: yargs@16.2.0: dependencies: cliui: 7.0.4 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 20.2.9 - yargs@17.7.1: - dependencies: - cliui: 8.0.1 - escalade: 3.1.2 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 diff --git a/testing/a11y/package.json b/testing/a11y/package.json index 5f6b68c09c6..c11b6137665 100644 --- a/testing/a11y/package.json +++ b/testing/a11y/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@itwin/itwinui-react": "*", - "axe-core": "^4.8.2", + "axe-core": "^4.10.2", "cypress": "13.8.1", "cypress-axe": "^1.5.0", "examples": "workspace:*"