From 7ec18d3880e158fefa87906e8e038416c0809c10 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Aug 2026 05:13:54 +0000 Subject: [PATCH 1/2] Initial plan From c56678dc282f0fc020112771e000cc2409bb1373 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Aug 2026 05:21:32 +0000 Subject: [PATCH 2/2] Convert webtools app from Vite to Next.js static export Co-authored-by: jgwoolley <26191568+jgwoolley@users.noreply.github.com> --- .github/workflows/pages.yml | 10 +- apps/webtools/.gitignore | 6 +- apps/webtools/app/layout.tsx | 19 + apps/webtools/app/page.tsx | 7 + apps/webtools/next-env.d.ts | 5 + apps/webtools/next.config.mjs | 15 + apps/webtools/package.json | 17 +- apps/webtools/scripts/generateStaticFiles.mjs | 124 ++ apps/webtools/src/Nf2tApp.tsx | 30 + .../src/routes/info/buildInfo.lazy.tsx | 21 +- apps/webtools/tsconfig.json | 31 +- pnpm-lock.yaml | 1767 +++++++++++------ 12 files changed, 1389 insertions(+), 663 deletions(-) create mode 100644 apps/webtools/app/layout.tsx create mode 100644 apps/webtools/app/page.tsx create mode 100644 apps/webtools/next-env.d.ts create mode 100644 apps/webtools/next.config.mjs create mode 100644 apps/webtools/scripts/generateStaticFiles.mjs create mode 100644 apps/webtools/src/Nf2tApp.tsx diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 512ef7f..5264d82 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -39,11 +39,11 @@ jobs: with: node-version: "20.5.0" cache: 'pnpm' - - name: "ViteJS Project: Install dependencies" + - name: "NextJS Project: Install dependencies" run: pnpm install - - name: "ViteJS Project: Test" + - name: "NextJS Project: Test" run: pnpm run test - - name: "ViteJS Project: Build" + - name: "NextJS Project: Build" run: pnpm run build # Deploy GitHub Pages - name: Setup Pages @@ -51,8 +51,8 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - # Upload dist repository - path: './apps/webtools/dist' + # Upload NextJS static export + path: './apps/webtools/out' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 diff --git a/apps/webtools/.gitignore b/apps/webtools/.gitignore index 38abdb5..a10b7b0 100644 --- a/apps/webtools/.gitignore +++ b/apps/webtools/.gitignore @@ -10,6 +10,8 @@ lerna-debug.log* node_modules dist dist-ssr +.next +out *.local # Editor directories and files @@ -27,4 +29,6 @@ dist-ssr downloads public/nars nars -public/nars.txt \ No newline at end of file +public/nars.txt +public/buildinfo.json +public/nars.json \ No newline at end of file diff --git a/apps/webtools/app/layout.tsx b/apps/webtools/app/layout.tsx new file mode 100644 index 0000000..99951b8 --- /dev/null +++ b/apps/webtools/app/layout.tsx @@ -0,0 +1,19 @@ +import type { Metadata } from 'next'; +import type { ReactNode } from 'react'; + +export const metadata: Metadata = { + title: 'Nifi FlowFile Tools', + description: 'Client-side tools for Apache Nifi FlowFiles', +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: ReactNode; +}>) { + return ( + + {children} + + ); +} diff --git a/apps/webtools/app/page.tsx b/apps/webtools/app/page.tsx new file mode 100644 index 0000000..0099ea2 --- /dev/null +++ b/apps/webtools/app/page.tsx @@ -0,0 +1,7 @@ +import dynamic from 'next/dynamic'; + +const Nf2tApp = dynamic(() => import('../src/Nf2tApp'), { ssr: false }); + +export default function Home() { + return ; +} diff --git a/apps/webtools/next-env.d.ts b/apps/webtools/next-env.d.ts new file mode 100644 index 0000000..40c3d68 --- /dev/null +++ b/apps/webtools/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/apps/webtools/next.config.mjs b/apps/webtools/next.config.mjs new file mode 100644 index 0000000..b59a3ed --- /dev/null +++ b/apps/webtools/next.config.mjs @@ -0,0 +1,15 @@ +const repository = process.env.GITHUB_REPOSITORY?.split('/')[1]; +const basePath = process.env.GITHUB_ACTIONS === 'true' && repository ? `/${repository}` : ''; + +/** @type {import('next').NextConfig} */ +const nextConfig = { + output: 'export', + trailingSlash: true, + basePath, + assetPrefix: basePath || undefined, + images: { + unoptimized: true, + }, +}; + +export default nextConfig; diff --git a/apps/webtools/package.json b/apps/webtools/package.json index 5052c08..d7c5747 100644 --- a/apps/webtools/package.json +++ b/apps/webtools/package.json @@ -5,20 +5,18 @@ "type": "module", "homepage": "https://github.com/jgwoolley/nf2t-web", "files": [ - "./dist", + "./out", "./public", "./scripts", "./src", - "./index.html", - "./tsconfig.json", - "./tsconfig.node.json", - "./vite.config.ts" + "./app", + "./next.config.mjs", + "./tsconfig.json" ], "scripts": { - "dev": "vite", - "build": "tsc && vite build", - "preview": "vite preview", - "fetch": "node fetch.js" + "dev": "next dev", + "build": "node ./scripts/generateStaticFiles.mjs && next build", + "start": "next start" }, "dependencies": { "@emotion/react": "^11.11.1", @@ -52,6 +50,7 @@ "@types/wicg-file-system-access": "^2023.10.5", "@vite-pwa/assets-generator": "^0.2.4", "@vitejs/plugin-react": "^4.3.4", + "next": "^14.2.31", "idb": "^8.0.0", "jsdom": "^24.1.1", "sharp": "^0.33.2", diff --git a/apps/webtools/scripts/generateStaticFiles.mjs b/apps/webtools/scripts/generateStaticFiles.mjs new file mode 100644 index 0000000..3a4f8c0 --- /dev/null +++ b/apps/webtools/scripts/generateStaticFiles.mjs @@ -0,0 +1,124 @@ +import { JSDOM } from 'jsdom'; +import { existsSync, mkdirSync, readdirSync, readFileSync, writeFileSync } from 'fs'; +import { open } from 'node:fs/promises'; +import { execSync } from 'child_process'; +import { readNars, WriteNarsSchema } from '@nf2t/nifitools-js'; + +const DOWNLOADS_PATH = './downloads'; +const ZIP_PATH = `${DOWNLOADS_PATH}/nifi.zip`; +const CACHE_PATH = `${DOWNLOADS_PATH}/cache`; +const NARS_PATH = './nars'; +const OUTPUT_PATH = './public'; +const BUILD_INFO_OUTPUT = `${OUTPUT_PATH}/buildinfo.json`; +const NARS_OUTPUT = `${OUTPUT_PATH}/nars.json`; + +function generateBuildinfo() { + const gitSha = execSync('git rev-parse HEAD').toString().trim(); + const gitShortSha = execSync('git rev-parse --short HEAD').toString().trim(); + const gitMessage = execSync('git log -1 --pretty=%B').toString().trim(); + const gitDate = execSync('git log -1 --date=iso-strict --pretty=%cd').toString().trim(); + const repository = process.env.GITHUB_REPOSITORY; + const base = repository ? repository.split('/')[1] : undefined; + + return { + base, + git: { + SHA: gitSha, + shortSHA: gitShortSha, + date: gitDate, + message: gitMessage, + }, + github: { + base, + GITHUB_JOB: process.env.GITHUB_JOB, + GITHUB_REPOSITORY: repository, + GITHUB_SHA: process.env.GITHUB_SHA, + GITHUB_REF: process.env.GITHUB_REF, + GITHUB_WORKFLOW: process.env.GITHUB_WORKFLOW, + GITHUB_ACTOR: process.env.GITHUB_ACTOR, + GITHUB_WORKSPACE: process.env.GITHUB_WORKSPACE, + }, + node: process.versions, + }; +} + +async function generateNarsNew() { + const DOMParser = new JSDOM().window.DOMParser; + + const narInfo = { + nars: [], + extensions: [], + attributes: [], + }; + + const files = readdirSync(NARS_PATH).map(async (x) => { + const fileHandle = await open(`${NARS_PATH}/${x}`); + const buffer = await fileHandle.readFile(); + await fileHandle.close(); + return new File([buffer], x); + }); + + await readNars({ + files: await Promise.all(files), + setCurrentProgress: () => null, + parseNar: async (nar) => { + narInfo.nars.push(nar); + }, + parseExtension: async (extension) => { + narInfo.extensions.push(extension); + }, + parseAttribute: async (attribute) => { + narInfo.attributes.push(attribute); + }, + DOMParser: new DOMParser(), + }); + + return narInfo; +} + +async function generateNars() { + if (existsSync(CACHE_PATH)) { + const content = readFileSync(CACHE_PATH, { encoding: 'utf8' }); + return WriteNarsSchema.parseAsync(JSON.parse(content)); + } + + try { + if (!existsSync(NARS_PATH)) { + mkdirSync(NARS_PATH); + if (!existsSync(DOWNLOADS_PATH)) { + mkdirSync(DOWNLOADS_PATH); + } + + if (!existsSync(ZIP_PATH)) { + execSync(`curl https://dlcdn.apache.org/nifi/1.28.1/nifi-1.28.1-bin.zip -o ${ZIP_PATH}`, { + stdio: 'inherit', + }); + } + + execSync(`unzip ${ZIP_PATH} '*/*.nar' -d ${DOWNLOADS_PATH}/`, { stdio: 'inherit' }); + execSync(`cp ${DOWNLOADS_PATH}/nifi-*.*.*/lib/*.nar ${NARS_PATH}`, { stdio: 'inherit' }); + } + + const narInfo = await generateNarsNew(); + writeFileSync(CACHE_PATH, JSON.stringify(narInfo)); + return narInfo; + } catch (error) { + console.warn('Unable to generate NAR metadata, continuing with empty values.', error); + return { + nars: [], + extensions: [], + attributes: [], + }; + } +} + +async function run() { + if (!existsSync(OUTPUT_PATH)) { + mkdirSync(OUTPUT_PATH); + } + + writeFileSync(BUILD_INFO_OUTPUT, JSON.stringify(generateBuildinfo())); + writeFileSync(NARS_OUTPUT, JSON.stringify(await generateNars())); +} + +run(); diff --git a/apps/webtools/src/Nf2tApp.tsx b/apps/webtools/src/Nf2tApp.tsx new file mode 100644 index 0000000..fa9311b --- /dev/null +++ b/apps/webtools/src/Nf2tApp.tsx @@ -0,0 +1,30 @@ +'use client'; + +import { + RouterProvider, + createHashHistory, + createRouter, +} from '@tanstack/react-router'; +import rootRoute from './routes/rootRoute'; +import { routeChildren } from './routes/routeDescriptions'; +import { notFoundRoute } from './routes/notFoundRoute'; + +const routeTree = rootRoute.addChildren(routeChildren); + +const history = createHashHistory(); + +const router = createRouter({ + history: history, + routeTree: routeTree, + notFoundRoute: notFoundRoute, +}); + +declare module '@tanstack/react-router' { + interface Register { + router: typeof router; + } +} + +export default function Nf2tApp() { + return ; +} diff --git a/apps/webtools/src/routes/info/buildInfo.lazy.tsx b/apps/webtools/src/routes/info/buildInfo.lazy.tsx index 75eaa6e..6a3dd02 100644 --- a/apps/webtools/src/routes/info/buildInfo.lazy.tsx +++ b/apps/webtools/src/routes/info/buildInfo.lazy.tsx @@ -68,22 +68,21 @@ export default function BuildProcess() { ) }, { - alt: "Run the ViteJS development server.", + alt: "Run the NextJS development server.", child: ( <> -

Run the ViteJS development server.

+

Run the NextJS development server.

  1. This command does the following:
    1. -
    2. Looks in "scripts" for "dev" package.json and runs the vite command as a child process.
    3. -
    4. The vite plugin looks for vite.config.ts, and runs that script.
    5. +
    6. Looks in "scripts" for "dev" package.json and runs the next dev command as a child process.
    7. +
    8. NextJS looks for next.config.mjs and applies the static export configuration.
      1. -
      2. Runs to get some build information, which will be writen to buildinfo.json, and read by the Web Site.
      3. -
      4. Runs the VitePWA Plugin which creates files needed for the Web Site to be run as a PWA.
      5. -
      6. Runs the react ViteJS plugin to create a ReactJS website.
      7. +
      8. Runs to generate buildinfo.json and nars.json before the static export.
      9. +
      10. Loads the NextJS app entrypoint from app/page.tsx and mounts the existing client-side router.
        1. -
        2. Locates the index.html file, and utilizes the referenced /src/main.tsx to create the website.
        3. +
        4. Uses a client-only component to keep all route processing in the browser.
    9. Runs as a website on your local computer. It will run in hot module replace mode, so any changes you make will immediately be deployed.
    10. @@ -93,13 +92,13 @@ export default function BuildProcess() { ) }, { - alt: "Build the ViteJS SPA.", + alt: "Build the NextJS static export.", child: ( <> -

      Build the ViteJS SPA.

      +

      Build the NextJS static export.

      1. -
      2. Does everything in the "development server step", except it builds a SPA. This will not create a developer server, just the files needed to deploy the site.
      3. +
      4. Does everything in the "development server step", except it creates a static export in the out directory for deployment.
      ) diff --git a/apps/webtools/tsconfig.json b/apps/webtools/tsconfig.json index a7fc6fb..5ec4951 100644 --- a/apps/webtools/tsconfig.json +++ b/apps/webtools/tsconfig.json @@ -2,24 +2,41 @@ "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], "module": "ESNext", "skipLibCheck": true, - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "resolveJsonModule": true, "isolatedModules": true, "noEmit": true, - "jsx": "react-jsx", - + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "allowJs": true, + "esModuleInterop": true }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] + "include": [ + "next-env.d.ts", + "src", + "app", + ".next/types/**/*.ts" + ], + "exclude": [ + "node_modules" + ] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c85b21..839e80f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,19 +12,19 @@ importers: dependencies: '@emotion/react': specifier: ^11.11.1 - version: 11.13.3(@types/react@18.3.5)(react@18.3.1) + version: 11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) '@emotion/styled': specifier: ^11.11.0 - version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) '@hookform/resolvers': specifier: ^3.3.2 version: 3.9.0(react-hook-form@7.53.0(react@18.3.1)) '@mui/icons-material': specifier: ^5.14.15 - version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) '@mui/material': specifier: ^5.14.15 - version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nf2t/flowfiletools-js': specifier: workspace:* version: link:../../libs/flowfiletools-js @@ -97,13 +97,16 @@ importers: version: 0.2.6 '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0)) + version: 4.3.4(supports-color@8.1.1)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0)) idb: specifier: ^8.0.0 version: 8.0.0 jsdom: specifier: ^24.1.1 - version: 24.1.3 + version: 24.1.3(supports-color@8.1.1) + next: + specifier: ^14.2.31 + version: 14.2.35(@babel/core@7.26.7(supports-color@8.1.1))(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) sharp: specifier: ^0.33.2 version: 0.33.5 @@ -118,7 +121,7 @@ importers: version: 0.2.0 vite-plugin-pwa: specifier: ^0.21.1 - version: 0.21.1(@vite-pwa/assets-generator@0.2.6)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0) + version: 0.21.1(@vite-pwa/assets-generator@0.2.6)(supports-color@8.1.1)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))(workbox-build@7.4.1(@types/babel__core@7.20.5)(supports-color@8.1.1))(workbox-window@7.4.1) libs/flowfiletools-js: devDependencies: @@ -127,7 +130,7 @@ importers: version: 22.5.4 tsup: specifier: ^8.2.4 - version: 8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(tsx@4.19.1)(typescript@5.6.2) + version: 8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(supports-color@8.1.1)(tsx@4.19.1)(typescript@5.6.2) tsx: specifier: ^4.19.1 version: 4.19.1 @@ -152,7 +155,7 @@ importers: version: 22.5.4 tsup: specifier: ^8.2.4 - version: 8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(tsx@4.19.1)(typescript@5.6.2) + version: 8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(supports-color@8.1.1)(tsx@4.19.1)(typescript@5.6.2) tsx: specifier: ^4.19.1 version: 4.19.1 @@ -1163,67 +1166,79 @@ packages: resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} cpu: [arm64] os: [linux] + libc: [glibc] '@img/sharp-libvips-linux-arm@1.0.5': resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} cpu: [arm] os: [linux] + libc: [glibc] '@img/sharp-libvips-linux-s390x@1.0.4': resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} cpu: [s390x] os: [linux] + libc: [glibc] '@img/sharp-libvips-linux-x64@1.0.4': resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} cpu: [x64] os: [linux] + libc: [glibc] '@img/sharp-libvips-linuxmusl-arm64@1.0.4': resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} cpu: [arm64] os: [linux] + libc: [musl] '@img/sharp-libvips-linuxmusl-x64@1.0.4': resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} cpu: [x64] os: [linux] + libc: [musl] '@img/sharp-linux-arm64@0.33.5': resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] + libc: [glibc] '@img/sharp-linux-arm@0.33.5': resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] + libc: [glibc] '@img/sharp-linux-s390x@0.33.5': resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] + libc: [glibc] '@img/sharp-linux-x64@0.33.5': resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] + libc: [glibc] '@img/sharp-linuxmusl-arm64@0.33.5': resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] + libc: [musl] '@img/sharp-linuxmusl-x64@0.33.5': resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] + libc: [musl] '@img/sharp-wasm32@0.33.5': resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} @@ -1246,6 +1261,10 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} + '@isaacs/cliui@9.0.0': + resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==} + engines: {node: '>=18'} + '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} @@ -1264,6 +1283,9 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} @@ -1368,6 +1390,74 @@ packages: '@types/react': optional: true + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + resolution: {integrity: sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==} + engines: {node: ^22.20 || ^24.12 || >=25} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@next/env@14.2.35': + resolution: {integrity: sha512-DuhvCtj4t9Gwrx80dmz2F4t/zKQ4ktN8WrMwOuVzkJfBilwAwGr6v16M5eI8yCuZ63H9TTuEU09Iu2HqkzFPVQ==} + + '@next/swc-darwin-arm64@14.2.33': + resolution: {integrity: sha512-HqYnb6pxlsshoSTubdXKu15g3iivcbsMXg4bYpjL2iS/V6aQot+iyF4BUc2qA/J/n55YtvE4PHMKWBKGCF/+wA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@14.2.33': + resolution: {integrity: sha512-8HGBeAE5rX3jzKvF593XTTFg3gxeU4f+UWnswa6JPhzaR6+zblO5+fjltJWIZc4aUalqTclvN2QtTC37LxvZAA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@14.2.33': + resolution: {integrity: sha512-JXMBka6lNNmqbkvcTtaX8Gu5by9547bukHQvPoLe9VRBx1gHwzf5tdt4AaezW85HAB3pikcvyqBToRTDA4DeLw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@next/swc-linux-arm64-musl@14.2.33': + resolution: {integrity: sha512-Bm+QulsAItD/x6Ih8wGIMfRJy4G73tu1HJsrccPW6AfqdZd0Sfm5Imhgkgq2+kly065rYMnCOxTBvmvFY1BKfg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@next/swc-linux-x64-gnu@14.2.33': + resolution: {integrity: sha512-FnFn+ZBgsVMbGDsTqo8zsnRzydvsGV8vfiWwUo1LD8FTmPTdV+otGSWKc4LJec0oSexFnCYVO4hX8P8qQKaSlg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@next/swc-linux-x64-musl@14.2.33': + resolution: {integrity: sha512-345tsIWMzoXaQndUTDv1qypDRiebFxGYx9pYkhwY4hBRaOLt8UGfiWKr9FSSHs25dFIf8ZqIFaPdy5MljdoawA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@next/swc-win32-arm64-msvc@14.2.33': + resolution: {integrity: sha512-nscpt0G6UCTkrT2ppnJnFsYbPDQwmum4GNXYTeoTIdsmMydSKFz9Iny2jpaRupTb+Wl298+Rh82WKzt9LCcqSQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-ia32-msvc@14.2.33': + resolution: {integrity: sha512-pc9LpGNKhJ0dXQhZ5QMmYxtARwwmWLpeocFmVG5Z0DzWq5Uf0izcI8tLc+qOpqxO1PWqZ5A7J1blrUIKrIFc7Q==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@next/swc-win32-x64-msvc@14.2.33': + resolution: {integrity: sha512-nOjfZMy8B94MdisuzZo9/57xuFVLHJaDj5e/xrduJp9CV2/HrfxTRH2fbyLe+K9QT41WBLUd4iXX3R7jBp0EUg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1393,19 +1483,21 @@ packages: '@popperjs/core@2.11.8': resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@rollup/plugin-babel@5.3.1': - resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} - engines: {node: '>= 10.0.0'} + '@rollup/plugin-babel@6.1.0': + resolution: {integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA==} + engines: {node: '>=14.0.0'} peerDependencies: '@babel/core': ^7.0.0 '@types/babel__core': ^7.1.9 - rollup: ^1.20.0||^2.0.0 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: '@types/babel__core': optional: true + rollup: + optional: true - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + '@rollup/plugin-node-resolve@16.0.3': + resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -1413,25 +1505,23 @@ packages: rollup: optional: true - '@rollup/plugin-replace@2.4.2': - resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} - peerDependencies: - rollup: ^1.20.0 || ^2.0.0 - - '@rollup/plugin-terser@0.4.4': - resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} + '@rollup/plugin-replace@6.0.3': + resolution: {integrity: sha512-J4RZarRvQAm5IF0/LwUUg+obsm+xZhYnbMXmXROyoSE1ATJe3oXSb9L5MMppdxP2ylNSjv6zFBwKYjcKMucVfA==} engines: {node: '>=14.0.0'} peerDependencies: - rollup: ^2.0.0||^3.0.0||^4.0.0 + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/pluginutils@3.1.0': - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} + '@rollup/plugin-terser@1.0.0': + resolution: {integrity: sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==} + engines: {node: '>=20.0.0'} peerDependencies: - rollup: ^1.20.0||^2.0.0 + rollup: ^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true '@rollup/pluginutils@5.1.0': resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} @@ -1447,81 +1537,228 @@ packages: cpu: [arm] os: [android] + '@rollup/rollup-android-arm-eabi@4.62.4': + resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==} + cpu: [arm] + os: [android] + '@rollup/rollup-android-arm64@4.21.2': resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==} cpu: [arm64] os: [android] + '@rollup/rollup-android-arm64@4.62.4': + resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==} + cpu: [arm64] + os: [android] + '@rollup/rollup-darwin-arm64@4.21.2': resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==} cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.62.4': + resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.21.2': resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==} cpu: [x64] os: [darwin] + '@rollup/rollup-darwin-x64@4.62.4': + resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.62.4': + resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.62.4': + resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==} + cpu: [x64] + os: [freebsd] + '@rollup/rollup-linux-arm-gnueabihf@4.21.2': resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==} cpu: [arm] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==} + cpu: [arm] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.21.2': resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==} cpu: [arm] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm-musleabihf@4.62.4': + resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==} + cpu: [arm] + os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.21.2': resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==} cpu: [arm64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm64-gnu@4.62.4': + resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==} + cpu: [arm64] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.21.2': resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==} cpu: [arm64] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm64-musl@4.62.4': + resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-loong64-gnu@4.62.4': + resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-musl@4.62.4': + resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==} + cpu: [loong64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==} cpu: [ppc64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-gnu@4.62.4': + resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-musl@4.62.4': + resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==} + cpu: [ppc64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-riscv64-gnu@4.21.2': resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==} cpu: [riscv64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-gnu@4.62.4': + resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-musl@4.62.4': + resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==} + cpu: [riscv64] + os: [linux] + libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.21.2': resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==} cpu: [s390x] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-s390x-gnu@4.62.4': + resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==} + cpu: [s390x] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.21.2': resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==} cpu: [x64] os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-gnu@4.62.4': + resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==} + cpu: [x64] + os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.21.2': resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==} cpu: [x64] os: [linux] + libc: [musl] + + '@rollup/rollup-linux-x64-musl@4.62.4': + resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.62.4': + resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.62.4': + resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==} + cpu: [arm64] + os: [openharmony] '@rollup/rollup-win32-arm64-msvc@4.21.2': resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==} cpu: [arm64] os: [win32] + '@rollup/rollup-win32-arm64-msvc@4.62.4': + resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==} + cpu: [arm64] + os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.21.2': resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==} cpu: [ia32] os: [win32] + '@rollup/rollup-win32-ia32-msvc@4.62.4': + resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.62.4': + resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==} + cpu: [x64] + os: [win32] + '@rollup/rollup-win32-x64-msvc@4.21.2': resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==} cpu: [x64] os: [win32] + '@rollup/rollup-win32-x64-msvc@4.62.4': + resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==} + cpu: [x64] + os: [win32] + '@rushstack/node-core-library@5.7.0': resolution: {integrity: sha512-Ff9Cz/YlWu9ce4dmqNBZpA45AEya04XaBFIjV7xTVeEf+y/kTjEasmozqFELXlNG4ROdevss75JrrZ5WgufDkQ==} peerDependencies: @@ -1544,8 +1781,11 @@ packages: '@rushstack/ts-command-line@4.22.6': resolution: {integrity: sha512-QSRqHT/IfoC5nk9zn6+fgyqOPXHME0BfchII9EUPR19pocsNp/xSbeBCbD3PIR2Lg+Q5qk7OFqk1VhWPMdKHJg==} - '@surma/rollup-plugin-off-main-thread@2.2.3': - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} '@tanstack/history@1.57.6': resolution: {integrity: sha512-ppAJbnUaHdHmccVmplcd1ivX4GMPHxhStSquuuz0TSAEPEpz0iOVBur4iKfvIuMKm24c40nhvaEwZbKGVfbrGg==} @@ -1616,6 +1856,10 @@ packages: resolution: {integrity: sha512-fBUj+lbSaw+VxoBN4J/WFE7dTx8x4XCTRAQvbiIyPJ8MY1KRVkdZV6cbLvg7MeDP6CxUcj6XNvWU6h0ic1Ipyg==} engines: {node: '>=12'} + '@trickfilm400/rollup-plugin-off-main-thread@3.0.0-pre1': + resolution: {integrity: sha512-/67zpWDBLV+oYAEL682s1ktXL0HgqX76f6gaVGkGnVZlBbm1zd0v4Bz8MFF2GGhoX9rvfq3KSQHubFHwa6w6/Q==} + engines: {node: '>=12'} + '@types/argparse@1.0.38': resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} @@ -1631,15 +1875,15 @@ packages: '@types/babel__traverse@7.20.6': resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} - '@types/estree@0.0.39': - resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} - '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} '@types/estree@1.0.8': resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} + '@types/jsdom@21.1.7': resolution: {integrity: sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==} @@ -1815,6 +2059,10 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@4.0.4: + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} + bare-events@2.4.2: resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} @@ -1846,6 +2094,10 @@ packages: brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@5.0.9: + resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==} + engines: {node: 20 || >=22} + braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} @@ -1861,16 +2113,16 @@ packages: buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - bundle-require@5.0.0: resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: esbuild: '>=0.18' + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -1909,6 +2161,9 @@ packages: chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + clsx@2.1.1: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} @@ -1978,6 +2233,10 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} @@ -2153,9 +2412,6 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - estree-walker@1.0.1: - resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} - estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -2163,6 +2419,10 @@ packages: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} + eta@4.6.0: + resolution: {integrity: sha512-lW6is4T1NFOYnmqGZIfvixqj7A7sSvScF+DN8EK6K58xI5MZ5UvYe0GjopxOXQtZvUn4eDdVuZ8XSoYWTMEKwA==} + engines: {node: '>=20'} + execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} @@ -2216,6 +2476,10 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -2231,9 +2495,6 @@ packages: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} - fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -2284,11 +2545,14 @@ packages: glob@10.4.5: resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me hasBin: true - glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + glob@11.1.0: + resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==} + engines: {node: 20 || >=22} + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me + hasBin: true globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} @@ -2394,10 +2658,6 @@ packages: resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} engines: {node: '>=8'} - inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} - deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. - inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -2434,10 +2694,6 @@ packages: resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} engines: {node: '>= 0.4'} - is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -2556,6 +2812,10 @@ packages: jackspeak@3.4.3: resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + jackspeak@4.2.3: + resolution: {integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==} + engines: {node: 20 || >=22} + jake@10.9.2: resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==} engines: {node: '>=10'} @@ -2672,24 +2932,28 @@ packages: engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + libc: [glibc] lightningcss-linux-arm64-musl@1.30.1: resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] + libc: [musl] lightningcss-linux-x64-gnu@1.30.1: resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + libc: [glibc] lightningcss-linux-x64-musl@1.30.1: resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] + libc: [musl] lightningcss-win32-arm64-msvc@1.30.1: resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} @@ -2734,6 +2998,10 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@11.5.2: + resolution: {integrity: sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==} + engines: {node: 20 || >=22} + lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} @@ -2741,8 +3009,8 @@ packages: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - magic-string@0.25.9: - resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} math-intrinsics@1.1.0: resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} @@ -2775,6 +3043,10 @@ packages: resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} engines: {node: '>=10'} + minimatch@10.2.6: + resolution: {integrity: sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==} + engines: {node: 18 || 20 || >=22} + minimatch@3.0.8: resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} @@ -2813,6 +3085,24 @@ packages: napi-build-utils@1.0.2: resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + next@14.2.35: + resolution: {integrity: sha512-KhYd2Hjt/O1/1aZVX3dCwGXM1QmOV4eNM2UTacK5gipDdPN/oHHK/4oVGy7X8GMfPMsUTUEmGlsy0EY1YGAkig==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + node-abi@3.67.0: resolution: {integrity: sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==} engines: {node: '>=10'} @@ -2881,10 +3171,6 @@ packages: parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} - path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} @@ -2896,6 +3182,10 @@ packages: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} + path-scurry@2.0.2: + resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} + engines: {node: 18 || 20 || >=22} + path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} @@ -2943,6 +3233,10 @@ packages: yaml: optional: true + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + postcss@8.4.45: resolution: {integrity: sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==} engines: {node: ^10 || ^12 || >=14} @@ -2950,6 +3244,7 @@ packages: prebuild-install@7.1.2: resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} engines: {node: '>=10'} + deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available. hasBin: true prettier@3.3.3: @@ -2990,9 +3285,6 @@ packages: queue-tick@1.0.1: resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} - randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} - rc@1.2.8: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true @@ -3094,11 +3386,6 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} - hasBin: true - rollup@3.29.4: resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} @@ -3109,6 +3396,11 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rollup@4.62.4: + resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + rrweb-cssom@0.7.1: resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} @@ -3157,8 +3449,9 @@ packages: engines: {node: '>=10'} hasBin: true - serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + serialize-javascript@7.1.0: + resolution: {integrity: sha512-RNEqWOyhhUQYN9V1GfHwu9AR/g+NTciH6Z5u3/no6X3/w+04J2lVDL+svFQVXgXrEGBMG2puMVN3gq2SNGuTGw==} + engines: {node: '>=20.0.0'} set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} @@ -3251,10 +3544,7 @@ packages: source-map@0.8.0-beta.0: resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} engines: {node: '>= 8'} - - sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead + deprecated: The work that was done in this beta branch won't be included in future versions sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -3263,6 +3553,10 @@ packages: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + streamx@2.20.0: resolution: {integrity: sha512-ZGd1LhDeGFucr1CUCTBOS58ZhEendd0ttpGT3usTvosS4ntIwKN9LJFp+OeCSprsCPL14BXVRZlHGRY1V9PVzQ==} @@ -3328,6 +3622,19 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + styled-jsx@5.1.1: + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + stylis@4.2.0: resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} @@ -3616,6 +3923,7 @@ packages: whatwg-encoding@3.1.1: resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} engines: {node: '>=18'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation whatwg-mimetype@4.0.0: resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} @@ -3649,54 +3957,54 @@ packages: engines: {node: '>= 8'} hasBin: true - workbox-background-sync@7.1.0: - resolution: {integrity: sha512-rMbgrzueVWDFcEq1610YyDW71z0oAXLfdRHRQcKw4SGihkfOK0JUEvqWHFwA6rJ+6TClnMIn7KQI5PNN1XQXwQ==} + workbox-background-sync@7.4.1: + resolution: {integrity: sha512-HhT7KE8tOWDm02wRNshXUnUPofMlhenF2DBdUnDPOubhizzPeItkYTmAB6td1Z2cjYPa98vzEiPLEuzn5hN66g==} - workbox-broadcast-update@7.1.0: - resolution: {integrity: sha512-O36hIfhjej/c5ar95pO67k1GQw0/bw5tKP7CERNgK+JdxBANQhDmIuOXZTNvwb2IHBx9hj2kxvcDyRIh5nzOgQ==} + workbox-broadcast-update@7.4.1: + resolution: {integrity: sha512-uAlgslKLvbQY+suirIdnBCSYrcgBhjp81Nj4l1lj/Jmj0MJO2CJERnCJjT0GFVwmReV0N+zs78K6gqd5gr9/+A==} - workbox-build@7.1.1: - resolution: {integrity: sha512-WdkVdC70VMpf5NBCtNbiwdSZeKVuhTEd5PV3mAwpTQCGAB5XbOny1P9egEgNdetv4srAMmMKjvBk4RD58LpooA==} - engines: {node: '>=16.0.0'} + workbox-build@7.4.1: + resolution: {integrity: sha512-SDhxIvEAde9Gy/5w4Yo1Jh/M49Z0qE3q0oteyE8zGq0DScxFqVBcCtIXFuLtmtxRQZCMbf0prco4VyEu3KBQuw==} + engines: {node: '>=20.0.0'} - workbox-cacheable-response@7.1.0: - resolution: {integrity: sha512-iwsLBll8Hvua3xCuBB9h92+/e0wdsmSVgR2ZlvcfjepZWwhd3osumQB3x9o7flj+FehtWM2VHbZn8UJeBXXo6Q==} + workbox-cacheable-response@7.4.1: + resolution: {integrity: sha512-8xaFoJdDc2OjrlbbL3gEeBO1WKcMwRqwLRupgqahYXu75yXajPLuwrbXMrIGZuWYXrQwk0xDjOxZ/ujCy/oJYw==} - workbox-core@7.1.0: - resolution: {integrity: sha512-5KB4KOY8rtL31nEF7BfvU7FMzKT4B5TkbYa2tzkS+Peqj0gayMT9SytSFtNzlrvMaWgv6y/yvP9C0IbpFjV30Q==} + workbox-core@7.4.1: + resolution: {integrity: sha512-DT+vu46eh/2vRsSHTY4Xmc32Z1rr9PRlQUXr1Dx30ZuXRWwOsvZgGgcwxcasubQLQmbTNYZjv44LkBAQ4tT5tQ==} - workbox-expiration@7.1.0: - resolution: {integrity: sha512-m5DcMY+A63rJlPTbbBNtpJ20i3enkyOtSgYfv/l8h+D6YbbNiA0zKEkCUaMsdDlxggla1oOfRkyqTvl5Ni5KQQ==} + workbox-expiration@7.4.1: + resolution: {integrity: sha512-lRKUF7b+OGbeXkQk1s6MHXOa3d7Xxf7Of31W6c6hCfipfIyrtdWZ89stq21AHZMaoG7VNFoHply4Ox+rU31TWg==} - workbox-google-analytics@7.1.0: - resolution: {integrity: sha512-FvE53kBQHfVTcZyczeBVRexhh7JTkyQ8HAvbVY6mXd2n2A7Oyz/9fIwnY406ZcDhvE4NFfKGjW56N4gBiqkrew==} + workbox-google-analytics@7.4.1: + resolution: {integrity: sha512-Mks1JwLEt++ZAkF6sS1OpSh9RtAMIsiDgRpK+codiHGIPXeaUOgi4cPc3GFadUl8V5QPeypEk8Oxgl3HlwVzHw==} - workbox-navigation-preload@7.1.0: - resolution: {integrity: sha512-4wyAbo0vNI/X0uWNJhCMKxnPanNyhybsReMGN9QUpaePLTiDpKxPqFxl4oUmBNddPwIXug01eTSLVIFXimRG/A==} + workbox-navigation-preload@7.4.1: + resolution: {integrity: sha512-C4KVsjPcYKJOhr631AxR9XoG2rLF3QiTk5aMv36MXOjtWvm8axwNFAtKUPGsWUwLXXAMgYM1En7fsvndaXeXRQ==} - workbox-precaching@7.1.0: - resolution: {integrity: sha512-LyxzQts+UEpgtmfnolo0hHdNjoB7EoRWcF7EDslt+lQGd0lW4iTvvSe3v5JiIckQSB5KTW5xiCqjFviRKPj1zA==} + workbox-precaching@7.4.1: + resolution: {integrity: sha512-cdr/9qByww7yzEp7zg/qI4ukUrrNjQLgN+ONQRpjy/VqGQXwkgHwr00KksGJK8v0VifwDXBb8a4cWNZH71jn3Q==} - workbox-range-requests@7.1.0: - resolution: {integrity: sha512-m7+O4EHolNs5yb/79CrnwPR/g/PRzMFYEdo01LqwixVnc/sbzNSvKz0d04OE3aMRel1CwAAZQheRsqGDwATgPQ==} + workbox-range-requests@7.4.1: + resolution: {integrity: sha512-7i2oxAUE82gHdAJBCAQ04JzNOdRPqzuOzGfoUyJpFSmeqBNYGPrAH8GPoPjUQTfp+NycwrD2H68VtuF8qxv0vQ==} - workbox-recipes@7.1.0: - resolution: {integrity: sha512-NRrk4ycFN9BHXJB6WrKiRX3W3w75YNrNrzSX9cEZgFB5ubeGoO8s/SDmOYVrFYp9HMw6sh1Pm3eAY/1gVS8YLg==} + workbox-recipes@7.4.1: + resolution: {integrity: sha512-gnbVfmV4/TtmQaM4x9AtuXhcdstJsep3XMVeztOrQVPT+R6+6DeBjGTCQ7fFCXm+4GEHUA5VEBTyi5+4gWGeog==} - workbox-routing@7.1.0: - resolution: {integrity: sha512-oOYk+kLriUY2QyHkIilxUlVcFqwduLJB7oRZIENbqPGeBP/3TWHYNNdmGNhz1dvKuw7aqvJ7CQxn27/jprlTdg==} + workbox-routing@7.4.1: + resolution: {integrity: sha512-yubJGErZOusuidAenaL5ypfhQOa7urxP/f8E0ws7FPb4039RiWXUWBAyUkmUoOL/BcQGen3h0J8872d51IYxtA==} - workbox-strategies@7.1.0: - resolution: {integrity: sha512-/UracPiGhUNehGjRm/tLUQ+9PtWmCbRufWtV0tNrALuf+HZ4F7cmObSEK+E4/Bx1p8Syx2tM+pkIrvtyetdlew==} + workbox-strategies@7.4.1: + resolution: {integrity: sha512-GZxpaw9NbmOelj7667uZ2kpk5BFpOGbO4X0qjwh5ls8XQ8C+Lha5LQchTiUzsTFSS+NlUpftYAyOVXvQUrcqOQ==} - workbox-streams@7.1.0: - resolution: {integrity: sha512-WyHAVxRXBMfysM8ORwiZnI98wvGWTVAq/lOyBjf00pXFvG0mNaVz4Ji+u+fKa/mf1i2SnTfikoYKto4ihHeS6w==} + workbox-streams@7.4.1: + resolution: {integrity: sha512-HWWtraKUbJknd9kgqGcpQ3G114HOPYvqs8HaJMDs2ebLNAimDkVDaWfAXE6Ybl+m8U6KsCE6pWyLYuigWmnAXw==} - workbox-sw@7.1.0: - resolution: {integrity: sha512-Hml/9+/njUXBglv3dtZ9WBKHI235AQJyLBV1G7EFmh4/mUdSQuXui80RtjDeVRrXnm/6QWgRUEHG3/YBVbxtsA==} + workbox-sw@7.4.1: + resolution: {integrity: sha512-fez5f2DUlDJWTFYkCWQpY10N8gtztd849NswCbVFk0QlcSM4HT5A8x4g4ii650yem4I8tHY0R7JZahwp3ltIPw==} - workbox-window@7.1.0: - resolution: {integrity: sha512-ZHeROyqR+AS5UPzholQRDttLFqGMwP0Np8MKWAdyxsDETxq3qOAyXvqessc3GniohG6e0mAqSQyKOHmT8zPF7g==} + workbox-window@7.4.1: + resolution: {integrity: sha512-notZDH2u8VXaqyuD7xaqIfEFi6SRM4SUSd7ewe9PDsVqADuepxX2ZMY3uvuZGxzY5ZOsGC/vD3A/3smFtJt4/A==} wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} @@ -3763,30 +4071,30 @@ snapshots: '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/code-frame@7.26.2': dependencies: '@babel/helper-validator-identifier': 7.25.9 js-tokens: 4.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/compat-data@7.26.5': {} - '@babel/core@7.26.7': + '@babel/core@7.26.7(supports-color@8.1.1)': dependencies: '@ampproject/remapping': 2.3.0 '@babel/code-frame': 7.26.2 '@babel/generator': 7.26.5 '@babel/helper-compilation-targets': 7.26.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helpers': 7.26.7 '@babel/parser': 7.26.7 '@babel/template': 7.25.9 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 convert-source-map: 2.0.0 - debug: 4.3.7 + debug: 4.4.1(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -3812,9 +4120,9 @@ snapshots: dependencies: '@babel/types': 7.26.7 - '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': + '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color @@ -3827,64 +4135,64 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.7)': + '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/helper-member-expression-to-functions': 7.24.8(supports-color@8.1.1) '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/traverse': 7.26.7 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7(supports-color@8.1.1) + '@babel/traverse': 7.26.7(supports-color@8.1.1) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.26.7)': + '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-annotate-as-pure': 7.24.7 regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.7)': + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-plugin-utils': 7.26.5 - debug: 4.4.1 + debug: 4.4.1(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-member-expression-to-functions@7.24.8': + '@babel/helper-member-expression-to-functions@7.24.8(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-imports@7.24.7': + '@babel/helper-module-imports@7.24.7(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.25.6 + '@babel/traverse': 7.25.6(supports-color@8.1.1) '@babel/types': 7.25.6 transitivePeerDependencies: - supports-color - '@babel/helper-module-imports@7.25.9': + '@babel/helper-module-imports@7.25.9(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7)': + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-imports': 7.25.9 + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-imports': 7.25.9(supports-color@8.1.1) '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -3894,34 +4202,34 @@ snapshots: '@babel/helper-plugin-utils@7.26.5': {} - '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.26.7)': + '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-wrap-function': 7.25.0 - '@babel/traverse': 7.26.7 + '@babel/helper-wrap-function': 7.25.0(supports-color@8.1.1) + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.7)': + '@babel/helper-replace-supers@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-member-expression-to-functions': 7.24.8(supports-color@8.1.1) '@babel/helper-optimise-call-expression': 7.24.7 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/helper-simple-access@7.24.7': + '@babel/helper-simple-access@7.24.7(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': + '@babel/helper-skip-transparent-expression-wrappers@7.24.7(supports-color@8.1.1)': dependencies: - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color @@ -3936,10 +4244,10 @@ snapshots: '@babel/helper-validator-option@7.25.9': {} - '@babel/helper-wrap-function@7.25.0': + '@babel/helper-wrap-function@7.25.0(supports-color@8.1.1)': dependencies: '@babel/template': 7.25.9 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) '@babel/types': 7.26.7 transitivePeerDependencies: - supports-color @@ -3954,7 +4262,7 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/parser@7.25.6': dependencies: @@ -3964,567 +4272,567 @@ snapshots: dependencies: '@babel/types': 7.26.7 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.26.7)': + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7(supports-color@8.1.1) + '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)': + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.7)': + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.7)': + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.7)': + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.26.7)': + '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.26.7)': + '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.7)': + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.7)': + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.7)': + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.7)': + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.7)': + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.7)': + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.7)': + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.26.7)': + '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.7) - '@babel/traverse': 7.26.7 + '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-imports': 7.25.9 + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-imports': 7.25.9(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.7) + '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.26.7)': + '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.7) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.7(supports-color@8.1.1)) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.25.4(@babel/core@7.26.7)': + '@babel/plugin-transform-classes@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7) - '@babel/traverse': 7.26.7 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/traverse': 7.26.7(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 '@babel/template': 7.25.9 - '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.26.7)': + '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.7) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.7) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.26.7)': + '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-plugin-utils': 7.26.5 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.7) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-literals@7.25.2(@babel/core@7.26.7)': + '@babel/plugin-transform-literals@7.25.2(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.7) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.7)': + '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-simple-access': 7.24.7 + '@babel/helper-simple-access': 7.24.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.26.7)': + '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.7 + '@babel/traverse': 7.26.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.7) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.7) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.7) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7) + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.7) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) - '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.26.7)': + '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.7) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7(supports-color@8.1.1) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.26.7)': + '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-annotate-as-pure': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7) + '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.7) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.7(supports-color@8.1.1)) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.7)': + '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.7)': + '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-spread@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.26.7)': + '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.26.7)': + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.26.7)': + '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) '@babel/helper-plugin-utils': 7.26.5 - '@babel/preset-env@7.25.4(@babel/core@7.26.7)': + '@babel/preset-env@7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1)': dependencies: '@babel/compat-data': 7.26.5 - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-compilation-targets': 7.26.5 '@babel/helper-plugin-utils': 7.26.5 '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.26.7) - '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.7) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.7) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.26.7) - '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.26.7) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.7) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.7) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.7) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.7) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.7) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.7) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.26.7) - '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.26.7) - '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.26.7) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.26.7) - '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.26.7) - '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.26.7) - '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.7) - '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.26.7) - '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.7) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.26.7) - '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.26.7) - '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.26.7) - '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.26.7) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.7) - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.7) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.7) + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.7(supports-color@8.1.1)) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) core-js-compat: 3.38.1 semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.7)': + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.7(supports-color@8.1.1))': dependencies: - '@babel/core': 7.26.7 + '@babel/core': 7.26.7(supports-color@8.1.1) '@babel/helper-plugin-utils': 7.26.5 '@babel/types': 7.26.7 esutils: 2.0.3 @@ -4547,26 +4855,26 @@ snapshots: '@babel/parser': 7.26.7 '@babel/types': 7.26.7 - '@babel/traverse@7.25.6': + '@babel/traverse@7.25.6(supports-color@8.1.1)': 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.6 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/traverse@7.26.7': + '@babel/traverse@7.26.7(supports-color@8.1.1)': dependencies: '@babel/code-frame': 7.26.2 '@babel/generator': 7.26.5 '@babel/parser': 7.26.7 '@babel/template': 7.25.9 '@babel/types': 7.26.7 - debug: 4.3.7 + debug: 4.4.1(supports-color@8.1.1) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -4589,9 +4897,9 @@ snapshots: tslib: 2.7.0 optional: true - '@emotion/babel-plugin@11.12.0': + '@emotion/babel-plugin@11.12.0(supports-color@8.1.1)': dependencies: - '@babel/helper-module-imports': 7.24.7 + '@babel/helper-module-imports': 7.24.7(supports-color@8.1.1) '@babel/runtime': 7.25.6 '@emotion/hash': 0.9.2 '@emotion/memoize': 0.9.0 @@ -4621,10 +4929,10 @@ snapshots: '@emotion/memoize@0.9.0': {} - '@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)': + '@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1)': dependencies: '@babel/runtime': 7.25.6 - '@emotion/babel-plugin': 11.12.0 + '@emotion/babel-plugin': 11.12.0(supports-color@8.1.1) '@emotion/cache': 11.13.1 '@emotion/serialize': 1.3.1 '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1) @@ -4647,12 +4955,12 @@ snapshots: '@emotion/sheet@1.4.0': {} - '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1)': dependencies: '@babel/runtime': 7.25.6 - '@emotion/babel-plugin': 11.12.0 + '@emotion/babel-plugin': 11.12.0(supports-color@8.1.1) '@emotion/is-prop-valid': 1.3.0 - '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) '@emotion/serialize': 1.3.1 '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1) '@emotion/utils': 1.4.0 @@ -4898,6 +5206,8 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + '@isaacs/cliui@9.0.0': {} + '@jridgewell/gen-mapping@0.3.5': dependencies: '@jridgewell/set-array': 1.2.1 @@ -4915,6 +5225,8 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 @@ -4961,19 +5273,19 @@ snapshots: '@mui/core-downloads-tracker@5.16.7': {} - '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 - '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 optionalDependencies: '@types/react': 18.3.5 - '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/core-downloads-tracker': 5.16.7 - '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1) '@mui/types': 7.2.16(@types/react@18.3.5) '@mui/utils': 5.16.6(@types/react@18.3.5)(react@18.3.1) '@popperjs/core': 2.11.8 @@ -4986,8 +5298,8 @@ snapshots: react-is: 18.3.1 react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) '@types/react': 18.3.5 '@mui/private-theming@5.16.6(@types/react@18.3.5)(react@18.3.1)': @@ -4999,7 +5311,7 @@ snapshots: optionalDependencies: '@types/react': 18.3.5 - '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(react@18.3.1)': + '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@emotion/cache': 11.13.1 @@ -5007,14 +5319,14 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) - '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1)': + '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)': dependencies: '@babel/runtime': 7.25.6 '@mui/private-theming': 5.16.6(@types/react@18.3.5)(react@18.3.1) - '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1))(react@18.3.1) + '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(react@18.3.1) '@mui/types': 7.2.16(@types/react@18.3.5) '@mui/utils': 5.16.6(@types/react@18.3.5)(react@18.3.1) clsx: 2.1.1 @@ -5022,8 +5334,8 @@ snapshots: prop-types: 15.8.1 react: 18.3.1 optionalDependencies: - '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1) - '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1))(@types/react@18.3.5)(react@18.3.1) + '@emotion/react': 11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1))(@types/react@18.3.5)(react@18.3.1)(supports-color@8.1.1) '@types/react': 18.3.5 '@mui/types@7.2.16(@types/react@18.3.5)': @@ -5042,6 +5354,38 @@ snapshots: optionalDependencies: '@types/react': 18.3.5 + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + optional: true + + '@next/env@14.2.35': {} + + '@next/swc-darwin-arm64@14.2.33': + optional: true + + '@next/swc-darwin-x64@14.2.33': + optional: true + + '@next/swc-linux-arm64-gnu@14.2.33': + optional: true + + '@next/swc-linux-arm64-musl@14.2.33': + optional: true + + '@next/swc-linux-x64-gnu@14.2.33': + optional: true + + '@next/swc-linux-x64-musl@14.2.33': + optional: true + + '@next/swc-win32-arm64-msvc@14.2.33': + optional: true + + '@next/swc-win32-ia32-msvc@14.2.33': + optional: true + + '@next/swc-win32-x64-msvc@14.2.33': + optional: true + '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -5067,105 +5411,173 @@ snapshots: '@popperjs/core@2.11.8': {} - '@rollup/plugin-babel@5.3.1(@babel/core@7.26.7)(@types/babel__core@7.20.5)(rollup@2.79.1)': + '@rollup/plugin-babel@6.1.0(@babel/core@7.26.7(supports-color@8.1.1))(@types/babel__core@7.20.5)(rollup@4.62.4)(supports-color@8.1.1)': dependencies: - '@babel/core': 7.26.7 - '@babel/helper-module-imports': 7.25.9 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - rollup: 2.79.1 + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-module-imports': 7.25.9(supports-color@8.1.1) + '@rollup/pluginutils': 5.1.0(rollup@4.62.4) optionalDependencies: '@types/babel__core': 7.20.5 + rollup: 4.62.4 transitivePeerDependencies: - supports-color - '@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)': + '@rollup/plugin-node-resolve@16.0.3(rollup@4.62.4)': dependencies: - '@rollup/pluginutils': 5.1.0(rollup@2.79.1) + '@rollup/pluginutils': 5.1.0(rollup@4.62.4) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 2.79.1 + rollup: 4.62.4 - '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': + '@rollup/plugin-replace@6.0.3(rollup@4.62.4)': dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - magic-string: 0.25.9 - rollup: 2.79.1 + '@rollup/pluginutils': 5.1.0(rollup@4.62.4) + magic-string: 0.30.21 + optionalDependencies: + rollup: 4.62.4 - '@rollup/plugin-terser@0.4.4(rollup@2.79.1)': + '@rollup/plugin-terser@1.0.0(rollup@4.62.4)': dependencies: - serialize-javascript: 6.0.2 + serialize-javascript: 7.1.0 smob: 1.5.0 terser: 5.32.0 optionalDependencies: - rollup: 2.79.1 - - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - rollup: 2.79.1 + rollup: 4.62.4 - '@rollup/pluginutils@5.1.0(rollup@2.79.1)': + '@rollup/pluginutils@5.1.0(rollup@4.62.4)': dependencies: '@types/estree': 1.0.8 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 2.79.1 + rollup: 4.62.4 '@rollup/rollup-android-arm-eabi@4.21.2': optional: true + '@rollup/rollup-android-arm-eabi@4.62.4': + optional: true + '@rollup/rollup-android-arm64@4.21.2': optional: true + '@rollup/rollup-android-arm64@4.62.4': + optional: true + '@rollup/rollup-darwin-arm64@4.21.2': optional: true + '@rollup/rollup-darwin-arm64@4.62.4': + optional: true + '@rollup/rollup-darwin-x64@4.21.2': optional: true + '@rollup/rollup-darwin-x64@4.62.4': + optional: true + + '@rollup/rollup-freebsd-arm64@4.62.4': + optional: true + + '@rollup/rollup-freebsd-x64@4.62.4': + optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.21.2': optional: true + '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + optional: true + '@rollup/rollup-linux-arm-musleabihf@4.21.2': optional: true + '@rollup/rollup-linux-arm-musleabihf@4.62.4': + optional: true + '@rollup/rollup-linux-arm64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-arm64-gnu@4.62.4': + optional: true + '@rollup/rollup-linux-arm64-musl@4.21.2': optional: true + '@rollup/rollup-linux-arm64-musl@4.62.4': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.62.4': + optional: true + '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': optional: true + '@rollup/rollup-linux-ppc64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.62.4': + optional: true + '@rollup/rollup-linux-riscv64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-riscv64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.62.4': + optional: true + '@rollup/rollup-linux-s390x-gnu@4.21.2': optional: true + '@rollup/rollup-linux-s390x-gnu@4.62.4': + optional: true + '@rollup/rollup-linux-x64-gnu@4.21.2': optional: true + '@rollup/rollup-linux-x64-gnu@4.62.4': + optional: true + '@rollup/rollup-linux-x64-musl@4.21.2': optional: true + '@rollup/rollup-linux-x64-musl@4.62.4': + optional: true + + '@rollup/rollup-openbsd-x64@4.62.4': + optional: true + + '@rollup/rollup-openharmony-arm64@4.62.4': + optional: true + '@rollup/rollup-win32-arm64-msvc@4.21.2': optional: true + '@rollup/rollup-win32-arm64-msvc@4.62.4': + optional: true + '@rollup/rollup-win32-ia32-msvc@4.21.2': optional: true + '@rollup/rollup-win32-ia32-msvc@4.62.4': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.62.4': + optional: true + '@rollup/rollup-win32-x64-msvc@4.21.2': optional: true + '@rollup/rollup-win32-x64-msvc@4.62.4': + optional: true + '@rushstack/node-core-library@5.7.0(@types/node@22.5.4)': dependencies: ajv: 8.13.0 @@ -5204,12 +5616,12 @@ snapshots: - '@types/node' optional: true - '@surma/rollup-plugin-off-main-thread@2.2.3': + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.5': dependencies: - ejs: 3.1.10 - json5: 2.2.3 - magic-string: 0.25.9 - string.prototype.matchall: 4.0.12 + '@swc/counter': 0.1.3 + tslib: 2.7.0 '@tanstack/history@1.57.6': {} @@ -5274,36 +5686,43 @@ snapshots: '@tanstack/virtual-file-routes@1.56.0': {} + '@trickfilm400/rollup-plugin-off-main-thread@3.0.0-pre1': + dependencies: + ejs: 3.1.10 + json5: 2.2.3 + magic-string: 0.30.21 + string.prototype.matchall: 4.0.12 + '@types/argparse@1.0.38': optional: true '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 + '@babel/parser': 7.26.7 + '@babel/types': 7.26.7 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.26.7 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.25.6 - '@babel/types': 7.25.6 + '@babel/parser': 7.26.7 + '@babel/types': 7.26.7 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.25.6 - - '@types/estree@0.0.39': {} + '@babel/types': 7.26.7 '@types/estree@1.0.5': {} '@types/estree@1.0.8': {} + '@types/estree@1.0.9': {} + '@types/jsdom@21.1.7': dependencies: '@types/node': 22.5.4 @@ -5356,11 +5775,11 @@ snapshots: sharp-ico: 0.1.5 unconfig: 0.3.13 - '@vitejs/plugin-react@4.3.4(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))': + '@vitejs/plugin-react@4.3.4(supports-color@8.1.1)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))': dependencies: - '@babel/core': 7.26.7 - '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.7) - '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.7(supports-color@8.1.1)) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.7(supports-color@8.1.1)) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 vite: 4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0) @@ -5369,9 +5788,9 @@ snapshots: acorn@8.15.0: {} - agent-base@7.1.1: + agent-base@7.1.1(supports-color@8.1.1): dependencies: - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -5473,32 +5892,34 @@ snapshots: cosmiconfig: 7.1.0 resolve: 1.22.8 - babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.7): + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1): dependencies: '@babel/compat-data': 7.26.5 - '@babel/core': 7.26.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.7): + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1): dependencies: - '@babel/core': 7.26.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) core-js-compat: 3.38.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.7): + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1): dependencies: - '@babel/core': 7.26.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) transitivePeerDependencies: - supports-color balanced-match@1.0.2: {} + balanced-match@4.0.4: {} + bare-events@2.4.2: optional: true @@ -5542,6 +5963,10 @@ snapshots: dependencies: balanced-match: 1.0.2 + brace-expansion@5.0.9: + dependencies: + balanced-match: 4.0.4 + braces@3.0.3: dependencies: fill-range: 7.1.1 @@ -5560,13 +5985,15 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} - bundle-require@5.0.0(esbuild@0.23.1): dependencies: esbuild: 0.23.1 load-tsconfig: 0.2.5 + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + cac@6.7.14: {} call-bind-apply-helpers@1.0.2: @@ -5615,6 +6042,8 @@ snapshots: chownr@1.1.4: {} + client-only@0.0.1: {} + clsx@2.1.1: {} color-convert@1.9.3: @@ -5679,6 +6108,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + crypto-random-string@2.0.0: {} cssstyle@4.1.0: @@ -5710,13 +6145,17 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.2 - debug@4.3.7: + debug@4.3.7(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 - debug@4.4.1: + debug@4.4.1(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: + supports-color: 8.1.1 decimal.js@10.4.3: {} @@ -5933,12 +6372,12 @@ snapshots: escape-string-regexp@4.0.0: {} - estree-walker@1.0.1: {} - estree-walker@2.0.2: {} esutils@2.0.3: {} + eta@4.6.0: {} + execa@5.1.1: dependencies: cross-spawn: 7.0.3 @@ -5996,6 +6435,11 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + form-data@4.0.0: dependencies: asynckit: 0.4.0 @@ -6018,8 +6462,6 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs.realpath@1.0.0: {} - fsevents@2.3.3: optional: true @@ -6085,14 +6527,14 @@ snapshots: package-json-from-dist: 1.0.0 path-scurry: 1.11.1 - glob@7.2.3: + glob@11.1.0: dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + foreground-child: 3.3.1 + jackspeak: 4.2.3 + minimatch: 10.2.6 + minipass: 7.1.2 + package-json-from-dist: 1.0.0 + path-scurry: 2.0.2 globals@11.12.0: {} @@ -6150,17 +6592,17 @@ snapshots: dependencies: whatwg-encoding: 3.1.1 - http-proxy-agent@7.0.2: + http-proxy-agent@7.0.2(supports-color@8.1.1): dependencies: - agent-base: 7.1.1 - debug: 4.3.7 + agent-base: 7.1.1(supports-color@8.1.1) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color - https-proxy-agent@7.0.5: + https-proxy-agent@7.0.5(supports-color@8.1.1): dependencies: - agent-base: 7.1.1 - debug: 4.3.7 + agent-base: 7.1.1(supports-color@8.1.1) + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -6190,11 +6632,6 @@ snapshots: import-lazy@4.0.0: optional: true - inflight@1.0.6: - dependencies: - once: 1.4.0 - wrappy: 1.0.2 - inherits@2.0.4: {} ini@1.3.8: {} @@ -6236,10 +6673,6 @@ snapshots: call-bound: 1.0.4 has-tostringtag: 1.0.2 - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 - is-callable@1.2.7: {} is-core-module@2.15.1: @@ -6348,6 +6781,10 @@ snapshots: optionalDependencies: '@pkgjs/parseargs': 0.11.0 + jackspeak@4.2.3: + dependencies: + '@isaacs/cliui': 9.0.0 + jake@10.9.2: dependencies: async: 3.2.6 @@ -6373,15 +6810,15 @@ snapshots: dependencies: argparse: 2.0.1 - jsdom@24.1.3: + jsdom@24.1.3(supports-color@8.1.1): dependencies: cssstyle: 4.1.0 data-urls: 5.0.0 decimal.js: 10.4.3 form-data: 4.0.0 html-encoding-sniffer: 4.0.0 - http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.5 + http-proxy-agent: 7.0.2(supports-color@8.1.1) + https-proxy-agent: 7.0.5(supports-color@8.1.1) is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.12 parse5: 7.1.2 @@ -6497,7 +6934,8 @@ snapshots: lodash.sortby@4.7.0: {} - lodash@4.17.21: {} + lodash@4.17.21: + optional: true loose-envify@1.4.0: dependencies: @@ -6505,6 +6943,8 @@ snapshots: lru-cache@10.4.3: {} + lru-cache@11.5.2: {} + lru-cache@5.1.1: dependencies: yallist: 3.1.1 @@ -6514,9 +6954,9 @@ snapshots: yallist: 4.0.0 optional: true - magic-string@0.25.9: + magic-string@0.30.21: dependencies: - sourcemap-codec: 1.4.8 + '@jridgewell/sourcemap-codec': 1.5.5 math-intrinsics@1.1.0: {} @@ -6539,6 +6979,10 @@ snapshots: mimic-response@3.1.0: {} + minimatch@10.2.6: + dependencies: + brace-expansion: 5.0.9 + minimatch@3.0.8: dependencies: brace-expansion: 1.1.11 @@ -6574,6 +7018,31 @@ snapshots: napi-build-utils@1.0.2: {} + next@14.2.35(@babel/core@7.26.7(supports-color@8.1.1))(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 14.2.35 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001696 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.26.7(supports-color@8.1.1))(babel-plugin-macros@3.1.0)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.33 + '@next/swc-darwin-x64': 14.2.33 + '@next/swc-linux-arm64-gnu': 14.2.33 + '@next/swc-linux-arm64-musl': 14.2.33 + '@next/swc-linux-x64-gnu': 14.2.33 + '@next/swc-linux-x64-musl': 14.2.33 + '@next/swc-win32-arm64-msvc': 14.2.33 + '@next/swc-win32-ia32-msvc': 14.2.33 + '@next/swc-win32-x64-msvc': 14.2.33 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + node-abi@3.67.0: dependencies: semver: 7.6.3 @@ -6631,7 +7100,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 @@ -6640,8 +7109,6 @@ snapshots: dependencies: entities: 4.5.0 - path-is-absolute@1.0.1: {} - path-key@3.1.1: {} path-parse@1.0.7: {} @@ -6651,6 +7118,11 @@ snapshots: lru-cache: 10.4.3 minipass: 7.1.2 + path-scurry@2.0.2: + dependencies: + lru-cache: 11.5.2 + minipass: 7.1.2 + path-type@4.0.0: {} pdf-lib@1.17.1: @@ -6680,10 +7152,16 @@ snapshots: postcss: 8.4.45 tsx: 4.19.1 + postcss@8.4.31: + dependencies: + nanoid: 3.3.7 + picocolors: 1.1.1 + source-map-js: 1.2.1 + postcss@8.4.45: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 prebuild-install@7.1.2: @@ -6730,10 +7208,6 @@ snapshots: queue-tick@1.0.1: {} - randombytes@2.1.0: - dependencies: - safe-buffer: 5.2.1 - rc@1.2.8: dependencies: deep-extend: 0.6.0 @@ -6853,10 +7327,6 @@ snapshots: reusify@1.0.4: {} - rollup@2.79.1: - optionalDependencies: - fsevents: 2.3.3 - rollup@3.29.4: optionalDependencies: fsevents: 2.3.3 @@ -6883,6 +7353,38 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.21.2 fsevents: 2.3.3 + rollup@4.62.4: + dependencies: + '@types/estree': 1.0.9 + optionalDependencies: + '@napi-rs/lzma-linux-x64-gnu': 1.5.1 + '@rollup/rollup-android-arm-eabi': 4.62.4 + '@rollup/rollup-android-arm64': 4.62.4 + '@rollup/rollup-darwin-arm64': 4.62.4 + '@rollup/rollup-darwin-x64': 4.62.4 + '@rollup/rollup-freebsd-arm64': 4.62.4 + '@rollup/rollup-freebsd-x64': 4.62.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.62.4 + '@rollup/rollup-linux-arm-musleabihf': 4.62.4 + '@rollup/rollup-linux-arm64-gnu': 4.62.4 + '@rollup/rollup-linux-arm64-musl': 4.62.4 + '@rollup/rollup-linux-loong64-gnu': 4.62.4 + '@rollup/rollup-linux-loong64-musl': 4.62.4 + '@rollup/rollup-linux-ppc64-gnu': 4.62.4 + '@rollup/rollup-linux-ppc64-musl': 4.62.4 + '@rollup/rollup-linux-riscv64-gnu': 4.62.4 + '@rollup/rollup-linux-riscv64-musl': 4.62.4 + '@rollup/rollup-linux-s390x-gnu': 4.62.4 + '@rollup/rollup-linux-x64-gnu': 4.62.4 + '@rollup/rollup-linux-x64-musl': 4.62.4 + '@rollup/rollup-openbsd-x64': 4.62.4 + '@rollup/rollup-openharmony-arm64': 4.62.4 + '@rollup/rollup-win32-arm64-msvc': 4.62.4 + '@rollup/rollup-win32-ia32-msvc': 4.62.4 + '@rollup/rollup-win32-x64-gnu': 4.62.4 + '@rollup/rollup-win32-x64-msvc': 4.62.4 + fsevents: 2.3.3 + rrweb-cssom@0.7.1: {} run-parallel@1.2.0: @@ -6931,9 +7433,7 @@ snapshots: semver@7.6.3: {} - serialize-javascript@6.0.2: - dependencies: - randombytes: 2.1.0 + serialize-javascript@7.1.0: {} set-function-length@1.2.2: dependencies: @@ -7071,8 +7571,6 @@ snapshots: dependencies: whatwg-url: 7.1.0 - sourcemap-codec@1.4.8: {} - sprintf-js@1.0.3: optional: true @@ -7081,6 +7579,8 @@ snapshots: es-errors: 1.3.0 internal-slot: 1.1.0 + streamsearch@1.1.0: {} + streamx@2.20.0: dependencies: fast-fifo: 1.3.2 @@ -7174,6 +7674,14 @@ snapshots: strip-json-comments@3.1.1: optional: true + styled-jsx@5.1.1(@babel/core@7.26.7(supports-color@8.1.1))(babel-plugin-macros@3.1.0)(react@18.3.1): + dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.26.7(supports-color@8.1.1) + babel-plugin-macros: 3.1.0 + stylis@4.2.0: {} sucrase@3.35.0: @@ -7298,16 +7806,15 @@ snapshots: tslib@1.14.1: {} - tslib@2.7.0: - optional: true + tslib@2.7.0: {} - tsup@8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(tsx@4.19.1)(typescript@5.6.2): + tsup@8.2.4(@microsoft/api-extractor@7.47.7(@types/node@22.5.4))(jiti@2.4.2)(postcss@8.4.45)(supports-color@8.1.1)(tsx@4.19.1)(typescript@5.6.2): dependencies: bundle-require: 5.0.0(esbuild@0.23.1) cac: 6.7.14 chokidar: 3.6.0 consola: 3.2.3 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) esbuild: 0.23.1 execa: 5.1.1 globby: 11.1.0 @@ -7448,14 +7955,14 @@ snapshots: mime-types: 2.1.35 picocolors: 1.1.0 - vite-plugin-pwa@0.21.1(@vite-pwa/assets-generator@0.2.6)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))(workbox-build@7.1.1(@types/babel__core@7.20.5))(workbox-window@7.1.0): + vite-plugin-pwa@0.21.1(@vite-pwa/assets-generator@0.2.6)(supports-color@8.1.1)(vite@4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0))(workbox-build@7.4.1(@types/babel__core@7.20.5)(supports-color@8.1.1))(workbox-window@7.4.1): dependencies: - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) pretty-bytes: 6.1.1 tinyglobby: 0.2.10 vite: 4.5.9(@types/node@20.16.5)(lightningcss@1.30.1)(terser@5.32.0) - workbox-build: 7.1.1(@types/babel__core@7.20.5) - workbox-window: 7.1.0 + workbox-build: 7.4.1(@types/babel__core@7.20.5)(supports-color@8.1.1) + workbox-window: 7.4.1 optionalDependencies: '@vite-pwa/assets-generator': 0.2.6 transitivePeerDependencies: @@ -7542,118 +8049,118 @@ snapshots: dependencies: isexe: 2.0.0 - workbox-background-sync@7.1.0: + workbox-background-sync@7.4.1: dependencies: idb: 7.1.1 - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-broadcast-update@7.1.0: + workbox-broadcast-update@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-build@7.1.1(@types/babel__core@7.20.5): + workbox-build@7.4.1(@types/babel__core@7.20.5)(supports-color@8.1.1): dependencies: '@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1) - '@babel/core': 7.26.7 - '@babel/preset-env': 7.25.4(@babel/core@7.26.7) + '@babel/core': 7.26.7(supports-color@8.1.1) + '@babel/preset-env': 7.25.4(@babel/core@7.26.7(supports-color@8.1.1))(supports-color@8.1.1) '@babel/runtime': 7.25.6 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.26.7)(@types/babel__core@7.20.5)(rollup@2.79.1) - '@rollup/plugin-node-resolve': 15.2.3(rollup@2.79.1) - '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) - '@rollup/plugin-terser': 0.4.4(rollup@2.79.1) - '@surma/rollup-plugin-off-main-thread': 2.2.3 + '@rollup/plugin-babel': 6.1.0(@babel/core@7.26.7(supports-color@8.1.1))(@types/babel__core@7.20.5)(rollup@4.62.4)(supports-color@8.1.1) + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.62.4) + '@rollup/plugin-replace': 6.0.3(rollup@4.62.4) + '@rollup/plugin-terser': 1.0.0(rollup@4.62.4) + '@trickfilm400/rollup-plugin-off-main-thread': 3.0.0-pre1 ajv: 8.17.1 common-tags: 1.8.2 + eta: 4.6.0 fast-json-stable-stringify: 2.1.0 fs-extra: 9.1.0 - glob: 7.2.3 - lodash: 4.17.21 + glob: 11.1.0 pretty-bytes: 5.6.0 - rollup: 2.79.1 + rollup: 4.62.4 source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 tempy: 0.6.0 upath: 1.2.0 - workbox-background-sync: 7.1.0 - workbox-broadcast-update: 7.1.0 - workbox-cacheable-response: 7.1.0 - workbox-core: 7.1.0 - workbox-expiration: 7.1.0 - workbox-google-analytics: 7.1.0 - workbox-navigation-preload: 7.1.0 - workbox-precaching: 7.1.0 - workbox-range-requests: 7.1.0 - workbox-recipes: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 - workbox-streams: 7.1.0 - workbox-sw: 7.1.0 - workbox-window: 7.1.0 + workbox-background-sync: 7.4.1 + workbox-broadcast-update: 7.4.1 + workbox-cacheable-response: 7.4.1 + workbox-core: 7.4.1 + workbox-expiration: 7.4.1 + workbox-google-analytics: 7.4.1 + workbox-navigation-preload: 7.4.1 + workbox-precaching: 7.4.1 + workbox-range-requests: 7.4.1 + workbox-recipes: 7.4.1 + workbox-routing: 7.4.1 + workbox-strategies: 7.4.1 + workbox-streams: 7.4.1 + workbox-sw: 7.4.1 + workbox-window: 7.4.1 transitivePeerDependencies: - '@types/babel__core' - supports-color - workbox-cacheable-response@7.1.0: + workbox-cacheable-response@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-core@7.1.0: {} + workbox-core@7.4.1: {} - workbox-expiration@7.1.0: + workbox-expiration@7.4.1: dependencies: idb: 7.1.1 - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-google-analytics@7.1.0: + workbox-google-analytics@7.4.1: dependencies: - workbox-background-sync: 7.1.0 - workbox-core: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + workbox-background-sync: 7.4.1 + workbox-core: 7.4.1 + workbox-routing: 7.4.1 + workbox-strategies: 7.4.1 - workbox-navigation-preload@7.1.0: + workbox-navigation-preload@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-precaching@7.1.0: + workbox-precaching@7.4.1: dependencies: - workbox-core: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + workbox-core: 7.4.1 + workbox-routing: 7.4.1 + workbox-strategies: 7.4.1 - workbox-range-requests@7.1.0: + workbox-range-requests@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-recipes@7.1.0: + workbox-recipes@7.4.1: dependencies: - workbox-cacheable-response: 7.1.0 - workbox-core: 7.1.0 - workbox-expiration: 7.1.0 - workbox-precaching: 7.1.0 - workbox-routing: 7.1.0 - workbox-strategies: 7.1.0 + workbox-cacheable-response: 7.4.1 + workbox-core: 7.4.1 + workbox-expiration: 7.4.1 + workbox-precaching: 7.4.1 + workbox-routing: 7.4.1 + workbox-strategies: 7.4.1 - workbox-routing@7.1.0: + workbox-routing@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-strategies@7.1.0: + workbox-strategies@7.4.1: dependencies: - workbox-core: 7.1.0 + workbox-core: 7.4.1 - workbox-streams@7.1.0: + workbox-streams@7.4.1: dependencies: - workbox-core: 7.1.0 - workbox-routing: 7.1.0 + workbox-core: 7.4.1 + workbox-routing: 7.4.1 - workbox-sw@7.1.0: {} + workbox-sw@7.4.1: {} - workbox-window@7.1.0: + workbox-window@7.4.1: dependencies: '@types/trusted-types': 2.0.7 - workbox-core: 7.1.0 + workbox-core: 7.4.1 wrap-ansi@7.0.0: dependencies: