diff --git a/.gitignore b/.gitignore index b24e3e9f6..5b7a5eba9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,51 +1,10 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +node_modules +**/.DS_Store -# dependencies -/node_modules -/.pnp -.pnp.js +# Yarn +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml .yarn/install-state.gz - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts - -certificates -# Local Netlify folder -.netlify - -#vscode -.vscode/ - -#cursor -.cursorrules - -# localfile with all the CSS variables exported from design system -variables.css -# Sentry Config File -.env.sentry-build-plugin +.pnp.* +.yarn/releases \ No newline at end of file diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec13..000000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/.husky/pre-commit b/.husky/pre-commit index 2312dc587..bae616c39 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1 +1 @@ -npx lint-staged +yarn dlx lint-staged diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..25fa6215f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "typescript.tsdk": "node_modules/typescript/lib" +} diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 000000000..97b9a2e7f --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,6 @@ +nodeLinker: node-modules + +packageExtensions: + eslint-config-next@*: + dependencies: + next: '*' diff --git a/README.md b/README.md index c4033664f..29c162fad 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,20 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +# Scandic Monorepo + +This is the monorepo for Scandic's web projects. + +## What's inside? + +This repo includes the following packages/apps: + +### Apps and Packages + +- `scandic-web`: [Next.js](https://nextjs.org/) app for our public website +- `design-system`: a shared library of styles ## Getting Started -First, run the development server: +To get started, clone this repository and run `yarn install` in the root directory. -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -# or -bun dev -``` +### Running `scandic-web` locally -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. +To run the `scandic-web` app locally see its [README](./apps/scandic-web/README.md). diff --git a/.env b/apps/scandic-web/.env similarity index 100% rename from .env rename to apps/scandic-web/.env diff --git a/.env.local.example b/apps/scandic-web/.env.local.example similarity index 98% rename from .env.local.example rename to apps/scandic-web/.env.local.example index da0cb5d08..fd28543c1 100644 --- a/.env.local.example +++ b/apps/scandic-web/.env.local.example @@ -16,7 +16,6 @@ CURITY_ISSUER_SERVICE="https://testlogin.scandichotels.com" CYPRESS_BASE_URL="http://localhost:3000" # See next.config.js for info DEPLOY_PRIME_URL="http://localhost:3000" -DESIGN_SYSTEM_ACCESS_TOKEN="" NEXTAUTH_REDIRECT_PROXY_URL="http://localhost:3000/api/web/auth" NEXTAUTH_SECRET="" REVALIDATE_SECRET="" diff --git a/.env.test b/apps/scandic-web/.env.test similarity index 97% rename from .env.test rename to apps/scandic-web/.env.test index 0a246a8f7..3a0bf6912 100644 --- a/.env.test +++ b/apps/scandic-web/.env.test @@ -18,7 +18,6 @@ CYPRESS_API_BASEURL="test" CYPRESS_CURITY_USERNAME="test" CYPRESS_CURITY_PASSWORD="test" CYPRESS_BASE_URL="test" -DESIGN_SYSTEM_ACCESS_TOKEN="test" DEPLOY_PRIME_URL="test" NEXTAUTH_SECRET="test" PUBLIC_URL="test" diff --git a/.eslintrc.json b/apps/scandic-web/.eslintrc.json similarity index 97% rename from .eslintrc.json rename to apps/scandic-web/.eslintrc.json index be39b08df..863c2ca71 100644 --- a/.eslintrc.json +++ b/apps/scandic-web/.eslintrc.json @@ -1,5 +1,5 @@ { - "extends": ["next/core-web-vitals", "plugin:import/recommended"], + "extends": ["next/core-web-vitals", "plugin:import/typescript"], "plugins": ["simple-import-sort", "@typescript-eslint"], "parser": "@typescript-eslint/parser", "rules": { diff --git a/apps/scandic-web/.gitignore b/apps/scandic-web/.gitignore new file mode 100644 index 000000000..e823ebf90 --- /dev/null +++ b/apps/scandic-web/.gitignore @@ -0,0 +1,60 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js +.yarn/install-state.gz + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +certificates +# Local Netlify folder +.netlify + +#vscode +.vscode/ + +#cursor +.cursorrules + +# localfile with all the CSS variables exported from design system +variables.css + +# Sentry Config File +.env.sentry-build-plugin + +# Yarn +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* +.yarn/releases diff --git a/.prettierignore b/apps/scandic-web/.prettierignore similarity index 100% rename from .prettierignore rename to apps/scandic-web/.prettierignore diff --git a/Auth.md b/apps/scandic-web/Auth.md similarity index 100% rename from Auth.md rename to apps/scandic-web/Auth.md diff --git a/apps/scandic-web/README.md b/apps/scandic-web/README.md new file mode 100644 index 000000000..6be284568 --- /dev/null +++ b/apps/scandic-web/README.md @@ -0,0 +1,28 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +- Firt, make sure you have built the `design-system` once: + +```bash +yarn workspace @scandic-hotels/design-system build +``` + +- Create a `.env.local` file in the root of the `scandic-web` directory with the keys from the `.env.example` file. + +- Then run the development server: + +```bash +yarn dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! diff --git a/__mocks__/hotelReservation/index.ts b/apps/scandic-web/__mocks__/hotelReservation/index.ts similarity index 100% rename from __mocks__/hotelReservation/index.ts rename to apps/scandic-web/__mocks__/hotelReservation/index.ts diff --git a/actions/editProfile.ts b/apps/scandic-web/actions/editProfile.ts similarity index 100% rename from actions/editProfile.ts rename to apps/scandic-web/actions/editProfile.ts diff --git a/app/[lang]/(live)/(protected)/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/layout.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/layout.tsx diff --git a/app/[lang]/(live)/(protected)/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/loading.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/loading.tsx diff --git a/app/[lang]/(live)/(protected)/logout/route.ts b/apps/scandic-web/app/[lang]/(live)/(protected)/logout/route.ts similarity index 100% rename from app/[lang]/(live)/(protected)/logout/route.ts rename to apps/scandic-web/app/[lang]/(live)/(protected)/logout/route.ts diff --git a/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/error.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/error.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/error.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/error.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/page.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/page.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/[...path]/page.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/default.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/default.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/default.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/@breadcrumbs/default.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/[...path]/error.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/error.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/[...path]/error.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/error.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/[...path]/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/loading.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/[...path]/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/loading.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/[...path]/page.module.css b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/page.module.css similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/[...path]/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/page.module.css diff --git a/app/[lang]/(live)/(protected)/my-pages/[...path]/page.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/page.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/[...path]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/[...path]/page.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/layout.module.css similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/layout.module.css diff --git a/app/[lang]/(live)/(protected)/my-pages/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/layout.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/layout.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/loading.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/loading.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.module.css b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.module.css similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/profile/edit/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.module.css diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/profile/edit/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/edit/page.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/page.tsx b/apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/page.tsx similarity index 100% rename from app/[lang]/(live)/(protected)/my-pages/profile/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(protected)/my-pages/profile/page.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/@breadcrumbs/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@breadcrumbs/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/@breadcrumbs/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@breadcrumbs/page.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/loading.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/loading.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/@preview/page.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.module.css similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.module.css diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/layout.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/loading.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/loading.tsx diff --git a/app/[lang]/(live)/(public)/[contentType]/[uid]/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/[contentType]/[uid]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/[contentType]/[uid]/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/booking-confirmation/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/booking-confirmation/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(confirmation)/booking-confirmation/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(confirmation)/booking-confirmation/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(payment-callback)/payment-callback/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/map/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/alternative-hotels/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/details/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/loading.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/loading.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.module.css b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.module.css similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.module.css rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.module.css diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/utils.ts b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/utils.ts similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/utils.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/utils.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.test.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.ts b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.ts similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/getValidDates.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/utils.ts b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/utils.ts similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/(standard)/utils.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/(standard)/utils.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/README.md b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/README.md similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/README.md rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/README.md diff --git a/app/[lang]/(live)/(public)/hotelreservation/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/layout.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/layout.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/layout.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/loading.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/loading.tsx diff --git a/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/page.tsx similarity index 100% rename from app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/[refId]/page.tsx diff --git a/app/[lang]/(live)/(public)/loading.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/loading.tsx similarity index 100% rename from app/[lang]/(live)/(public)/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/(public)/loading.tsx diff --git a/app/[lang]/(live)/(public)/login/route.ts b/apps/scandic-web/app/[lang]/(live)/(public)/login/route.ts similarity index 100% rename from app/[lang]/(live)/(public)/login/route.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/login/route.ts diff --git a/app/[lang]/(live)/(public)/verifymagiclink/route.ts b/apps/scandic-web/app/[lang]/(live)/(public)/verifymagiclink/route.ts similarity index 100% rename from app/[lang]/(live)/(public)/verifymagiclink/route.ts rename to apps/scandic-web/app/[lang]/(live)/(public)/verifymagiclink/route.ts diff --git a/app/[lang]/(live)/@bookingwidget/[...path]/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/[...path]/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/[...path]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/[...path]/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/[...paths]/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/[...paths]/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/[...paths]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/[...paths]/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/[contentType]/[uid]/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/hotelreservation/[...paths]/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/[...paths]/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/hotelreservation/[...paths]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/[...paths]/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/hotelreservation/booking-confirmation/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/booking-confirmation/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/hotelreservation/booking-confirmation/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/booking-confirmation/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/hotelreservation/loading.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/loading.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/hotelreservation/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/loading.tsx diff --git a/app/[lang]/(live)/@bookingwidget/hotelreservation/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/hotelreservation/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/hotelreservation/page.tsx diff --git a/app/[lang]/(live)/@bookingwidget/loading.module.css b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/loading.module.css similarity index 100% rename from app/[lang]/(live)/@bookingwidget/loading.module.css rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/loading.module.css diff --git a/app/[lang]/(live)/@bookingwidget/loading.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/loading.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/loading.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/loading.tsx diff --git a/app/[lang]/(live)/@bookingwidget/page.tsx b/apps/scandic-web/app/[lang]/(live)/@bookingwidget/page.tsx similarity index 100% rename from app/[lang]/(live)/@bookingwidget/page.tsx rename to apps/scandic-web/app/[lang]/(live)/@bookingwidget/page.tsx diff --git a/app/[lang]/(live)/error.module.css b/apps/scandic-web/app/[lang]/(live)/error.module.css similarity index 100% rename from app/[lang]/(live)/error.module.css rename to apps/scandic-web/app/[lang]/(live)/error.module.css diff --git a/app/[lang]/(live)/error.tsx b/apps/scandic-web/app/[lang]/(live)/error.tsx similarity index 100% rename from app/[lang]/(live)/error.tsx rename to apps/scandic-web/app/[lang]/(live)/error.tsx diff --git a/app/[lang]/(live)/layout.tsx b/apps/scandic-web/app/[lang]/(live)/layout.tsx similarity index 100% rename from app/[lang]/(live)/layout.tsx rename to apps/scandic-web/app/[lang]/(live)/layout.tsx diff --git a/app/[lang]/(live)/middleware-error/404/page.tsx b/apps/scandic-web/app/[lang]/(live)/middleware-error/404/page.tsx similarity index 100% rename from app/[lang]/(live)/middleware-error/404/page.tsx rename to apps/scandic-web/app/[lang]/(live)/middleware-error/404/page.tsx diff --git a/app/[lang]/(live)/middleware-error/[status]/page.module.css b/apps/scandic-web/app/[lang]/(live)/middleware-error/[status]/page.module.css similarity index 100% rename from app/[lang]/(live)/middleware-error/[status]/page.module.css rename to apps/scandic-web/app/[lang]/(live)/middleware-error/[status]/page.module.css diff --git a/app/[lang]/(live)/middleware-error/[status]/page.tsx b/apps/scandic-web/app/[lang]/(live)/middleware-error/[status]/page.tsx similarity index 100% rename from app/[lang]/(live)/middleware-error/[status]/page.tsx rename to apps/scandic-web/app/[lang]/(live)/middleware-error/[status]/page.tsx diff --git a/app/[lang]/(live)/not-found.tsx b/apps/scandic-web/app/[lang]/(live)/not-found.tsx similarity index 100% rename from app/[lang]/(live)/not-found.tsx rename to apps/scandic-web/app/[lang]/(live)/not-found.tsx diff --git a/app/[lang]/(live-current)/@header/current-content-page/page.tsx b/apps/scandic-web/app/[lang]/(live-current)/@header/current-content-page/page.tsx similarity index 100% rename from app/[lang]/(live-current)/@header/current-content-page/page.tsx rename to apps/scandic-web/app/[lang]/(live-current)/@header/current-content-page/page.tsx diff --git a/app/[lang]/(live-current)/@header/error.tsx b/apps/scandic-web/app/[lang]/(live-current)/@header/error.tsx similarity index 100% rename from app/[lang]/(live-current)/@header/error.tsx rename to apps/scandic-web/app/[lang]/(live-current)/@header/error.tsx diff --git a/app/[lang]/(live-current)/current-content-page/page.tsx b/apps/scandic-web/app/[lang]/(live-current)/current-content-page/page.tsx similarity index 100% rename from app/[lang]/(live-current)/current-content-page/page.tsx rename to apps/scandic-web/app/[lang]/(live-current)/current-content-page/page.tsx diff --git a/app/[lang]/(live-current)/layout.tsx b/apps/scandic-web/app/[lang]/(live-current)/layout.tsx similarity index 100% rename from app/[lang]/(live-current)/layout.tsx rename to apps/scandic-web/app/[lang]/(live-current)/layout.tsx diff --git a/app/[lang]/(live-current)/not-found.tsx b/apps/scandic-web/app/[lang]/(live-current)/not-found.tsx similarity index 100% rename from app/[lang]/(live-current)/not-found.tsx rename to apps/scandic-web/app/[lang]/(live-current)/not-found.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/layout.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/layout.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/layout.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/layout.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/loading.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/loading.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/loading.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/loading.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/callback/route.ts b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/callback/route.ts similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/callback/route.ts rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/callback/route.ts diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/AlreadyLinkedError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/AlreadyLinkedError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/AlreadyLinkedError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/AlreadyLinkedError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/DateOfBirthError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/DateOfBirthError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/DateOfBirthError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/DateOfBirthError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/FailedAttemptsError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/FailedAttemptsError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/FailedAttemptsError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/FailedAttemptsError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/GenericError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/GenericError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/GenericError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/GenericError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.module.css b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.module.css similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.module.css rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.module.css diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/SASModal.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyCodesError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyCodesError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyCodesError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyCodesError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyFailedAttemptsError.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyFailedAttemptsError.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyFailedAttemptsError.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/components/TooManyFailedAttemptsError.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error/page.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/error/page.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.module.css b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.module.css similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.module.css rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.module.css diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/layout.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx similarity index 98% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx index c5ac3d8ab..e3ece3169 100644 --- a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx +++ b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/LinkAccountForm.tsx @@ -2,7 +2,7 @@ import Image from "next/image" import { useParams, useRouter } from "next/navigation" -import { type ReactNode, useTransition } from "react" +import { useTransition } from "react" import { FormProvider, useForm } from "react-hook-form" import { useIntl } from "react-intl" @@ -112,7 +112,7 @@ export function LinkAccountForm({ - {intl.formatMessage( + {intl.formatMessage( { id: "By linking your accounts you accept the Scandic Friends & SAS Terms and Conditions. You will be connected throughout the duration of your employment or until further notice, and you can opt out at any time.", }, diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/link-sas.module.css b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/link-sas.module.css similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/link-sas.module.css rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/link-sas.module.css diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/page.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/page.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/success/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/success/page.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/success/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/link/success/page.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx similarity index 94% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx index 6546c267b..283d2dd0d 100644 --- a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx +++ b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/login/page.tsx @@ -14,6 +14,8 @@ import { getIntl } from "@/i18n" import { SASModal } from "../components/SASModal" +import type { FormatXMLElementFn } from "intl-messageformat" + import type { LangParams, PageArgs, SearchParams } from "@/types/params" import type { State } from "../sasUtils" @@ -73,7 +75,10 @@ export default async function SASxScandicLoginPage({ {intentDescriptions[parsedParams.intent]} - {intl.formatMessage( + {intl.formatMessage< + React.ReactNode, + FormatXMLElementFn + >( { id: "If you are not redirected automatically, please click here.", }, diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.module.css b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.module.css similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.module.css rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.module.css diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx similarity index 98% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx index 24e4282eb..a317d6ed4 100644 --- a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx +++ b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/OneTimePasswordForm.tsx @@ -127,7 +127,7 @@ export default function OneTimePasswordForm({ invalidCode: intl.formatMessage({ id: "The code you’ve entered is incorrect.", }), - expiredCode: intl.formatMessage( + expiredCode: intl.formatMessage( { id: "The code you’ve entered have expired. Resend code.", }, @@ -175,7 +175,7 @@ export default function OneTimePasswordForm({
{footnote} - {intl.formatMessage( + {intl.formatMessage( { id: "Didn't receive a code? Resend code", }, diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/loading.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/loading.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/loading.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/loading.tsx diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx similarity index 98% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx index 8525f869a..88c300b71 100644 --- a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx +++ b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/otp/page.tsx @@ -106,13 +106,13 @@ export default async function SASxScandicOneTimePasswordPage({ ) const intentDescriptions: Record = { - link: intl.formatMessage( + link: intl.formatMessage( { id: "Please enter the code sent to in order to confirm your account linking.", }, { maskedContactInfo } ), - unlink: intl.formatMessage( + unlink: intl.formatMessage( { id: "Please enter the code sent to in order to unlink your accounts.", }, diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/sasUtils.ts b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/sasUtils.ts similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/sasUtils.ts rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/sasUtils.ts diff --git a/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/unlink/success/page.tsx b/apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/unlink/success/page.tsx similarity index 100% rename from app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/unlink/success/page.tsx rename to apps/scandic-web/app/[lang]/(partner)/(sas)/(protected)/sas-x-scandic/unlink/success/page.tsx diff --git a/app/[lang]/(partner)/layout.tsx b/apps/scandic-web/app/[lang]/(partner)/layout.tsx similarity index 100% rename from app/[lang]/(partner)/layout.tsx rename to apps/scandic-web/app/[lang]/(partner)/layout.tsx diff --git a/app/[lang]/layout.tsx b/apps/scandic-web/app/[lang]/layout.tsx similarity index 100% rename from app/[lang]/layout.tsx rename to apps/scandic-web/app/[lang]/layout.tsx diff --git a/app/[lang]/webview/[contentType]/[uid]/page.tsx b/apps/scandic-web/app/[lang]/webview/[contentType]/[uid]/page.tsx similarity index 100% rename from app/[lang]/webview/[contentType]/[uid]/page.tsx rename to apps/scandic-web/app/[lang]/webview/[contentType]/[uid]/page.tsx diff --git a/app/[lang]/webview/layout.module.css b/apps/scandic-web/app/[lang]/webview/layout.module.css similarity index 100% rename from app/[lang]/webview/layout.module.css rename to apps/scandic-web/app/[lang]/webview/layout.module.css diff --git a/app/[lang]/webview/layout.tsx b/apps/scandic-web/app/[lang]/webview/layout.tsx similarity index 100% rename from app/[lang]/webview/layout.tsx rename to apps/scandic-web/app/[lang]/webview/layout.tsx diff --git a/app/[lang]/webview/refresh/page.module.css b/apps/scandic-web/app/[lang]/webview/refresh/page.module.css similarity index 100% rename from app/[lang]/webview/refresh/page.module.css rename to apps/scandic-web/app/[lang]/webview/refresh/page.module.css diff --git a/app/[lang]/webview/refresh/page.tsx b/apps/scandic-web/app/[lang]/webview/refresh/page.tsx similarity index 100% rename from app/[lang]/webview/refresh/page.tsx rename to apps/scandic-web/app/[lang]/webview/refresh/page.tsx diff --git a/app/api/debug/route.ts b/apps/scandic-web/app/api/debug/route.ts similarity index 100% rename from app/api/debug/route.ts rename to apps/scandic-web/app/api/debug/route.ts diff --git a/app/api/sitemap/route.ts b/apps/scandic-web/app/api/sitemap/route.ts similarity index 100% rename from app/api/sitemap/route.ts rename to apps/scandic-web/app/api/sitemap/route.ts diff --git a/app/api/sitemap/sync.ts b/apps/scandic-web/app/api/sitemap/sync.ts similarity index 100% rename from app/api/sitemap/sync.ts rename to apps/scandic-web/app/api/sitemap/sync.ts diff --git a/app/api/sitemap/telemetry.ts b/apps/scandic-web/app/api/sitemap/telemetry.ts similarity index 100% rename from app/api/sitemap/telemetry.ts rename to apps/scandic-web/app/api/sitemap/telemetry.ts diff --git a/app/api/sitemap/utils.ts b/apps/scandic-web/app/api/sitemap/utils.ts similarity index 100% rename from app/api/sitemap/utils.ts rename to apps/scandic-web/app/api/sitemap/utils.ts diff --git a/app/api/web/add-card-callback/[lang]/route.ts b/apps/scandic-web/app/api/web/add-card-callback/[lang]/route.ts similarity index 100% rename from app/api/web/add-card-callback/[lang]/route.ts rename to apps/scandic-web/app/api/web/add-card-callback/[lang]/route.ts diff --git a/app/api/web/auth/[...nextauth]/route.ts b/apps/scandic-web/app/api/web/auth/[...nextauth]/route.ts similarity index 100% rename from app/api/web/auth/[...nextauth]/route.ts rename to apps/scandic-web/app/api/web/auth/[...nextauth]/route.ts diff --git a/app/api/web/check-headers/route.ts b/apps/scandic-web/app/api/web/check-headers/route.ts similarity index 100% rename from app/api/web/check-headers/route.ts rename to apps/scandic-web/app/api/web/check-headers/route.ts diff --git a/app/api/web/revalidate/hotel/route.ts b/apps/scandic-web/app/api/web/revalidate/hotel/route.ts similarity index 100% rename from app/api/web/revalidate/hotel/route.ts rename to apps/scandic-web/app/api/web/revalidate/hotel/route.ts diff --git a/app/api/web/revalidate/loyaltyConfig/route.ts b/apps/scandic-web/app/api/web/revalidate/loyaltyConfig/route.ts similarity index 100% rename from app/api/web/revalidate/loyaltyConfig/route.ts rename to apps/scandic-web/app/api/web/revalidate/loyaltyConfig/route.ts diff --git a/app/api/web/revalidate/manually/route.ts b/apps/scandic-web/app/api/web/revalidate/manually/route.ts similarity index 100% rename from app/api/web/revalidate/manually/route.ts rename to apps/scandic-web/app/api/web/revalidate/manually/route.ts diff --git a/app/api/web/revalidate/route.ts b/apps/scandic-web/app/api/web/revalidate/route.ts similarity index 100% rename from app/api/web/revalidate/route.ts rename to apps/scandic-web/app/api/web/revalidate/route.ts diff --git a/app/api/web/trpc/[trpc]/route.ts b/apps/scandic-web/app/api/web/trpc/[trpc]/route.ts similarity index 100% rename from app/api/web/trpc/[trpc]/route.ts rename to apps/scandic-web/app/api/web/trpc/[trpc]/route.ts diff --git a/app/favicon.ico b/apps/scandic-web/app/favicon.ico similarity index 100% rename from app/favicon.ico rename to apps/scandic-web/app/favicon.ico diff --git a/app/global-error.module.css b/apps/scandic-web/app/global-error.module.css similarity index 100% rename from app/global-error.module.css rename to apps/scandic-web/app/global-error.module.css diff --git a/app/global-error.tsx b/apps/scandic-web/app/global-error.tsx similarity index 100% rename from app/global-error.tsx rename to apps/scandic-web/app/global-error.tsx diff --git a/app/globals.css b/apps/scandic-web/app/globals.css similarity index 100% rename from app/globals.css rename to apps/scandic-web/app/globals.css diff --git a/app/not-found.module.css b/apps/scandic-web/app/not-found.module.css similarity index 100% rename from app/not-found.module.css rename to apps/scandic-web/app/not-found.module.css diff --git a/auth.ts b/apps/scandic-web/auth.ts similarity index 100% rename from auth.ts rename to apps/scandic-web/auth.ts diff --git a/components/Auth/TokenRefresher.tsx b/apps/scandic-web/components/Auth/TokenRefresher.tsx similarity index 100% rename from components/Auth/TokenRefresher.tsx rename to apps/scandic-web/components/Auth/TokenRefresher.tsx diff --git a/components/Blocks/Accordion/accordion.module.css b/apps/scandic-web/components/Blocks/Accordion/accordion.module.css similarity index 100% rename from components/Blocks/Accordion/accordion.module.css rename to apps/scandic-web/components/Blocks/Accordion/accordion.module.css diff --git a/components/Blocks/Accordion/index.tsx b/apps/scandic-web/components/Blocks/Accordion/index.tsx similarity index 100% rename from components/Blocks/Accordion/index.tsx rename to apps/scandic-web/components/Blocks/Accordion/index.tsx diff --git a/components/Blocks/CardGallery/cardGallery.module.css b/apps/scandic-web/components/Blocks/CardGallery/cardGallery.module.css similarity index 100% rename from components/Blocks/CardGallery/cardGallery.module.css rename to apps/scandic-web/components/Blocks/CardGallery/cardGallery.module.css diff --git a/components/Blocks/CardGallery/index.tsx b/apps/scandic-web/components/Blocks/CardGallery/index.tsx similarity index 100% rename from components/Blocks/CardGallery/index.tsx rename to apps/scandic-web/components/Blocks/CardGallery/index.tsx diff --git a/components/Blocks/CardsGrid.tsx b/apps/scandic-web/components/Blocks/CardsGrid.tsx similarity index 100% rename from components/Blocks/CardsGrid.tsx rename to apps/scandic-web/components/Blocks/CardsGrid.tsx diff --git a/components/Blocks/CarouselCards/carouselCards.module.css b/apps/scandic-web/components/Blocks/CarouselCards/carouselCards.module.css similarity index 100% rename from components/Blocks/CarouselCards/carouselCards.module.css rename to apps/scandic-web/components/Blocks/CarouselCards/carouselCards.module.css diff --git a/components/Blocks/CarouselCards/index.tsx b/apps/scandic-web/components/Blocks/CarouselCards/index.tsx similarity index 100% rename from components/Blocks/CarouselCards/index.tsx rename to apps/scandic-web/components/Blocks/CarouselCards/index.tsx diff --git a/components/Blocks/DynamicContent/HowItWorks/howItWorks.module.css b/apps/scandic-web/components/Blocks/DynamicContent/HowItWorks/howItWorks.module.css similarity index 100% rename from components/Blocks/DynamicContent/HowItWorks/howItWorks.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/HowItWorks/howItWorks.module.css diff --git a/components/Blocks/DynamicContent/HowItWorks/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/HowItWorks/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/HowItWorks/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/HowItWorks/index.tsx diff --git a/components/Blocks/DynamicContent/LoyaltyLevels/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/LoyaltyLevels/index.tsx similarity index 94% rename from components/Blocks/DynamicContent/LoyaltyLevels/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/LoyaltyLevels/index.tsx index e04d1e96e..0f3884d3a 100644 --- a/components/Blocks/DynamicContent/LoyaltyLevels/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/LoyaltyLevels/index.tsx @@ -11,6 +11,8 @@ import SectionWrapper from "../SectionWrapper" import styles from "./loyaltyLevels.module.css" +import type { FormatXMLElementFn } from "intl-messageformat" + import type { LoyaltyLevelsProps } from "@/types/components/blocks/dynamicContent" import type { LevelCardProps } from "@/types/components/overviewTable" @@ -42,7 +44,10 @@ async function LevelCard({ level }: LevelCardProps) { ) if (level.required_nights) { - pointsMsg = intl.formatMessage( + pointsMsg = intl.formatMessage< + React.ReactNode, + FormatXMLElementFn + >( { id: "{pointsAmount, number} points or {nightsAmount, number} nights", }, diff --git a/components/Blocks/DynamicContent/LoyaltyLevels/loyaltyLevels.module.css b/apps/scandic-web/components/Blocks/DynamicContent/LoyaltyLevels/loyaltyLevels.module.css similarity index 100% rename from components/Blocks/DynamicContent/LoyaltyLevels/loyaltyLevels.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/LoyaltyLevels/loyaltyLevels.module.css diff --git a/components/Blocks/DynamicContent/Overview/Buttons/CopyButton.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Buttons/CopyButton.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Buttons/CopyButton.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Buttons/CopyButton.tsx diff --git a/components/Blocks/DynamicContent/Overview/Buttons/copybutton.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Buttons/copybutton.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Buttons/copybutton.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Buttons/copybutton.module.css diff --git a/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/Hero/hero.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.module.css diff --git a/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts diff --git a/components/Blocks/DynamicContent/Overview/Friend/Hero/heroVariants.ts b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/heroVariants.ts similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/Hero/heroVariants.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/heroVariants.ts diff --git a/components/Blocks/DynamicContent/Overview/Friend/Hero/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/Hero/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/Hero/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumber.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumber.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumber.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumber.module.css diff --git a/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumberVariants.ts b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumberVariants.ts similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumberVariants.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/MembershipNumber/membershipNumberVariants.ts diff --git a/components/Blocks/DynamicContent/Overview/Friend/friend.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/friend.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/friend.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/friend.module.css diff --git a/components/Blocks/DynamicContent/Overview/Friend/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Friend/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Friend/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/ExpiringPoints/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/ExpiringPoints/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/ExpiringPoints/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/ExpiringPoints/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/Points/Container/container.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/Container/container.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/Points/Container/container.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/Container/container.module.css diff --git a/components/Blocks/DynamicContent/Overview/Stats/Points/Container/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/Container/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/Points/Container/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/Container/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/pointsColumn.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/pointsColumn.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/pointsColumn.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/PointsColumn/pointsColumn.module.css diff --git a/components/Blocks/DynamicContent/Overview/Stats/Points/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/Points/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/Points/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/Stats/stats.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/stats.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/Stats/stats.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/Stats/stats.module.css diff --git a/components/Blocks/DynamicContent/Overview/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Overview/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Overview/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/index.tsx diff --git a/components/Blocks/DynamicContent/Overview/overview.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Overview/overview.module.css similarity index 100% rename from components/Blocks/DynamicContent/Overview/overview.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Overview/overview.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/Client.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/Client.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/Client.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/Client.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/desktopHeader.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/desktopHeader.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/desktopHeader.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/desktopHeader.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/DesktopHeader/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/LargeTable/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/LargeTable/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/LargeTable/largeTable.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/largeTable.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/LargeTable/largeTable.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LargeTable/largeTable.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx similarity index 95% rename from components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx index a7d3cdb33..2f1125e4c 100644 --- a/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx @@ -11,7 +11,7 @@ export default function LevelSummary({ const intl = useIntl() const pointsMsg: React.ReactNode = level.required_nights - ? intl.formatMessage( + ? intl.formatMessage( { id: "{pointsAmount, number} points or {nightsAmount, number} nights", }, diff --git a/components/Blocks/DynamicContent/OverviewTable/LevelSummary/levelSummary.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/levelSummary.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/LevelSummary/levelSummary.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/levelSummary.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardList/Card/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/rewardCard.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/rewardCard.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardList/Card/rewardCard.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/Card/rewardCard.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardList/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardList/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardList/rewardList.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/rewardList.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardList/rewardList.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardList/rewardList.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardValue/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardValue/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardValue/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardValue/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/RewardValue/rewardValue.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardValue/rewardValue.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/RewardValue/rewardValue.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/RewardValue/rewardValue.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/yourLevel.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/yourLevel.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/YourLevelScript/yourLevel.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/YourLevelScript/yourLevel.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/index.tsx diff --git a/components/Blocks/DynamicContent/OverviewTable/overviewTable.module.css b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/overviewTable.module.css similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/overviewTable.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/overviewTable.module.css diff --git a/components/Blocks/DynamicContent/OverviewTable/reducer.ts b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/reducer.ts similarity index 100% rename from components/Blocks/DynamicContent/OverviewTable/reducer.ts rename to apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/reducer.ts diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPoints.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPoints.module.css similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPoints.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPoints.module.css diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPointsVariants.ts b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPointsVariants.ts similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPointsVariants.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/awardPointsVariants.ts diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/AwardPoints/index.tsx diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/Client.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/Client.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/Client.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/Client.tsx diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/clientTable.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/clientTable.module.css similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/clientTable.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/clientTable.module.css diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/index.tsx diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/index.tsx diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/EarnAndBurn/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/EarnAndBurn/index.tsx diff --git a/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/expiringPointsTable.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/expiringPointsTable.module.css similarity index 100% rename from components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/expiringPointsTable.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/expiringPointsTable.module.css diff --git a/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/ExpiringPointsTable/index.tsx diff --git a/components/Blocks/DynamicContent/Points/ExpiringPoints/expiringPoints.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/expiringPoints.module.css similarity index 100% rename from components/Blocks/DynamicContent/Points/ExpiringPoints/expiringPoints.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/expiringPoints.module.css diff --git a/components/Blocks/DynamicContent/Points/ExpiringPoints/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/ExpiringPoints/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/ExpiringPoints/index.tsx diff --git a/components/Blocks/DynamicContent/Points/Overview/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Points/Overview/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Points/Overview/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Points/Overview/index.tsx diff --git a/components/Blocks/DynamicContent/Points/Overview/overview.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Points/Overview/overview.module.css similarity index 100% rename from components/Blocks/DynamicContent/Points/Overview/overview.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Points/Overview/overview.module.css diff --git a/components/Blocks/DynamicContent/Rewards/CurrentRewards/Client.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/Client.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/CurrentRewards/Client.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/Client.tsx diff --git a/components/Blocks/DynamicContent/Rewards/CurrentRewards/current.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/current.module.css similarity index 100% rename from components/Blocks/DynamicContent/Rewards/CurrentRewards/current.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/current.module.css diff --git a/components/Blocks/DynamicContent/Rewards/CurrentRewards/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/CurrentRewards/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/CurrentRewards/index.tsx diff --git a/components/Blocks/DynamicContent/Rewards/NextLevel/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/NextLevel/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/NextLevel/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/NextLevel/index.tsx diff --git a/components/Blocks/DynamicContent/Rewards/NextLevel/next.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/NextLevel/next.module.css similarity index 100% rename from components/Blocks/DynamicContent/Rewards/NextLevel/next.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/NextLevel/next.module.css diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/ActiveRedeemedBadge.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/ActiveRedeemedBadge.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/ActiveRedeemedBadge.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/ActiveRedeemedBadge.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/ConfirmClose.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/ConfirmClose.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/ConfirmClose.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/ConfirmClose.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Campaign.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Campaign.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/Flows/Campaign.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Campaign.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Tier.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Tier.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/Flows/Tier.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/Flows/Tier.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/MembershipNumberBadge.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/MembershipNumberBadge.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/MembershipNumberBadge.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/MembershipNumberBadge.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/TimedRedeemedBadge.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/TimedRedeemedBadge.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/TimedRedeemedBadge.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/TimedRedeemedBadge.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/index.tsx diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/redeem.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/redeem.module.css similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/redeem.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/redeem.module.css diff --git a/components/Blocks/DynamicContent/Rewards/Redeem/useRedeemFlow.ts b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/useRedeemFlow.ts similarity index 100% rename from components/Blocks/DynamicContent/Rewards/Redeem/useRedeemFlow.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/Redeem/useRedeemFlow.ts diff --git a/components/Blocks/DynamicContent/Rewards/RewardIcon/data.ts b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/RewardIcon/data.ts similarity index 100% rename from components/Blocks/DynamicContent/Rewards/RewardIcon/data.ts rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/RewardIcon/data.ts diff --git a/components/Blocks/DynamicContent/Rewards/RewardIcon/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/RewardIcon/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/RewardIcon/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/RewardIcon/index.tsx diff --git a/components/Blocks/DynamicContent/Rewards/ScriptedRewardText/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Rewards/ScriptedRewardText/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Rewards/ScriptedRewardText/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Rewards/ScriptedRewardText/index.tsx diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/TierLevelCard.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/TierLevelCard.tsx similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/TierLevelCard.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/TierLevelCard.tsx diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/tierLevelCard.module.css b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/tierLevelCard.module.css similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/tierLevelCard.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/Card/tierLevelCard.module.css diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/LevelUpgradeButton.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/LevelUpgradeButton.tsx similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/LevelUpgradeButton.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/LevelUpgradeButton.tsx diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/UnlinkSAS.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/UnlinkSAS.tsx similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/UnlinkSAS.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/UnlinkSAS.tsx diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/index.tsx diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/levelupgradebutton.module.css b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/levelupgradebutton.module.css similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/levelupgradebutton.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/levelupgradebutton.module.css diff --git a/components/Blocks/DynamicContent/SAS/LinkedAccounts/linkedAccounts.module.css b/apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/linkedAccounts.module.css similarity index 100% rename from components/Blocks/DynamicContent/SAS/LinkedAccounts/linkedAccounts.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/SAS/LinkedAccounts/linkedAccounts.module.css diff --git a/components/Blocks/DynamicContent/SASTierComparison/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SASTierComparison/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/SASTierComparison/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SASTierComparison/index.tsx diff --git a/components/Blocks/DynamicContent/SectionWrapper/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SectionWrapper/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/SectionWrapper/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SectionWrapper/index.tsx diff --git a/components/Blocks/DynamicContent/SignupFormWrapper/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/SignupFormWrapper/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/SignupFormWrapper/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/SignupFormWrapper/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/ListContainer/container.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/ListContainer/container.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/ListContainer/container.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/ListContainer/container.module.css diff --git a/components/Blocks/DynamicContent/Stays/ListContainer/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/ListContainer/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/ListContainer/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/ListContainer/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Previous/Client.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/Client.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Previous/Client.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/Client.tsx diff --git a/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/emptyPreviousStays.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/emptyPreviousStays.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/emptyPreviousStays.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/emptyPreviousStays.module.css diff --git a/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/EmptyPreviousStays/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Previous/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Previous/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/ShowMoreButton/button.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/ShowMoreButton/button.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/ShowMoreButton/button.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/ShowMoreButton/button.module.css diff --git a/components/Blocks/DynamicContent/Stays/ShowMoreButton/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/ShowMoreButton/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/ShowMoreButton/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/ShowMoreButton/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/emptyUpcomingStays.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/emptyUpcomingStays.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/emptyUpcomingStays.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/emptyUpcomingStays.module.css diff --git a/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/EmptyUpcomingStays/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Soonest/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Soonest/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Soonest/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/StayCard/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/StayCard/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/StayCard/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/StayCard/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/StayCard/stay.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/StayCard/stay.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/StayCard/stay.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/StayCard/stay.module.css diff --git a/components/Blocks/DynamicContent/Stays/Upcoming/Client.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/Client.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Upcoming/Client.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/Client.tsx diff --git a/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/emptyUpcomingStays.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/emptyUpcomingStays.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/emptyUpcomingStays.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/emptyUpcomingStays.module.css diff --git a/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/EmptyUpcomingStays/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Upcoming/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/Stays/Upcoming/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/index.tsx diff --git a/components/Blocks/DynamicContent/Stays/Upcoming/upcoming.module.css b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/upcoming.module.css similarity index 100% rename from components/Blocks/DynamicContent/Stays/Upcoming/upcoming.module.css rename to apps/scandic-web/components/Blocks/DynamicContent/Stays/Upcoming/upcoming.module.css diff --git a/components/Blocks/DynamicContent/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/index.tsx similarity index 100% rename from components/Blocks/DynamicContent/index.tsx rename to apps/scandic-web/components/Blocks/DynamicContent/index.tsx diff --git a/components/Blocks/FullWidthCampaign/fullWidthCampaign.module.css b/apps/scandic-web/components/Blocks/FullWidthCampaign/fullWidthCampaign.module.css similarity index 100% rename from components/Blocks/FullWidthCampaign/fullWidthCampaign.module.css rename to apps/scandic-web/components/Blocks/FullWidthCampaign/fullWidthCampaign.module.css diff --git a/components/Blocks/FullWidthCampaign/index.tsx b/apps/scandic-web/components/Blocks/FullWidthCampaign/index.tsx similarity index 100% rename from components/Blocks/FullWidthCampaign/index.tsx rename to apps/scandic-web/components/Blocks/FullWidthCampaign/index.tsx diff --git a/components/Blocks/HotelListing/HotelListingItem/hotelListingItem.module.css b/apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/hotelListingItem.module.css similarity index 100% rename from components/Blocks/HotelListing/HotelListingItem/hotelListingItem.module.css rename to apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/hotelListingItem.module.css diff --git a/components/Blocks/HotelListing/HotelListingItem/index.tsx b/apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/index.tsx similarity index 100% rename from components/Blocks/HotelListing/HotelListingItem/index.tsx rename to apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/index.tsx diff --git a/components/Blocks/HotelListing/HotelListingItem/utils.ts b/apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/utils.ts similarity index 100% rename from components/Blocks/HotelListing/HotelListingItem/utils.ts rename to apps/scandic-web/components/Blocks/HotelListing/HotelListingItem/utils.ts diff --git a/components/Blocks/HotelListing/index.tsx b/apps/scandic-web/components/Blocks/HotelListing/index.tsx similarity index 100% rename from components/Blocks/HotelListing/index.tsx rename to apps/scandic-web/components/Blocks/HotelListing/index.tsx diff --git a/components/Blocks/JoinScandicFriends/index.tsx b/apps/scandic-web/components/Blocks/JoinScandicFriends/index.tsx similarity index 100% rename from components/Blocks/JoinScandicFriends/index.tsx rename to apps/scandic-web/components/Blocks/JoinScandicFriends/index.tsx diff --git a/components/Blocks/JoinScandicFriends/joinScandicFriends.module.css b/apps/scandic-web/components/Blocks/JoinScandicFriends/joinScandicFriends.module.css similarity index 100% rename from components/Blocks/JoinScandicFriends/joinScandicFriends.module.css rename to apps/scandic-web/components/Blocks/JoinScandicFriends/joinScandicFriends.module.css diff --git a/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx similarity index 100% rename from components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx rename to apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/index.tsx diff --git a/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css b/apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css similarity index 100% rename from components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css rename to apps/scandic-web/components/Blocks/ShortcutsList/ShortcutsListItems/shortcutsListItems.module.css diff --git a/components/Blocks/ShortcutsList/index.tsx b/apps/scandic-web/components/Blocks/ShortcutsList/index.tsx similarity index 100% rename from components/Blocks/ShortcutsList/index.tsx rename to apps/scandic-web/components/Blocks/ShortcutsList/index.tsx diff --git a/components/Blocks/ShortcutsList/shortcutsList.module.css b/apps/scandic-web/components/Blocks/ShortcutsList/shortcutsList.module.css similarity index 100% rename from components/Blocks/ShortcutsList/shortcutsList.module.css rename to apps/scandic-web/components/Blocks/ShortcutsList/shortcutsList.module.css diff --git a/components/Blocks/Table/index.tsx b/apps/scandic-web/components/Blocks/Table/index.tsx similarity index 100% rename from components/Blocks/Table/index.tsx rename to apps/scandic-web/components/Blocks/Table/index.tsx diff --git a/components/Blocks/Table/table.module.css b/apps/scandic-web/components/Blocks/Table/table.module.css similarity index 100% rename from components/Blocks/Table/table.module.css rename to apps/scandic-web/components/Blocks/Table/table.module.css diff --git a/components/Blocks/TextCols/index.tsx b/apps/scandic-web/components/Blocks/TextCols/index.tsx similarity index 100% rename from components/Blocks/TextCols/index.tsx rename to apps/scandic-web/components/Blocks/TextCols/index.tsx diff --git a/components/Blocks/TextCols/renderOptions.tsx b/apps/scandic-web/components/Blocks/TextCols/renderOptions.tsx similarity index 100% rename from components/Blocks/TextCols/renderOptions.tsx rename to apps/scandic-web/components/Blocks/TextCols/renderOptions.tsx diff --git a/components/Blocks/TextCols/textcols.module.css b/apps/scandic-web/components/Blocks/TextCols/textcols.module.css similarity index 100% rename from components/Blocks/TextCols/textcols.module.css rename to apps/scandic-web/components/Blocks/TextCols/textcols.module.css diff --git a/components/Blocks/UspGrid/index.tsx b/apps/scandic-web/components/Blocks/UspGrid/index.tsx similarity index 100% rename from components/Blocks/UspGrid/index.tsx rename to apps/scandic-web/components/Blocks/UspGrid/index.tsx diff --git a/components/Blocks/UspGrid/renderOptions.tsx b/apps/scandic-web/components/Blocks/UspGrid/renderOptions.tsx similarity index 100% rename from components/Blocks/UspGrid/renderOptions.tsx rename to apps/scandic-web/components/Blocks/UspGrid/renderOptions.tsx diff --git a/components/Blocks/UspGrid/uspgrid.module.css b/apps/scandic-web/components/Blocks/UspGrid/uspgrid.module.css similarity index 100% rename from components/Blocks/UspGrid/uspgrid.module.css rename to apps/scandic-web/components/Blocks/UspGrid/uspgrid.module.css diff --git a/components/Blocks/UspGrid/utils.ts b/apps/scandic-web/components/Blocks/UspGrid/utils.ts similarity index 100% rename from components/Blocks/UspGrid/utils.ts rename to apps/scandic-web/components/Blocks/UspGrid/utils.ts diff --git a/components/Blocks/index.tsx b/apps/scandic-web/components/Blocks/index.tsx similarity index 100% rename from components/Blocks/index.tsx rename to apps/scandic-web/components/Blocks/index.tsx diff --git a/components/BookingWidget/Client.tsx b/apps/scandic-web/components/BookingWidget/Client.tsx similarity index 100% rename from components/BookingWidget/Client.tsx rename to apps/scandic-web/components/BookingWidget/Client.tsx diff --git a/components/BookingWidget/MobileToggleButton/button.module.css b/apps/scandic-web/components/BookingWidget/MobileToggleButton/button.module.css similarity index 100% rename from components/BookingWidget/MobileToggleButton/button.module.css rename to apps/scandic-web/components/BookingWidget/MobileToggleButton/button.module.css diff --git a/components/BookingWidget/MobileToggleButton/index.tsx b/apps/scandic-web/components/BookingWidget/MobileToggleButton/index.tsx similarity index 100% rename from components/BookingWidget/MobileToggleButton/index.tsx rename to apps/scandic-web/components/BookingWidget/MobileToggleButton/index.tsx diff --git a/components/BookingWidget/bookingWidget.module.css b/apps/scandic-web/components/BookingWidget/bookingWidget.module.css similarity index 100% rename from components/BookingWidget/bookingWidget.module.css rename to apps/scandic-web/components/BookingWidget/bookingWidget.module.css diff --git a/components/BookingWidget/index.tsx b/apps/scandic-web/components/BookingWidget/index.tsx similarity index 100% rename from components/BookingWidget/index.tsx rename to apps/scandic-web/components/BookingWidget/index.tsx diff --git a/components/Breadcrumbs/index.tsx b/apps/scandic-web/components/Breadcrumbs/index.tsx similarity index 100% rename from components/Breadcrumbs/index.tsx rename to apps/scandic-web/components/Breadcrumbs/index.tsx diff --git a/components/ButtonLink/index.tsx b/apps/scandic-web/components/ButtonLink/index.tsx similarity index 100% rename from components/ButtonLink/index.tsx rename to apps/scandic-web/components/ButtonLink/index.tsx diff --git a/components/Carousel/CarouselContent.tsx b/apps/scandic-web/components/Carousel/CarouselContent.tsx similarity index 100% rename from components/Carousel/CarouselContent.tsx rename to apps/scandic-web/components/Carousel/CarouselContent.tsx diff --git a/components/Carousel/CarouselContext.tsx b/apps/scandic-web/components/Carousel/CarouselContext.tsx similarity index 100% rename from components/Carousel/CarouselContext.tsx rename to apps/scandic-web/components/Carousel/CarouselContext.tsx diff --git a/components/Carousel/CarouselDots.tsx b/apps/scandic-web/components/Carousel/CarouselDots.tsx similarity index 100% rename from components/Carousel/CarouselDots.tsx rename to apps/scandic-web/components/Carousel/CarouselDots.tsx diff --git a/components/Carousel/CarouselItem.tsx b/apps/scandic-web/components/Carousel/CarouselItem.tsx similarity index 100% rename from components/Carousel/CarouselItem.tsx rename to apps/scandic-web/components/Carousel/CarouselItem.tsx diff --git a/components/Carousel/CarouselNavigation.tsx b/apps/scandic-web/components/Carousel/CarouselNavigation.tsx similarity index 100% rename from components/Carousel/CarouselNavigation.tsx rename to apps/scandic-web/components/Carousel/CarouselNavigation.tsx diff --git a/components/Carousel/carousel.module.css b/apps/scandic-web/components/Carousel/carousel.module.css similarity index 100% rename from components/Carousel/carousel.module.css rename to apps/scandic-web/components/Carousel/carousel.module.css diff --git a/components/Carousel/index.tsx b/apps/scandic-web/components/Carousel/index.tsx similarity index 100% rename from components/Carousel/index.tsx rename to apps/scandic-web/components/Carousel/index.tsx diff --git a/components/Carousel/types.ts b/apps/scandic-web/components/Carousel/types.ts similarity index 100% rename from components/Carousel/types.ts rename to apps/scandic-web/components/Carousel/types.ts diff --git a/components/ContentCard/contentCard.module.css b/apps/scandic-web/components/ContentCard/contentCard.module.css similarity index 100% rename from components/ContentCard/contentCard.module.css rename to apps/scandic-web/components/ContentCard/contentCard.module.css diff --git a/components/ContentCard/contentCard.ts b/apps/scandic-web/components/ContentCard/contentCard.ts similarity index 100% rename from components/ContentCard/contentCard.ts rename to apps/scandic-web/components/ContentCard/contentCard.ts diff --git a/components/ContentCard/index.tsx b/apps/scandic-web/components/ContentCard/index.tsx similarity index 100% rename from components/ContentCard/index.tsx rename to apps/scandic-web/components/ContentCard/index.tsx diff --git a/components/ContentType/DestinationPage/CityListing/CityListingItem/CityListingItemSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/CityListingItemSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/CityListing/CityListingItem/CityListingItemSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/CityListingItemSkeleton.tsx diff --git a/components/ContentType/DestinationPage/CityListing/CityListingItem/cityListingItem.module.css b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/cityListingItem.module.css similarity index 100% rename from components/ContentType/DestinationPage/CityListing/CityListingItem/cityListingItem.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/cityListingItem.module.css diff --git a/components/ContentType/DestinationPage/CityListing/CityListingItem/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/CityListing/CityListingItem/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingItem/index.tsx diff --git a/components/ContentType/DestinationPage/CityListing/CityListingSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/CityListing/CityListingSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/CityListingSkeleton.tsx diff --git a/components/ContentType/DestinationPage/CityListing/cityListing.module.css b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/cityListing.module.css similarity index 100% rename from components/ContentType/DestinationPage/CityListing/cityListing.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/cityListing.module.css diff --git a/components/ContentType/DestinationPage/CityListing/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/CityListing/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/hotelList.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/hotelList.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/hotelList.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/hotelList.module.css diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/utils.ts b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/utils.ts similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/utils.ts rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelList/utils.ts diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/hotelListItem.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/hotelListItem.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/hotelListItem.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/hotelListItem.module.css diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/HotelListItem/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/cityMap.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/cityMap.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/cityMap.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/cityMap.module.css diff --git a/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/CityMap/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCityPage/DestinationCityPageSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/DestinationCityPageSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/DestinationCityPageSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/DestinationCityPageSkeleton.tsx diff --git a/components/ContentType/DestinationPage/DestinationCityPage/destinationCityPage.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/destinationCityPage.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/destinationCityPage.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/destinationCityPage.module.css diff --git a/components/ContentType/DestinationPage/DestinationCityPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCityPage/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCityPage/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/cityList.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/cityList.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/cityList.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/cityList.module.css diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityList/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/cityListItem.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/cityListItem.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/cityListItem.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/cityListItem.module.css diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/CityListItem/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/countryMap.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/countryMap.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/countryMap.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/countryMap.module.css diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/CountryMap/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/sidebarContentWrapper.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/sidebarContentWrapper.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/sidebarContentWrapper.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/SidebarContentWrapper/sidebarContentWrapper.module.css diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/destinationCountryPage.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/destinationCountryPage.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/destinationCountryPage.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/destinationCountryPage.module.css diff --git a/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationCountryPage/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/destination.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/destination.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/destination.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/destination.module.css diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/Destination/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/destinationsList.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/destinationsList.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/destinationsList.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/destinationsList.module.css diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/DestinationsList/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/hotelsSection.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/hotelsSection.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/hotelsSection.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/hotelsSection.module.css diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/HotelsSection/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/inputFrom.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/inputFrom.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/inputFrom.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/InputForm/inputFrom.module.css diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/OverviewMapContainer/index.tsx diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/destinationOverviewPage.module.css b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/destinationOverviewPage.module.css similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/destinationOverviewPage.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/destinationOverviewPage.module.css diff --git a/components/ContentType/DestinationPage/DestinationOverviewPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/DestinationOverviewPage/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/DestinationOverviewPage/index.tsx diff --git a/components/ContentType/DestinationPage/ExperienceList/ExperienceListSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/ExperienceListSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/ExperienceList/ExperienceListSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/ExperienceListSkeleton.tsx diff --git a/components/ContentType/DestinationPage/ExperienceList/experienceList.module.css b/apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/experienceList.module.css similarity index 100% rename from components/ContentType/DestinationPage/ExperienceList/experienceList.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/experienceList.module.css diff --git a/components/ContentType/DestinationPage/ExperienceList/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/ExperienceList/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/index.tsx diff --git a/components/ContentType/DestinationPage/ExperienceList/utils.ts b/apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/utils.ts similarity index 100% rename from components/ContentType/DestinationPage/ExperienceList/utils.ts rename to apps/scandic-web/components/ContentType/DestinationPage/ExperienceList/utils.ts diff --git a/components/ContentType/DestinationPage/HotelDataContainer/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelDataContainer/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelDataContainer/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelDataContainer/index.tsx diff --git a/components/ContentType/DestinationPage/HotelListing/HotelListingItem/HotelListingItemSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/HotelListingItemSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/HotelListingItem/HotelListingItemSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/HotelListingItemSkeleton.tsx diff --git a/components/ContentType/DestinationPage/HotelListing/HotelListingItem/hotelListingItem.module.css b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/hotelListingItem.module.css similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/HotelListingItem/hotelListingItem.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/hotelListingItem.module.css diff --git a/components/ContentType/DestinationPage/HotelListing/HotelListingItem/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/HotelListingItem/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingItem/index.tsx diff --git a/components/ContentType/DestinationPage/HotelListing/HotelListingSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/HotelListingSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/HotelListingSkeleton.tsx diff --git a/components/ContentType/DestinationPage/HotelListing/hotelListing.module.css b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/hotelListing.module.css similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/hotelListing.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/hotelListing.module.css diff --git a/components/ContentType/DestinationPage/HotelListing/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelListing/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx diff --git a/components/ContentType/DestinationPage/HotelMapCard/DialogImage/dialogImage.module.css b/apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/DialogImage/dialogImage.module.css similarity index 100% rename from components/ContentType/DestinationPage/HotelMapCard/DialogImage/dialogImage.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/DialogImage/dialogImage.module.css diff --git a/components/ContentType/DestinationPage/HotelMapCard/DialogImage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/DialogImage/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelMapCard/DialogImage/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/DialogImage/index.tsx diff --git a/components/ContentType/DestinationPage/HotelMapCard/hotelMapCard.module.css b/apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/hotelMapCard.module.css similarity index 100% rename from components/ContentType/DestinationPage/HotelMapCard/hotelMapCard.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/hotelMapCard.module.css diff --git a/components/ContentType/DestinationPage/HotelMapCard/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/HotelMapCard/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/HotelMapCard/index.tsx diff --git a/components/ContentType/DestinationPage/Map/DynamicMap/dynamicMap.module.css b/apps/scandic-web/components/ContentType/DestinationPage/Map/DynamicMap/dynamicMap.module.css similarity index 100% rename from components/ContentType/DestinationPage/Map/DynamicMap/dynamicMap.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/Map/DynamicMap/dynamicMap.module.css diff --git a/components/ContentType/DestinationPage/Map/DynamicMap/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/DynamicMap/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/DynamicMap/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/DynamicMap/index.tsx diff --git a/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/clusterMarker.module.css b/apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/clusterMarker.module.css similarity index 100% rename from components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/clusterMarker.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/clusterMarker.module.css diff --git a/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/ClusterMarker/index.tsx diff --git a/components/ContentType/DestinationPage/Map/MapContent/Marker/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/Marker/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/MapContent/Marker/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/Marker/index.tsx diff --git a/components/ContentType/DestinationPage/Map/MapContent/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/MapContent/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/MapContent/index.tsx diff --git a/components/ContentType/DestinationPage/Map/MapProvider.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/MapProvider.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/MapProvider.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/MapProvider.tsx diff --git a/components/ContentType/DestinationPage/Map/PageTypeProvider.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/PageTypeProvider.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/PageTypeProvider.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/PageTypeProvider.tsx diff --git a/components/ContentType/DestinationPage/Map/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Map/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Map/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Map/index.tsx diff --git a/components/ContentType/DestinationPage/Map/map.module.css b/apps/scandic-web/components/ContentType/DestinationPage/Map/map.module.css similarity index 100% rename from components/ContentType/DestinationPage/Map/map.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/Map/map.module.css diff --git a/components/ContentType/DestinationPage/Map/utils.ts b/apps/scandic-web/components/ContentType/DestinationPage/Map/utils.ts similarity index 100% rename from components/ContentType/DestinationPage/Map/utils.ts rename to apps/scandic-web/components/ContentType/DestinationPage/Map/utils.ts diff --git a/components/ContentType/DestinationPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/SidebarContentWrapperSkeleton.tsx diff --git a/components/ContentType/DestinationPage/SidebarContentWrapper/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/SidebarContentWrapper/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/index.tsx diff --git a/components/ContentType/DestinationPage/SidebarContentWrapper/sidebarContentWrapper.module.css b/apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/sidebarContentWrapper.module.css similarity index 100% rename from components/ContentType/DestinationPage/SidebarContentWrapper/sidebarContentWrapper.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/SidebarContentWrapper/sidebarContentWrapper.module.css diff --git a/components/ContentType/DestinationPage/Sidepeek/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/Sidepeek/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/Sidepeek/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/Sidepeek/index.tsx diff --git a/components/ContentType/DestinationPage/Sidepeek/sidepeek.module.css b/apps/scandic-web/components/ContentType/DestinationPage/Sidepeek/sidepeek.module.css similarity index 100% rename from components/ContentType/DestinationPage/Sidepeek/sidepeek.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/Sidepeek/sidepeek.module.css diff --git a/components/ContentType/DestinationPage/StaticMap/MapButton/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/StaticMap/MapButton/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/StaticMap/MapButton/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/StaticMap/MapButton/index.tsx diff --git a/components/ContentType/DestinationPage/StaticMap/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/StaticMap/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/StaticMap/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/StaticMap/index.tsx diff --git a/components/ContentType/DestinationPage/StaticMap/staticMap.module.css b/apps/scandic-web/components/ContentType/DestinationPage/StaticMap/staticMap.module.css similarity index 100% rename from components/ContentType/DestinationPage/StaticMap/staticMap.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/StaticMap/staticMap.module.css diff --git a/components/ContentType/DestinationPage/TopImages/TopImagesSkeleton.tsx b/apps/scandic-web/components/ContentType/DestinationPage/TopImages/TopImagesSkeleton.tsx similarity index 100% rename from components/ContentType/DestinationPage/TopImages/TopImagesSkeleton.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/TopImages/TopImagesSkeleton.tsx diff --git a/components/ContentType/DestinationPage/TopImages/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/TopImages/index.tsx similarity index 100% rename from components/ContentType/DestinationPage/TopImages/index.tsx rename to apps/scandic-web/components/ContentType/DestinationPage/TopImages/index.tsx diff --git a/components/ContentType/DestinationPage/TopImages/topImages.module.css b/apps/scandic-web/components/ContentType/DestinationPage/TopImages/topImages.module.css similarity index 100% rename from components/ContentType/DestinationPage/TopImages/topImages.module.css rename to apps/scandic-web/components/ContentType/DestinationPage/TopImages/topImages.module.css diff --git a/components/ContentType/DestinationPage/utils.ts b/apps/scandic-web/components/ContentType/DestinationPage/utils.ts similarity index 100% rename from components/ContentType/DestinationPage/utils.ts rename to apps/scandic-web/components/ContentType/DestinationPage/utils.ts diff --git a/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css b/apps/scandic-web/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css similarity index 100% rename from components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css rename to apps/scandic-web/components/ContentType/HotelPage/AmenitiesList/amenitiesList.module.css diff --git a/components/ContentType/HotelPage/AmenitiesList/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/AmenitiesList/index.tsx similarity index 100% rename from components/ContentType/HotelPage/AmenitiesList/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/AmenitiesList/index.tsx diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx b/apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx similarity index 100% rename from components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css b/apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css similarity index 100% rename from components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Facilities/CardGrid/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx diff --git a/components/ContentType/HotelPage/Facilities/facilities.module.css b/apps/scandic-web/components/ContentType/HotelPage/Facilities/facilities.module.css similarity index 100% rename from components/ContentType/HotelPage/Facilities/facilities.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Facilities/facilities.module.css diff --git a/components/ContentType/HotelPage/Facilities/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Facilities/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Facilities/index.tsx diff --git a/components/ContentType/HotelPage/IntroSection/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/IntroSection/index.tsx similarity index 100% rename from components/ContentType/HotelPage/IntroSection/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/IntroSection/index.tsx diff --git a/components/ContentType/HotelPage/IntroSection/introSection.module.css b/apps/scandic-web/components/ContentType/HotelPage/IntroSection/introSection.module.css similarity index 100% rename from components/ContentType/HotelPage/IntroSection/introSection.module.css rename to apps/scandic-web/components/ContentType/HotelPage/IntroSection/introSection.module.css diff --git a/components/ContentType/HotelPage/IntroSection/types.ts b/apps/scandic-web/components/ContentType/HotelPage/IntroSection/types.ts similarity index 100% rename from components/ContentType/HotelPage/IntroSection/types.ts rename to apps/scandic-web/components/ContentType/HotelPage/IntroSection/types.ts diff --git a/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/DynamicMap/Sidebar/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/index.tsx diff --git a/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/sidebar.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/sidebar.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/DynamicMap/Sidebar/sidebar.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/Sidebar/sidebar.module.css diff --git a/components/ContentType/HotelPage/Map/DynamicMap/dynamicMap.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/dynamicMap.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/DynamicMap/dynamicMap.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/dynamicMap.module.css diff --git a/components/ContentType/HotelPage/Map/DynamicMap/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/DynamicMap/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/DynamicMap/index.tsx diff --git a/components/ContentType/HotelPage/Map/MapCard/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/MapCard/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/index.tsx diff --git a/components/ContentType/HotelPage/Map/MapCard/mapCard.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/mapCard.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/MapCard/mapCard.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/MapCard/mapCard.module.css diff --git a/components/ContentType/HotelPage/Map/MapWithCard/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/MapWithCard/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/MapWithCard/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/MapWithCard/index.tsx diff --git a/components/ContentType/HotelPage/Map/MapWithCard/mapWithCard.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/MapWithCard/mapWithCard.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/MapWithCard/mapWithCard.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/MapWithCard/mapWithCard.module.css diff --git a/components/ContentType/HotelPage/Map/MobileMapToggle/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/MobileMapToggle/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/MobileMapToggle/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/MobileMapToggle/index.tsx diff --git a/components/ContentType/HotelPage/Map/MobileMapToggle/mobileToggle.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/MobileMapToggle/mobileToggle.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/MobileMapToggle/mobileToggle.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/MobileMapToggle/mobileToggle.module.css diff --git a/components/ContentType/HotelPage/Map/StaticMap/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Map/StaticMap/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Map/StaticMap/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Map/StaticMap/index.tsx diff --git a/components/ContentType/HotelPage/Map/StaticMap/staticMap.module.css b/apps/scandic-web/components/ContentType/HotelPage/Map/StaticMap/staticMap.module.css similarity index 100% rename from components/ContentType/HotelPage/Map/StaticMap/staticMap.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Map/StaticMap/staticMap.module.css diff --git a/components/ContentType/HotelPage/PreviewImages/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/PreviewImages/index.tsx similarity index 100% rename from components/ContentType/HotelPage/PreviewImages/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/PreviewImages/index.tsx diff --git a/components/ContentType/HotelPage/PreviewImages/previewImages.module.css b/apps/scandic-web/components/ContentType/HotelPage/PreviewImages/previewImages.module.css similarity index 100% rename from components/ContentType/HotelPage/PreviewImages/previewImages.module.css rename to apps/scandic-web/components/ContentType/HotelPage/PreviewImages/previewImages.module.css diff --git a/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Rooms/RoomCard/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx diff --git a/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css b/apps/scandic-web/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css similarity index 100% rename from components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Rooms/RoomCard/roomCard.module.css diff --git a/components/ContentType/HotelPage/Rooms/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/Rooms/index.tsx similarity index 100% rename from components/ContentType/HotelPage/Rooms/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/Rooms/index.tsx diff --git a/components/ContentType/HotelPage/Rooms/rooms.module.css b/apps/scandic-web/components/ContentType/HotelPage/Rooms/rooms.module.css similarity index 100% rename from components/ContentType/HotelPage/Rooms/rooms.module.css rename to apps/scandic-web/components/ContentType/HotelPage/Rooms/rooms.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/contactInformation.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/contactInformation.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/contactInformation.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/contactInformation.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/aboutTheHotel.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/aboutTheHotel.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/AboutTheHotel/aboutTheHotel.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/aboutTheHotel.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/AboutTheHotel/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Activities/activities.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Activities/activities.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Activities/activities.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Activities/activities.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Activities/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Activities/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Activities/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Activities/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/accessibilityAmenity.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/accessibilityAmenity.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/accessibilityAmenity.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/accessibilityAmenity.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Accessibility/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Breakfast/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Breakfast/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Breakfast/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Breakfast/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/CheckIn/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/CheckIn/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/CheckIn/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/CheckIn/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/parkingList.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/parkingList.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/parkingList.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingList/parkingList.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/parkingPrices.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/parkingPrices.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/parkingPrices.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/ParkingPrices/parkingPrices.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/parkingAmenity.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/parkingAmenity.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/parkingAmenity.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/Parking/parkingAmenity.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/index.ts b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/index.ts similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/index.ts rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/AccordionAmenities/index.ts diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/filteredAmenities.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/filteredAmenities.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/filteredAmenities.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/filteredAmenities.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/FilteredAmenities/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Amenities/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/meetingsAndConferences.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/meetingsAndConferences.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/meetingsAndConferences.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/meetingsAndConferences.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/util.ts b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/util.ts similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/util.ts rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/MeetingsAndConferences/util.ts diff --git a/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/restaurantBarItem.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/restaurantBarItem.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/restaurantBarItem.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/restaurantBarItem.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/RestaurantBar/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/RestaurantBar/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/RestaurantBar/restaurantBar.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/restaurantBar.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/RestaurantBar/restaurantBar.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/restaurantBar.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/Room/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Room/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Room/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Room/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/Room/room.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Room/room.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/Room/room.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/Room/room.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/facility.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/facility.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/facility.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/facility.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/index.tsx similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/index.tsx diff --git a/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/wellnessAndExercise.module.css b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/wellnessAndExercise.module.css similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/wellnessAndExercise.module.css rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/wellnessAndExercise.module.css diff --git a/components/ContentType/HotelPage/SidePeeks/index.ts b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/index.ts similarity index 100% rename from components/ContentType/HotelPage/SidePeeks/index.ts rename to apps/scandic-web/components/ContentType/HotelPage/SidePeeks/index.ts diff --git a/components/ContentType/HotelPage/TabNavigation/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/TabNavigation/index.tsx similarity index 100% rename from components/ContentType/HotelPage/TabNavigation/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/TabNavigation/index.tsx diff --git a/components/ContentType/HotelPage/TabNavigation/tabNavigation.module.css b/apps/scandic-web/components/ContentType/HotelPage/TabNavigation/tabNavigation.module.css similarity index 100% rename from components/ContentType/HotelPage/TabNavigation/tabNavigation.module.css rename to apps/scandic-web/components/ContentType/HotelPage/TabNavigation/tabNavigation.module.css diff --git a/components/ContentType/HotelPage/data.ts b/apps/scandic-web/components/ContentType/HotelPage/data.ts similarity index 100% rename from components/ContentType/HotelPage/data.ts rename to apps/scandic-web/components/ContentType/HotelPage/data.ts diff --git a/components/ContentType/HotelPage/hotelPage.module.css b/apps/scandic-web/components/ContentType/HotelPage/hotelPage.module.css similarity index 100% rename from components/ContentType/HotelPage/hotelPage.module.css rename to apps/scandic-web/components/ContentType/HotelPage/hotelPage.module.css diff --git a/components/ContentType/HotelPage/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/index.tsx similarity index 100% rename from components/ContentType/HotelPage/index.tsx rename to apps/scandic-web/components/ContentType/HotelPage/index.tsx diff --git a/components/ContentType/HotelPage/utils.ts b/apps/scandic-web/components/ContentType/HotelPage/utils.ts similarity index 100% rename from components/ContentType/HotelPage/utils.ts rename to apps/scandic-web/components/ContentType/HotelPage/utils.ts diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/accessibilityAdditionalContent.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/accessibilityAdditionalContent.module.css similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Accessibility/accessibilityAdditionalContent.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/accessibilityAdditionalContent.module.css diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Accessibility/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Accessibility/index.tsx diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Meetings/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Meetings/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Meetings/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Meetings/index.tsx diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Meetings/meetingsAdditionalContent.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Meetings/meetingsAdditionalContent.module.css similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Meetings/meetingsAdditionalContent.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Meetings/meetingsAdditionalContent.module.css diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Parking/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Parking/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Parking/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Parking/index.tsx diff --git a/components/ContentType/HotelSubpage/AdditionalContent/Parking/parkingAdditionalContent.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Parking/parkingAdditionalContent.module.css similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/Parking/parkingAdditionalContent.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/Parking/parkingAdditionalContent.module.css diff --git a/components/ContentType/HotelSubpage/AdditionalContent/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/AdditionalContent/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/AdditionalContent/index.tsx diff --git a/components/ContentType/HotelSubpage/HtmlContent/htmlContent.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/htmlContent.module.css similarity index 100% rename from components/ContentType/HotelSubpage/HtmlContent/htmlContent.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/htmlContent.module.css diff --git a/components/ContentType/HotelSubpage/HtmlContent/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/HtmlContent/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/index.tsx diff --git a/components/ContentType/HotelSubpage/HtmlContent/utils.ts b/apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/utils.ts similarity index 100% rename from components/ContentType/HotelSubpage/HtmlContent/utils.ts rename to apps/scandic-web/components/ContentType/HotelSubpage/HtmlContent/utils.ts diff --git a/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx diff --git a/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx diff --git a/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/RestaurantSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/RestaurantSidebar.tsx similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/RestaurantSidebar.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/RestaurantSidebar.tsx diff --git a/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/restaurantSiderbar.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/restaurantSiderbar.module.css similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/restaurantSiderbar.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar/restaurantSiderbar.module.css diff --git a/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx diff --git a/components/ContentType/HotelSubpage/Sidebar/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/index.tsx diff --git a/components/ContentType/HotelSubpage/Sidebar/sidebar.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/sidebar.module.css similarity index 100% rename from components/ContentType/HotelSubpage/Sidebar/sidebar.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/sidebar.module.css diff --git a/components/ContentType/HotelSubpage/hotelSubpage.module.css b/apps/scandic-web/components/ContentType/HotelSubpage/hotelSubpage.module.css similarity index 100% rename from components/ContentType/HotelSubpage/hotelSubpage.module.css rename to apps/scandic-web/components/ContentType/HotelSubpage/hotelSubpage.module.css diff --git a/components/ContentType/HotelSubpage/index.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/index.tsx similarity index 100% rename from components/ContentType/HotelSubpage/index.tsx rename to apps/scandic-web/components/ContentType/HotelSubpage/index.tsx diff --git a/components/ContentType/HotelSubpage/utils.ts b/apps/scandic-web/components/ContentType/HotelSubpage/utils.ts similarity index 100% rename from components/ContentType/HotelSubpage/utils.ts rename to apps/scandic-web/components/ContentType/HotelSubpage/utils.ts diff --git a/components/ContentType/LoyaltyPage/index.tsx b/apps/scandic-web/components/ContentType/LoyaltyPage/index.tsx similarity index 100% rename from components/ContentType/LoyaltyPage/index.tsx rename to apps/scandic-web/components/ContentType/LoyaltyPage/index.tsx diff --git a/components/ContentType/LoyaltyPage/loyaltyPage.module.css b/apps/scandic-web/components/ContentType/LoyaltyPage/loyaltyPage.module.css similarity index 100% rename from components/ContentType/LoyaltyPage/loyaltyPage.module.css rename to apps/scandic-web/components/ContentType/LoyaltyPage/loyaltyPage.module.css diff --git a/components/ContentType/StartPage/InfoCard/index.tsx b/apps/scandic-web/components/ContentType/StartPage/InfoCard/index.tsx similarity index 100% rename from components/ContentType/StartPage/InfoCard/index.tsx rename to apps/scandic-web/components/ContentType/StartPage/InfoCard/index.tsx diff --git a/components/ContentType/StartPage/InfoCard/infoCard.module.css b/apps/scandic-web/components/ContentType/StartPage/InfoCard/infoCard.module.css similarity index 100% rename from components/ContentType/StartPage/InfoCard/infoCard.module.css rename to apps/scandic-web/components/ContentType/StartPage/InfoCard/infoCard.module.css diff --git a/components/ContentType/StartPage/index.tsx b/apps/scandic-web/components/ContentType/StartPage/index.tsx similarity index 100% rename from components/ContentType/StartPage/index.tsx rename to apps/scandic-web/components/ContentType/StartPage/index.tsx diff --git a/components/ContentType/StartPage/startPage.module.css b/apps/scandic-web/components/ContentType/StartPage/startPage.module.css similarity index 100% rename from components/ContentType/StartPage/startPage.module.css rename to apps/scandic-web/components/ContentType/StartPage/startPage.module.css diff --git a/components/ContentType/StaticPages/CollectionPage/index.tsx b/apps/scandic-web/components/ContentType/StaticPages/CollectionPage/index.tsx similarity index 100% rename from components/ContentType/StaticPages/CollectionPage/index.tsx rename to apps/scandic-web/components/ContentType/StaticPages/CollectionPage/index.tsx diff --git a/components/ContentType/StaticPages/ContentPage/index.tsx b/apps/scandic-web/components/ContentType/StaticPages/ContentPage/index.tsx similarity index 100% rename from components/ContentType/StaticPages/ContentPage/index.tsx rename to apps/scandic-web/components/ContentType/StaticPages/ContentPage/index.tsx diff --git a/components/ContentType/StaticPages/index.tsx b/apps/scandic-web/components/ContentType/StaticPages/index.tsx similarity index 100% rename from components/ContentType/StaticPages/index.tsx rename to apps/scandic-web/components/ContentType/StaticPages/index.tsx diff --git a/components/ContentType/StaticPages/staticPage.module.css b/apps/scandic-web/components/ContentType/StaticPages/staticPage.module.css similarity index 100% rename from components/ContentType/StaticPages/staticPage.module.css rename to apps/scandic-web/components/ContentType/StaticPages/staticPage.module.css diff --git a/components/ContentType/StaticPages/staticPage.ts b/apps/scandic-web/components/ContentType/StaticPages/staticPage.ts similarity index 100% rename from components/ContentType/StaticPages/staticPage.ts rename to apps/scandic-web/components/ContentType/StaticPages/staticPage.ts diff --git a/components/ContentType/StaticPages/variants.ts b/apps/scandic-web/components/ContentType/StaticPages/variants.ts similarity index 100% rename from components/ContentType/StaticPages/variants.ts rename to apps/scandic-web/components/ContentType/StaticPages/variants.ts diff --git a/components/CookieBot/index.tsx b/apps/scandic-web/components/CookieBot/index.tsx similarity index 100% rename from components/CookieBot/index.tsx rename to apps/scandic-web/components/CookieBot/index.tsx diff --git a/components/Countdown/index.tsx b/apps/scandic-web/components/Countdown/index.tsx similarity index 100% rename from components/Countdown/index.tsx rename to apps/scandic-web/components/Countdown/index.tsx diff --git a/components/Current/AdobeScript.tsx b/apps/scandic-web/components/Current/AdobeScript.tsx similarity index 100% rename from components/Current/AdobeScript.tsx rename to apps/scandic-web/components/Current/AdobeScript.tsx diff --git a/components/Current/Aside/Contacts/Contact.tsx b/apps/scandic-web/components/Current/Aside/Contacts/Contact.tsx similarity index 100% rename from components/Current/Aside/Contacts/Contact.tsx rename to apps/scandic-web/components/Current/Aside/Contacts/Contact.tsx diff --git a/components/Current/Aside/Contacts/contact.module.css b/apps/scandic-web/components/Current/Aside/Contacts/contact.module.css similarity index 100% rename from components/Current/Aside/Contacts/contact.module.css rename to apps/scandic-web/components/Current/Aside/Contacts/contact.module.css diff --git a/components/Current/Aside/Contacts/index.tsx b/apps/scandic-web/components/Current/Aside/Contacts/index.tsx similarity index 100% rename from components/Current/Aside/Contacts/index.tsx rename to apps/scandic-web/components/Current/Aside/Contacts/index.tsx diff --git a/components/Current/Aside/Puff/index.tsx b/apps/scandic-web/components/Current/Aside/Puff/index.tsx similarity index 100% rename from components/Current/Aside/Puff/index.tsx rename to apps/scandic-web/components/Current/Aside/Puff/index.tsx diff --git a/components/Current/Aside/Puff/puff.module.css b/apps/scandic-web/components/Current/Aside/Puff/puff.module.css similarity index 100% rename from components/Current/Aside/Puff/puff.module.css rename to apps/scandic-web/components/Current/Aside/Puff/puff.module.css diff --git a/components/Current/Aside/Puff/renderOptions.tsx b/apps/scandic-web/components/Current/Aside/Puff/renderOptions.tsx similarity index 100% rename from components/Current/Aside/Puff/renderOptions.tsx rename to apps/scandic-web/components/Current/Aside/Puff/renderOptions.tsx diff --git a/components/Current/Aside/aside.module.css b/apps/scandic-web/components/Current/Aside/aside.module.css similarity index 100% rename from components/Current/Aside/aside.module.css rename to apps/scandic-web/components/Current/Aside/aside.module.css diff --git a/components/Current/Aside/index.tsx b/apps/scandic-web/components/Current/Aside/index.tsx similarity index 100% rename from components/Current/Aside/index.tsx rename to apps/scandic-web/components/Current/Aside/index.tsx diff --git a/components/Current/Blocks/List/ListItem.tsx b/apps/scandic-web/components/Current/Blocks/List/ListItem.tsx similarity index 100% rename from components/Current/Blocks/List/ListItem.tsx rename to apps/scandic-web/components/Current/Blocks/List/ListItem.tsx diff --git a/components/Current/Blocks/List/index.tsx b/apps/scandic-web/components/Current/Blocks/List/index.tsx similarity index 100% rename from components/Current/Blocks/List/index.tsx rename to apps/scandic-web/components/Current/Blocks/List/index.tsx diff --git a/components/Current/Blocks/List/list.module.css b/apps/scandic-web/components/Current/Blocks/List/list.module.css similarity index 100% rename from components/Current/Blocks/List/list.module.css rename to apps/scandic-web/components/Current/Blocks/List/list.module.css diff --git a/components/Current/Blocks/Puffs.tsx b/apps/scandic-web/components/Current/Blocks/Puffs.tsx similarity index 100% rename from components/Current/Blocks/Puffs.tsx rename to apps/scandic-web/components/Current/Blocks/Puffs.tsx diff --git a/components/Current/Blocks/Text.tsx b/apps/scandic-web/components/Current/Blocks/Text.tsx similarity index 100% rename from components/Current/Blocks/Text.tsx rename to apps/scandic-web/components/Current/Blocks/Text.tsx diff --git a/components/Current/Blocks/blocks.module.css b/apps/scandic-web/components/Current/Blocks/blocks.module.css similarity index 100% rename from components/Current/Blocks/blocks.module.css rename to apps/scandic-web/components/Current/Blocks/blocks.module.css diff --git a/components/Current/Blocks/index.tsx b/apps/scandic-web/components/Current/Blocks/index.tsx similarity index 100% rename from components/Current/Blocks/index.tsx rename to apps/scandic-web/components/Current/Blocks/index.tsx diff --git a/components/Current/ContentPage/contentPage.module.css b/apps/scandic-web/components/Current/ContentPage/contentPage.module.css similarity index 100% rename from components/Current/ContentPage/contentPage.module.css rename to apps/scandic-web/components/Current/ContentPage/contentPage.module.css diff --git a/components/Current/ContentPage/index.tsx b/apps/scandic-web/components/Current/ContentPage/index.tsx similarity index 100% rename from components/Current/ContentPage/index.tsx rename to apps/scandic-web/components/Current/ContentPage/index.tsx diff --git a/components/Current/Footer/Navigation.tsx b/apps/scandic-web/components/Current/Footer/Navigation.tsx similarity index 100% rename from components/Current/Footer/Navigation.tsx rename to apps/scandic-web/components/Current/Footer/Navigation.tsx diff --git a/components/Current/Footer/footer.module.css b/apps/scandic-web/components/Current/Footer/footer.module.css similarity index 100% rename from components/Current/Footer/footer.module.css rename to apps/scandic-web/components/Current/Footer/footer.module.css diff --git a/components/Current/Footer/index.tsx b/apps/scandic-web/components/Current/Footer/index.tsx similarity index 100% rename from components/Current/Footer/index.tsx rename to apps/scandic-web/components/Current/Footer/index.tsx diff --git a/components/Current/Footer/navigation.module.css b/apps/scandic-web/components/Current/Footer/navigation.module.css similarity index 100% rename from components/Current/Footer/navigation.module.css rename to apps/scandic-web/components/Current/Footer/navigation.module.css diff --git a/components/Current/Header/BookingButton/bookingButton.module.css b/apps/scandic-web/components/Current/Header/BookingButton/bookingButton.module.css similarity index 100% rename from components/Current/Header/BookingButton/bookingButton.module.css rename to apps/scandic-web/components/Current/Header/BookingButton/bookingButton.module.css diff --git a/components/Current/Header/BookingButton/index.tsx b/apps/scandic-web/components/Current/Header/BookingButton/index.tsx similarity index 100% rename from components/Current/Header/BookingButton/index.tsx rename to apps/scandic-web/components/Current/Header/BookingButton/index.tsx diff --git a/components/Current/Header/HeaderFallback/index.tsx b/apps/scandic-web/components/Current/Header/HeaderFallback/index.tsx similarity index 100% rename from components/Current/Header/HeaderFallback/index.tsx rename to apps/scandic-web/components/Current/Header/HeaderFallback/index.tsx diff --git a/components/Current/Header/LanguageSwitcher/Desktop/desktop.module.css b/apps/scandic-web/components/Current/Header/LanguageSwitcher/Desktop/desktop.module.css similarity index 100% rename from components/Current/Header/LanguageSwitcher/Desktop/desktop.module.css rename to apps/scandic-web/components/Current/Header/LanguageSwitcher/Desktop/desktop.module.css diff --git a/components/Current/Header/LanguageSwitcher/Desktop/index.tsx b/apps/scandic-web/components/Current/Header/LanguageSwitcher/Desktop/index.tsx similarity index 100% rename from components/Current/Header/LanguageSwitcher/Desktop/index.tsx rename to apps/scandic-web/components/Current/Header/LanguageSwitcher/Desktop/index.tsx diff --git a/components/Current/Header/LanguageSwitcher/Mobile/index.tsx b/apps/scandic-web/components/Current/Header/LanguageSwitcher/Mobile/index.tsx similarity index 100% rename from components/Current/Header/LanguageSwitcher/Mobile/index.tsx rename to apps/scandic-web/components/Current/Header/LanguageSwitcher/Mobile/index.tsx diff --git a/components/Current/Header/LanguageSwitcher/Mobile/mobile.module.css b/apps/scandic-web/components/Current/Header/LanguageSwitcher/Mobile/mobile.module.css similarity index 100% rename from components/Current/Header/LanguageSwitcher/Mobile/mobile.module.css rename to apps/scandic-web/components/Current/Header/LanguageSwitcher/Mobile/mobile.module.css diff --git a/components/Current/Header/LanguageSwitcher/index.tsx b/apps/scandic-web/components/Current/Header/LanguageSwitcher/index.tsx similarity index 100% rename from components/Current/Header/LanguageSwitcher/index.tsx rename to apps/scandic-web/components/Current/Header/LanguageSwitcher/index.tsx diff --git a/components/Current/Header/MainMenu/index.tsx b/apps/scandic-web/components/Current/Header/MainMenu/index.tsx similarity index 100% rename from components/Current/Header/MainMenu/index.tsx rename to apps/scandic-web/components/Current/Header/MainMenu/index.tsx diff --git a/components/Current/Header/MainMenu/mainMenu.module.css b/apps/scandic-web/components/Current/Header/MainMenu/mainMenu.module.css similarity index 100% rename from components/Current/Header/MainMenu/mainMenu.module.css rename to apps/scandic-web/components/Current/Header/MainMenu/mainMenu.module.css diff --git a/components/Current/Header/MyPagesMobileDropdown/index.tsx b/apps/scandic-web/components/Current/Header/MyPagesMobileDropdown/index.tsx similarity index 100% rename from components/Current/Header/MyPagesMobileDropdown/index.tsx rename to apps/scandic-web/components/Current/Header/MyPagesMobileDropdown/index.tsx diff --git a/components/Current/Header/MyPagesMobileDropdown/my-pages-mobile-dropdown.module.css b/apps/scandic-web/components/Current/Header/MyPagesMobileDropdown/my-pages-mobile-dropdown.module.css similarity index 100% rename from components/Current/Header/MyPagesMobileDropdown/my-pages-mobile-dropdown.module.css rename to apps/scandic-web/components/Current/Header/MyPagesMobileDropdown/my-pages-mobile-dropdown.module.css diff --git a/components/Current/Header/OfflineBanner/banner.module.css b/apps/scandic-web/components/Current/Header/OfflineBanner/banner.module.css similarity index 100% rename from components/Current/Header/OfflineBanner/banner.module.css rename to apps/scandic-web/components/Current/Header/OfflineBanner/banner.module.css diff --git a/components/Current/Header/OfflineBanner/index.tsx b/apps/scandic-web/components/Current/Header/OfflineBanner/index.tsx similarity index 100% rename from components/Current/Header/OfflineBanner/index.tsx rename to apps/scandic-web/components/Current/Header/OfflineBanner/index.tsx diff --git a/components/Current/Header/TopMenu/index.tsx b/apps/scandic-web/components/Current/Header/TopMenu/index.tsx similarity index 100% rename from components/Current/Header/TopMenu/index.tsx rename to apps/scandic-web/components/Current/Header/TopMenu/index.tsx diff --git a/components/Current/Header/TopMenu/topMenu.module.css b/apps/scandic-web/components/Current/Header/TopMenu/topMenu.module.css similarity index 100% rename from components/Current/Header/TopMenu/topMenu.module.css rename to apps/scandic-web/components/Current/Header/TopMenu/topMenu.module.css diff --git a/components/Current/Header/header.module.css b/apps/scandic-web/components/Current/Header/header.module.css similarity index 100% rename from components/Current/Header/header.module.css rename to apps/scandic-web/components/Current/Header/header.module.css diff --git a/components/Current/Header/index.tsx b/apps/scandic-web/components/Current/Header/index.tsx similarity index 100% rename from components/Current/Header/index.tsx rename to apps/scandic-web/components/Current/Header/index.tsx diff --git a/components/Current/Hero/hero.module.css b/apps/scandic-web/components/Current/Hero/hero.module.css similarity index 100% rename from components/Current/Hero/hero.module.css rename to apps/scandic-web/components/Current/Hero/hero.module.css diff --git a/components/Current/Hero/index.tsx b/apps/scandic-web/components/Current/Hero/index.tsx similarity index 100% rename from components/Current/Hero/index.tsx rename to apps/scandic-web/components/Current/Hero/index.tsx diff --git a/components/Current/LangPopup/index.tsx b/apps/scandic-web/components/Current/LangPopup/index.tsx similarity index 100% rename from components/Current/LangPopup/index.tsx rename to apps/scandic-web/components/Current/LangPopup/index.tsx diff --git a/components/Current/LoadingSpinner/index.tsx b/apps/scandic-web/components/Current/LoadingSpinner/index.tsx similarity index 100% rename from components/Current/LoadingSpinner/index.tsx rename to apps/scandic-web/components/Current/LoadingSpinner/index.tsx diff --git a/components/Current/LoadingSpinner/loading.module.css b/apps/scandic-web/components/Current/LoadingSpinner/loading.module.css similarity index 100% rename from components/Current/LoadingSpinner/loading.module.css rename to apps/scandic-web/components/Current/LoadingSpinner/loading.module.css diff --git a/components/Current/NotFound/Texts.ts b/apps/scandic-web/components/Current/NotFound/Texts.ts similarity index 100% rename from components/Current/NotFound/Texts.ts rename to apps/scandic-web/components/Current/NotFound/Texts.ts diff --git a/components/Current/NotFound/index.tsx b/apps/scandic-web/components/Current/NotFound/index.tsx similarity index 100% rename from components/Current/NotFound/index.tsx rename to apps/scandic-web/components/Current/NotFound/index.tsx diff --git a/components/Current/NotFound/notFound.module.css b/apps/scandic-web/components/Current/NotFound/notFound.module.css similarity index 100% rename from components/Current/NotFound/notFound.module.css rename to apps/scandic-web/components/Current/NotFound/notFound.module.css diff --git a/components/Current/Preamble/Breadcrumbs/breadcrumbs.module.css b/apps/scandic-web/components/Current/Preamble/Breadcrumbs/breadcrumbs.module.css similarity index 100% rename from components/Current/Preamble/Breadcrumbs/breadcrumbs.module.css rename to apps/scandic-web/components/Current/Preamble/Breadcrumbs/breadcrumbs.module.css diff --git a/components/Current/Preamble/Breadcrumbs/index.tsx b/apps/scandic-web/components/Current/Preamble/Breadcrumbs/index.tsx similarity index 100% rename from components/Current/Preamble/Breadcrumbs/index.tsx rename to apps/scandic-web/components/Current/Preamble/Breadcrumbs/index.tsx diff --git a/components/Current/Preamble/index.tsx b/apps/scandic-web/components/Current/Preamble/index.tsx similarity index 100% rename from components/Current/Preamble/index.tsx rename to apps/scandic-web/components/Current/Preamble/index.tsx diff --git a/components/Current/Preamble/preamble.module.css b/apps/scandic-web/components/Current/Preamble/preamble.module.css similarity index 100% rename from components/Current/Preamble/preamble.module.css rename to apps/scandic-web/components/Current/Preamble/preamble.module.css diff --git a/components/Current/Preamble/renderOptions.tsx b/apps/scandic-web/components/Current/Preamble/renderOptions.tsx similarity index 100% rename from components/Current/Preamble/renderOptions.tsx rename to apps/scandic-web/components/Current/Preamble/renderOptions.tsx diff --git a/components/Current/Section/index.tsx b/apps/scandic-web/components/Current/Section/index.tsx similarity index 100% rename from components/Current/Section/index.tsx rename to apps/scandic-web/components/Current/Section/index.tsx diff --git a/components/Current/Section/section.module.css b/apps/scandic-web/components/Current/Section/section.module.css similarity index 100% rename from components/Current/Section/section.module.css rename to apps/scandic-web/components/Current/Section/section.module.css diff --git a/components/Current/SubnavMobile.tsx b/apps/scandic-web/components/Current/SubnavMobile.tsx similarity index 100% rename from components/Current/SubnavMobile.tsx rename to apps/scandic-web/components/Current/SubnavMobile.tsx diff --git a/components/Current/Tracking.tsx b/apps/scandic-web/components/Current/Tracking.tsx similarity index 100% rename from components/Current/Tracking.tsx rename to apps/scandic-web/components/Current/Tracking.tsx diff --git a/components/Current/currentRenderOptions.module.css b/apps/scandic-web/components/Current/currentRenderOptions.module.css similarity index 100% rename from components/Current/currentRenderOptions.module.css rename to apps/scandic-web/components/Current/currentRenderOptions.module.css diff --git a/components/Current/currentRenderOptions.tsx b/apps/scandic-web/components/Current/currentRenderOptions.tsx similarity index 100% rename from components/Current/currentRenderOptions.tsx rename to apps/scandic-web/components/Current/currentRenderOptions.tsx diff --git a/components/DatePicker/Screen/Desktop.tsx b/apps/scandic-web/components/DatePicker/Screen/Desktop.tsx similarity index 100% rename from components/DatePicker/Screen/Desktop.tsx rename to apps/scandic-web/components/DatePicker/Screen/Desktop.tsx diff --git a/components/DatePicker/Screen/Mobile.tsx b/apps/scandic-web/components/DatePicker/Screen/Mobile.tsx similarity index 100% rename from components/DatePicker/Screen/Mobile.tsx rename to apps/scandic-web/components/DatePicker/Screen/Mobile.tsx diff --git a/components/DatePicker/Screen/desktop.module.css b/apps/scandic-web/components/DatePicker/Screen/desktop.module.css similarity index 100% rename from components/DatePicker/Screen/desktop.module.css rename to apps/scandic-web/components/DatePicker/Screen/desktop.module.css diff --git a/components/DatePicker/Screen/mobile.module.css b/apps/scandic-web/components/DatePicker/Screen/mobile.module.css similarity index 100% rename from components/DatePicker/Screen/mobile.module.css rename to apps/scandic-web/components/DatePicker/Screen/mobile.module.css diff --git a/components/DatePicker/date-picker.module.css b/apps/scandic-web/components/DatePicker/date-picker.module.css similarity index 100% rename from components/DatePicker/date-picker.module.css rename to apps/scandic-web/components/DatePicker/date-picker.module.css diff --git a/components/DatePicker/index.tsx b/apps/scandic-web/components/DatePicker/index.tsx similarity index 100% rename from components/DatePicker/index.tsx rename to apps/scandic-web/components/DatePicker/index.tsx diff --git a/components/DeprecatedJsonToHtml/index.tsx b/apps/scandic-web/components/DeprecatedJsonToHtml/index.tsx similarity index 100% rename from components/DeprecatedJsonToHtml/index.tsx rename to apps/scandic-web/components/DeprecatedJsonToHtml/index.tsx diff --git a/components/DeprecatedJsonToHtml/jsontohtml.module.css b/apps/scandic-web/components/DeprecatedJsonToHtml/jsontohtml.module.css similarity index 100% rename from components/DeprecatedJsonToHtml/jsontohtml.module.css rename to apps/scandic-web/components/DeprecatedJsonToHtml/jsontohtml.module.css diff --git a/components/DeprecatedJsonToHtml/renderOptions.tsx b/apps/scandic-web/components/DeprecatedJsonToHtml/renderOptions.tsx similarity index 100% rename from components/DeprecatedJsonToHtml/renderOptions.tsx rename to apps/scandic-web/components/DeprecatedJsonToHtml/renderOptions.tsx diff --git a/components/DeprecatedJsonToHtml/utils.tsx b/apps/scandic-web/components/DeprecatedJsonToHtml/utils.tsx similarity index 100% rename from components/DeprecatedJsonToHtml/utils.tsx rename to apps/scandic-web/components/DeprecatedJsonToHtml/utils.tsx diff --git a/components/Dialog/dialog.module.css b/apps/scandic-web/components/Dialog/dialog.module.css similarity index 100% rename from components/Dialog/dialog.module.css rename to apps/scandic-web/components/Dialog/dialog.module.css diff --git a/components/Dialog/index.tsx b/apps/scandic-web/components/Dialog/index.tsx similarity index 100% rename from components/Dialog/index.tsx rename to apps/scandic-web/components/Dialog/index.tsx diff --git a/components/Footer/Details/SocialLink/index.tsx b/apps/scandic-web/components/Footer/Details/SocialLink/index.tsx similarity index 100% rename from components/Footer/Details/SocialLink/index.tsx rename to apps/scandic-web/components/Footer/Details/SocialLink/index.tsx diff --git a/components/Footer/Details/details.module.css b/apps/scandic-web/components/Footer/Details/details.module.css similarity index 100% rename from components/Footer/Details/details.module.css rename to apps/scandic-web/components/Footer/Details/details.module.css diff --git a/components/Footer/Details/index.tsx b/apps/scandic-web/components/Footer/Details/index.tsx similarity index 100% rename from components/Footer/Details/index.tsx rename to apps/scandic-web/components/Footer/Details/index.tsx diff --git a/components/Footer/Navigation/MainNav/index.tsx b/apps/scandic-web/components/Footer/Navigation/MainNav/index.tsx similarity index 100% rename from components/Footer/Navigation/MainNav/index.tsx rename to apps/scandic-web/components/Footer/Navigation/MainNav/index.tsx diff --git a/components/Footer/Navigation/MainNav/mainnav.module.css b/apps/scandic-web/components/Footer/Navigation/MainNav/mainnav.module.css similarity index 100% rename from components/Footer/Navigation/MainNav/mainnav.module.css rename to apps/scandic-web/components/Footer/Navigation/MainNav/mainnav.module.css diff --git a/components/Footer/Navigation/SecondaryNav/index.tsx b/apps/scandic-web/components/Footer/Navigation/SecondaryNav/index.tsx similarity index 100% rename from components/Footer/Navigation/SecondaryNav/index.tsx rename to apps/scandic-web/components/Footer/Navigation/SecondaryNav/index.tsx diff --git a/components/Footer/Navigation/SecondaryNav/secondarynav.module.css b/apps/scandic-web/components/Footer/Navigation/SecondaryNav/secondarynav.module.css similarity index 100% rename from components/Footer/Navigation/SecondaryNav/secondarynav.module.css rename to apps/scandic-web/components/Footer/Navigation/SecondaryNav/secondarynav.module.css diff --git a/components/Footer/Navigation/index.tsx b/apps/scandic-web/components/Footer/Navigation/index.tsx similarity index 100% rename from components/Footer/Navigation/index.tsx rename to apps/scandic-web/components/Footer/Navigation/index.tsx diff --git a/components/Footer/Navigation/navigation.module.css b/apps/scandic-web/components/Footer/Navigation/navigation.module.css similarity index 100% rename from components/Footer/Navigation/navigation.module.css rename to apps/scandic-web/components/Footer/Navigation/navigation.module.css diff --git a/components/Footer/index.tsx b/apps/scandic-web/components/Footer/index.tsx similarity index 100% rename from components/Footer/index.tsx rename to apps/scandic-web/components/Footer/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/BookingCode/TabletCodeInput/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/TabletCodeInput/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/BookingCode/TabletCodeInput/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/TabletCodeInput/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/BookingCode/booking-code.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/booking-code.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/BookingCode/booking-code.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/booking-code.module.css diff --git a/components/Forms/BookingWidget/FormContent/BookingCode/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/BookingCode/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/BookingCode/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Input/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Input/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Input/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Input/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Input/input.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Input/input.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Input/input.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Input/input.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/button.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/button.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/button.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/button.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/variants.ts b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/variants.ts similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/variants.ts rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/ClearSearchButton/variants.ts diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/dialog.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/dialog.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/dialog.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/dialog.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/variants.ts b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/variants.ts similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/variants.ts rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/Dialog/variants.ts diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/Label.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/Label.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/Label.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/Label.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/listItem.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/listItem.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/listItem.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/listItem.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/variants.ts b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/variants.ts similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/variants.ts rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/ListItem/variants.ts diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/List/list.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/list.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/List/list.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/List/list.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/SearchList/searchList.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/searchList.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/SearchList/searchList.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/SearchList/searchList.module.css diff --git a/components/Forms/BookingWidget/FormContent/Search/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Search/reducer.ts b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/reducer.ts similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/reducer.ts rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/reducer.ts diff --git a/components/Forms/BookingWidget/FormContent/Search/search.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/search.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Search/search.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Search/search.module.css diff --git a/components/Forms/BookingWidget/FormContent/Voucher/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Voucher/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/Voucher/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Voucher/index.tsx diff --git a/components/Forms/BookingWidget/FormContent/Voucher/voucher.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/Voucher/voucher.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/Voucher/voucher.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/Voucher/voucher.module.css diff --git a/components/Forms/BookingWidget/FormContent/formContent.module.css b/apps/scandic-web/components/Forms/BookingWidget/FormContent/formContent.module.css similarity index 100% rename from components/Forms/BookingWidget/FormContent/formContent.module.css rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/formContent.module.css diff --git a/components/Forms/BookingWidget/FormContent/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/FormContent/index.tsx similarity index 100% rename from components/Forms/BookingWidget/FormContent/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/FormContent/index.tsx diff --git a/components/Forms/BookingWidget/form.module.css b/apps/scandic-web/components/Forms/BookingWidget/form.module.css similarity index 100% rename from components/Forms/BookingWidget/form.module.css rename to apps/scandic-web/components/Forms/BookingWidget/form.module.css diff --git a/components/Forms/BookingWidget/index.tsx b/apps/scandic-web/components/Forms/BookingWidget/index.tsx similarity index 100% rename from components/Forms/BookingWidget/index.tsx rename to apps/scandic-web/components/Forms/BookingWidget/index.tsx diff --git a/components/Forms/BookingWidget/schema.ts b/apps/scandic-web/components/Forms/BookingWidget/schema.ts similarity index 100% rename from components/Forms/BookingWidget/schema.ts rename to apps/scandic-web/components/Forms/BookingWidget/schema.ts diff --git a/components/Forms/BookingWidget/variants.ts b/apps/scandic-web/components/Forms/BookingWidget/variants.ts similarity index 100% rename from components/Forms/BookingWidget/variants.ts rename to apps/scandic-web/components/Forms/BookingWidget/variants.ts diff --git a/components/Forms/Edit/Profile/FormContent/formContent.module.css b/apps/scandic-web/components/Forms/Edit/Profile/FormContent/formContent.module.css similarity index 100% rename from components/Forms/Edit/Profile/FormContent/formContent.module.css rename to apps/scandic-web/components/Forms/Edit/Profile/FormContent/formContent.module.css diff --git a/components/Forms/Edit/Profile/FormContent/index.tsx b/apps/scandic-web/components/Forms/Edit/Profile/FormContent/index.tsx similarity index 100% rename from components/Forms/Edit/Profile/FormContent/index.tsx rename to apps/scandic-web/components/Forms/Edit/Profile/FormContent/index.tsx diff --git a/components/Forms/Edit/Profile/form.module.css b/apps/scandic-web/components/Forms/Edit/Profile/form.module.css similarity index 100% rename from components/Forms/Edit/Profile/form.module.css rename to apps/scandic-web/components/Forms/Edit/Profile/form.module.css diff --git a/components/Forms/Edit/Profile/index.tsx b/apps/scandic-web/components/Forms/Edit/Profile/index.tsx similarity index 100% rename from components/Forms/Edit/Profile/index.tsx rename to apps/scandic-web/components/Forms/Edit/Profile/index.tsx diff --git a/components/Forms/Edit/Profile/schema.ts b/apps/scandic-web/components/Forms/Edit/Profile/schema.ts similarity index 100% rename from components/Forms/Edit/Profile/schema.ts rename to apps/scandic-web/components/Forms/Edit/Profile/schema.ts diff --git a/components/Forms/Signup/form.module.css b/apps/scandic-web/components/Forms/Signup/form.module.css similarity index 100% rename from components/Forms/Signup/form.module.css rename to apps/scandic-web/components/Forms/Signup/form.module.css diff --git a/components/Forms/Signup/index.tsx b/apps/scandic-web/components/Forms/Signup/index.tsx similarity index 99% rename from components/Forms/Signup/index.tsx rename to apps/scandic-web/components/Forms/Signup/index.tsx index 0a4e67341..5828b1178 100644 --- a/components/Forms/Signup/index.tsx +++ b/apps/scandic-web/components/Forms/Signup/index.tsx @@ -163,7 +163,7 @@ export default function SignupForm({ title }: SignUpFormProps) { {/* TODO: Update copy once ready */} - {intl.formatMessage( + {intl.formatMessage( { id: "By accepting the Terms and Conditions for Scandic Friends I understand that my personal data will be processed in accordance with Scandic's Privacy Policy.", }, diff --git a/components/Forms/Signup/schema.ts b/apps/scandic-web/components/Forms/Signup/schema.ts similarity index 100% rename from components/Forms/Signup/schema.ts rename to apps/scandic-web/components/Forms/Signup/schema.ts diff --git a/components/GuestsRoomsPicker/AdultSelector/adult-selector.module.css b/apps/scandic-web/components/GuestsRoomsPicker/AdultSelector/adult-selector.module.css similarity index 100% rename from components/GuestsRoomsPicker/AdultSelector/adult-selector.module.css rename to apps/scandic-web/components/GuestsRoomsPicker/AdultSelector/adult-selector.module.css diff --git a/components/GuestsRoomsPicker/AdultSelector/index.tsx b/apps/scandic-web/components/GuestsRoomsPicker/AdultSelector/index.tsx similarity index 100% rename from components/GuestsRoomsPicker/AdultSelector/index.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/AdultSelector/index.tsx diff --git a/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx b/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx similarity index 100% rename from components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/ChildInfoSelector.tsx diff --git a/components/GuestsRoomsPicker/ChildSelector/child-selector.module.css b/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/child-selector.module.css similarity index 100% rename from components/GuestsRoomsPicker/ChildSelector/child-selector.module.css rename to apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/child-selector.module.css diff --git a/components/GuestsRoomsPicker/ChildSelector/index.tsx b/apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/index.tsx similarity index 100% rename from components/GuestsRoomsPicker/ChildSelector/index.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/ChildSelector/index.tsx diff --git a/components/GuestsRoomsPicker/Counter/counter.module.css b/apps/scandic-web/components/GuestsRoomsPicker/Counter/counter.module.css similarity index 100% rename from components/GuestsRoomsPicker/Counter/counter.module.css rename to apps/scandic-web/components/GuestsRoomsPicker/Counter/counter.module.css diff --git a/components/GuestsRoomsPicker/Counter/index.tsx b/apps/scandic-web/components/GuestsRoomsPicker/Counter/index.tsx similarity index 100% rename from components/GuestsRoomsPicker/Counter/index.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/Counter/index.tsx diff --git a/components/GuestsRoomsPicker/Form.tsx b/apps/scandic-web/components/GuestsRoomsPicker/Form.tsx similarity index 100% rename from components/GuestsRoomsPicker/Form.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/Form.tsx diff --git a/components/GuestsRoomsPicker/GuestsRoom/index.tsx b/apps/scandic-web/components/GuestsRoomsPicker/GuestsRoom/index.tsx similarity index 100% rename from components/GuestsRoomsPicker/GuestsRoom/index.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/GuestsRoom/index.tsx diff --git a/components/GuestsRoomsPicker/guests-rooms-picker.module.css b/apps/scandic-web/components/GuestsRoomsPicker/guests-rooms-picker.module.css similarity index 100% rename from components/GuestsRoomsPicker/guests-rooms-picker.module.css rename to apps/scandic-web/components/GuestsRoomsPicker/guests-rooms-picker.module.css diff --git a/components/GuestsRoomsPicker/index.tsx b/apps/scandic-web/components/GuestsRoomsPicker/index.tsx similarity index 100% rename from components/GuestsRoomsPicker/index.tsx rename to apps/scandic-web/components/GuestsRoomsPicker/index.tsx diff --git a/components/Header/HeaderLink/headerLink.module.css b/apps/scandic-web/components/Header/HeaderLink/headerLink.module.css similarity index 100% rename from components/Header/HeaderLink/headerLink.module.css rename to apps/scandic-web/components/Header/HeaderLink/headerLink.module.css diff --git a/components/Header/HeaderLink/index.tsx b/apps/scandic-web/components/Header/HeaderLink/index.tsx similarity index 100% rename from components/Header/HeaderLink/index.tsx rename to apps/scandic-web/components/Header/HeaderLink/index.tsx diff --git a/components/Header/MainMenu/Avatar/avatar.module.css b/apps/scandic-web/components/Header/MainMenu/Avatar/avatar.module.css similarity index 100% rename from components/Header/MainMenu/Avatar/avatar.module.css rename to apps/scandic-web/components/Header/MainMenu/Avatar/avatar.module.css diff --git a/components/Header/MainMenu/Avatar/index.tsx b/apps/scandic-web/components/Header/MainMenu/Avatar/index.tsx similarity index 100% rename from components/Header/MainMenu/Avatar/index.tsx rename to apps/scandic-web/components/Header/MainMenu/Avatar/index.tsx diff --git a/components/Header/MainMenu/MainMenuButton/index.tsx b/apps/scandic-web/components/Header/MainMenu/MainMenuButton/index.tsx similarity index 100% rename from components/Header/MainMenu/MainMenuButton/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MainMenuButton/index.tsx diff --git a/components/Header/MainMenu/MainMenuButton/menuButton.module.css b/apps/scandic-web/components/Header/MainMenu/MainMenuButton/menuButton.module.css similarity index 100% rename from components/Header/MainMenu/MainMenuButton/menuButton.module.css rename to apps/scandic-web/components/Header/MainMenu/MainMenuButton/menuButton.module.css diff --git a/components/Header/MainMenu/MobileMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/MobileMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/MobileMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MobileMenu/index.tsx diff --git a/components/Header/MainMenu/MobileMenu/mobileMenu.module.css b/apps/scandic-web/components/Header/MainMenu/MobileMenu/mobileMenu.module.css similarity index 100% rename from components/Header/MainMenu/MobileMenu/mobileMenu.module.css rename to apps/scandic-web/components/Header/MainMenu/MobileMenu/mobileMenu.module.css diff --git a/components/Header/MainMenu/MobileMenuWrapper/index.tsx b/apps/scandic-web/components/Header/MainMenu/MobileMenuWrapper/index.tsx similarity index 100% rename from components/Header/MainMenu/MobileMenuWrapper/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MobileMenuWrapper/index.tsx diff --git a/components/Header/MainMenu/MyPagesMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/MyPagesMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/MyPagesMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenu/index.tsx diff --git a/components/Header/MainMenu/MyPagesMenu/myPagesMenu.module.css b/apps/scandic-web/components/Header/MainMenu/MyPagesMenu/myPagesMenu.module.css similarity index 100% rename from components/Header/MainMenu/MyPagesMenu/myPagesMenu.module.css rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenu/myPagesMenu.module.css diff --git a/components/Header/MainMenu/MyPagesMenuContent/index.tsx b/apps/scandic-web/components/Header/MainMenu/MyPagesMenuContent/index.tsx similarity index 100% rename from components/Header/MainMenu/MyPagesMenuContent/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenuContent/index.tsx diff --git a/components/Header/MainMenu/MyPagesMenuContent/myPagesMenuContent.module.css b/apps/scandic-web/components/Header/MainMenu/MyPagesMenuContent/myPagesMenuContent.module.css similarity index 100% rename from components/Header/MainMenu/MyPagesMenuContent/myPagesMenuContent.module.css rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenuContent/myPagesMenuContent.module.css diff --git a/components/Header/MainMenu/MyPagesMenuWrapper/index.tsx b/apps/scandic-web/components/Header/MainMenu/MyPagesMenuWrapper/index.tsx similarity index 100% rename from components/Header/MainMenu/MyPagesMenuWrapper/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenuWrapper/index.tsx diff --git a/components/Header/MainMenu/MyPagesMenuWrapper/myPagesMenuWrapper.module.css b/apps/scandic-web/components/Header/MainMenu/MyPagesMenuWrapper/myPagesMenuWrapper.module.css similarity index 100% rename from components/Header/MainMenu/MyPagesMenuWrapper/myPagesMenuWrapper.module.css rename to apps/scandic-web/components/Header/MainMenu/MyPagesMenuWrapper/myPagesMenuWrapper.module.css diff --git a/components/Header/MainMenu/MyPagesMobileMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/MyPagesMobileMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/MyPagesMobileMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/MyPagesMobileMenu/index.tsx diff --git a/components/Header/MainMenu/MyPagesMobileMenu/myPagesMobileMenu.module.css b/apps/scandic-web/components/Header/MainMenu/MyPagesMobileMenu/myPagesMobileMenu.module.css similarity index 100% rename from components/Header/MainMenu/MyPagesMobileMenu/myPagesMobileMenu.module.css rename to apps/scandic-web/components/Header/MainMenu/MyPagesMobileMenu/myPagesMobileMenu.module.css diff --git a/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx diff --git a/components/Header/MainMenu/NavigationMenu/MegaMenu/megaMenu.module.css b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/MegaMenu/megaMenu.module.css similarity index 100% rename from components/Header/MainMenu/NavigationMenu/MegaMenu/megaMenu.module.css rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/MegaMenu/megaMenu.module.css diff --git a/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx similarity index 100% rename from components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx diff --git a/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/navigationMenuItem.module.css b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/navigationMenuItem.module.css similarity index 100% rename from components/Header/MainMenu/NavigationMenu/NavigationMenuItem/navigationMenuItem.module.css rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/navigationMenuItem.module.css diff --git a/components/Header/MainMenu/NavigationMenu/NavigationMenuList/index.tsx b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuList/index.tsx similarity index 100% rename from components/Header/MainMenu/NavigationMenu/NavigationMenuList/index.tsx rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuList/index.tsx diff --git a/components/Header/MainMenu/NavigationMenu/NavigationMenuList/navigationMenuList.module.css b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuList/navigationMenuList.module.css similarity index 100% rename from components/Header/MainMenu/NavigationMenu/NavigationMenuList/navigationMenuList.module.css rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/NavigationMenuList/navigationMenuList.module.css diff --git a/components/Header/MainMenu/NavigationMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/NavigationMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/NavigationMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/NavigationMenu/index.tsx diff --git a/components/Header/MainMenu/index.tsx b/apps/scandic-web/components/Header/MainMenu/index.tsx similarity index 100% rename from components/Header/MainMenu/index.tsx rename to apps/scandic-web/components/Header/MainMenu/index.tsx diff --git a/components/Header/MainMenu/mainMenu.module.css b/apps/scandic-web/components/Header/MainMenu/mainMenu.module.css similarity index 100% rename from components/Header/MainMenu/mainMenu.module.css rename to apps/scandic-web/components/Header/MainMenu/mainMenu.module.css diff --git a/components/Header/TopLink/index.tsx b/apps/scandic-web/components/Header/TopLink/index.tsx similarity index 100% rename from components/Header/TopLink/index.tsx rename to apps/scandic-web/components/Header/TopLink/index.tsx diff --git a/components/Header/TopMenu/index.tsx b/apps/scandic-web/components/Header/TopMenu/index.tsx similarity index 100% rename from components/Header/TopMenu/index.tsx rename to apps/scandic-web/components/Header/TopMenu/index.tsx diff --git a/components/Header/TopMenu/topMenu.module.css b/apps/scandic-web/components/Header/TopMenu/topMenu.module.css similarity index 100% rename from components/Header/TopMenu/topMenu.module.css rename to apps/scandic-web/components/Header/TopMenu/topMenu.module.css diff --git a/components/Header/header.module.css b/apps/scandic-web/components/Header/header.module.css similarity index 100% rename from components/Header/header.module.css rename to apps/scandic-web/components/Header/header.module.css diff --git a/components/Header/index.tsx b/apps/scandic-web/components/Header/index.tsx similarity index 100% rename from components/Header/index.tsx rename to apps/scandic-web/components/Header/index.tsx diff --git a/components/Hero/hero.module.css b/apps/scandic-web/components/Hero/hero.module.css similarity index 100% rename from components/Hero/hero.module.css rename to apps/scandic-web/components/Hero/hero.module.css diff --git a/components/Hero/hero.ts b/apps/scandic-web/components/Hero/hero.ts similarity index 100% rename from components/Hero/hero.ts rename to apps/scandic-web/components/Hero/hero.ts diff --git a/components/Hero/index.tsx b/apps/scandic-web/components/Hero/index.tsx similarity index 100% rename from components/Hero/index.tsx rename to apps/scandic-web/components/Hero/index.tsx diff --git a/components/HotelFilterAndSort/Filter/Checkbox/checkbox.module.css b/apps/scandic-web/components/HotelFilterAndSort/Filter/Checkbox/checkbox.module.css similarity index 100% rename from components/HotelFilterAndSort/Filter/Checkbox/checkbox.module.css rename to apps/scandic-web/components/HotelFilterAndSort/Filter/Checkbox/checkbox.module.css diff --git a/components/HotelFilterAndSort/Filter/Checkbox/index.tsx b/apps/scandic-web/components/HotelFilterAndSort/Filter/Checkbox/index.tsx similarity index 100% rename from components/HotelFilterAndSort/Filter/Checkbox/index.tsx rename to apps/scandic-web/components/HotelFilterAndSort/Filter/Checkbox/index.tsx diff --git a/components/HotelFilterAndSort/Filter/filter.module.css b/apps/scandic-web/components/HotelFilterAndSort/Filter/filter.module.css similarity index 100% rename from components/HotelFilterAndSort/Filter/filter.module.css rename to apps/scandic-web/components/HotelFilterAndSort/Filter/filter.module.css diff --git a/components/HotelFilterAndSort/Filter/index.tsx b/apps/scandic-web/components/HotelFilterAndSort/Filter/index.tsx similarity index 100% rename from components/HotelFilterAndSort/Filter/index.tsx rename to apps/scandic-web/components/HotelFilterAndSort/Filter/index.tsx diff --git a/components/HotelFilterAndSort/Sort/index.tsx b/apps/scandic-web/components/HotelFilterAndSort/Sort/index.tsx similarity index 100% rename from components/HotelFilterAndSort/Sort/index.tsx rename to apps/scandic-web/components/HotelFilterAndSort/Sort/index.tsx diff --git a/components/HotelFilterAndSort/hotelFilterAndSort.module.css b/apps/scandic-web/components/HotelFilterAndSort/hotelFilterAndSort.module.css similarity index 100% rename from components/HotelFilterAndSort/hotelFilterAndSort.module.css rename to apps/scandic-web/components/HotelFilterAndSort/hotelFilterAndSort.module.css diff --git a/components/HotelFilterAndSort/index.tsx b/apps/scandic-web/components/HotelFilterAndSort/index.tsx similarity index 100% rename from components/HotelFilterAndSort/index.tsx rename to apps/scandic-web/components/HotelFilterAndSort/index.tsx diff --git a/components/HotelReservation/AddToCalendar/index.tsx b/apps/scandic-web/components/HotelReservation/AddToCalendar/index.tsx similarity index 100% rename from components/HotelReservation/AddToCalendar/index.tsx rename to apps/scandic-web/components/HotelReservation/AddToCalendar/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Confirmation/confirmation.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Confirmation/confirmation.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Confirmation/confirmation.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Confirmation/confirmation.module.css diff --git a/components/HotelReservation/BookingConfirmation/Confirmation/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Confirmation/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Confirmation/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Confirmation/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx diff --git a/components/HotelReservation/BookingConfirmation/Header/Actions/DownloadInvoice.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/DownloadInvoice.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Header/Actions/DownloadInvoice.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/DownloadInvoice.tsx diff --git a/components/HotelReservation/BookingConfirmation/Header/Actions/ManageBooking.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/ManageBooking.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Header/Actions/ManageBooking.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/ManageBooking.tsx diff --git a/components/HotelReservation/BookingConfirmation/Header/Actions/helpers.ts b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/helpers.ts similarity index 100% rename from components/HotelReservation/BookingConfirmation/Header/Actions/helpers.ts rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/helpers.ts diff --git a/components/HotelReservation/BookingConfirmation/Header/header.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/header.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Header/header.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/header.module.css diff --git a/components/HotelReservation/BookingConfirmation/Header/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx similarity index 98% rename from components/HotelReservation/BookingConfirmation/Header/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx index a6873dfc8..98537fefd 100644 --- a/components/HotelReservation/BookingConfirmation/Header/index.tsx +++ b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/index.tsx @@ -25,7 +25,7 @@ export default function Header({ }: BookingConfirmationHeaderProps) { const intl = useIntl() - const text = intl.formatMessage( + const text = intl.formatMessage( { id: "Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please contact us.", }, diff --git a/components/HotelReservation/BookingConfirmation/HotelDetails/hotelDetails.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/HotelDetails/hotelDetails.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/HotelDetails/hotelDetails.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/HotelDetails/hotelDetails.module.css diff --git a/components/HotelReservation/BookingConfirmation/HotelDetails/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/HotelDetails/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/HotelDetails/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/HotelDetails/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/PaymentDetails/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/PaymentDetails/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/PaymentDetails/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/PaymentDetails/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/PaymentDetails/paymentDetails.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/PaymentDetails/paymentDetails.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/PaymentDetails/paymentDetails.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/PaymentDetails/paymentDetails.module.css diff --git a/components/HotelReservation/BookingConfirmation/Promos/Promo/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/Promo/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Promos/Promo/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/Promo/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Promos/Promo/promo.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/Promo/promo.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Promos/Promo/promo.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/Promo/promo.module.css diff --git a/components/HotelReservation/BookingConfirmation/Promos/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Promos/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Promos/promos.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/promos.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Promos/promos.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Promos/promos.module.css diff --git a/components/HotelReservation/BookingConfirmation/Receipt/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Receipt/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Receipt/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Receipt/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Receipt/receipt.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Receipt/receipt.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Receipt/receipt.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Receipt/receipt.module.css diff --git a/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/linkedReservation.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/linkedReservation.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/linkedReservation.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/LinkedReservation/linkedReservation.module.css diff --git a/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Rooms/Room/room.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/room.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/Room/room.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/room.module.css diff --git a/components/HotelReservation/BookingConfirmation/Rooms/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/index.tsx diff --git a/components/HotelReservation/BookingConfirmation/Rooms/rooms.module.css b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/rooms.module.css similarity index 100% rename from components/HotelReservation/BookingConfirmation/Rooms/rooms.module.css rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/rooms.module.css diff --git a/components/HotelReservation/BookingConfirmation/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/index.tsx similarity index 100% rename from components/HotelReservation/BookingConfirmation/index.tsx rename to apps/scandic-web/components/HotelReservation/BookingConfirmation/index.tsx diff --git a/components/HotelReservation/Contact/contact.module.css b/apps/scandic-web/components/HotelReservation/Contact/contact.module.css similarity index 100% rename from components/HotelReservation/Contact/contact.module.css rename to apps/scandic-web/components/HotelReservation/Contact/contact.module.css diff --git a/components/HotelReservation/Contact/index.tsx b/apps/scandic-web/components/HotelReservation/Contact/index.tsx similarity index 100% rename from components/HotelReservation/Contact/index.tsx rename to apps/scandic-web/components/HotelReservation/Contact/index.tsx diff --git a/components/HotelReservation/EnterDetails/BedType/BedTypeInfo/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/BedType/BedTypeInfo/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/BedType/BedTypeInfo/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/BedType/BedTypeInfo/index.tsx diff --git a/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/BedType/bedOptions.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css diff --git a/components/HotelReservation/EnterDetails/BedType/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/BedType/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/BedType/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/BedType/index.tsx diff --git a/components/HotelReservation/EnterDetails/BedType/schema.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/BedType/schema.ts similarity index 100% rename from components/HotelReservation/EnterDetails/BedType/schema.ts rename to apps/scandic-web/components/HotelReservation/EnterDetails/BedType/schema.ts diff --git a/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/ancillaryChoiceCard.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/ancillaryChoiceCard.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/ancillaryChoiceCard.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/ancillaryChoiceCard.module.css diff --git a/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/BreakfastChoiceCard/index.tsx diff --git a/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css diff --git a/components/HotelReservation/EnterDetails/Breakfast/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Breakfast/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/index.tsx diff --git a/components/HotelReservation/EnterDetails/Breakfast/schema.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/schema.ts similarity index 100% rename from components/HotelReservation/EnterDetails/Breakfast/schema.ts rename to apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/schema.ts diff --git a/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx similarity index 98% rename from components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx index 5786a9d39..efabb48c4 100644 --- a/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx @@ -87,7 +87,7 @@ export default function JoinScandicFriendsCard({
- {intl.formatMessage( + {intl.formatMessage( { id: "By signing up you accept the Scandic Friends Terms and Conditions. Your membership is valid until further notice, and you can terminate your membership at any time by sending an email to Scandic's customer service", }, diff --git a/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/joinScandicFriendsCard.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/joinScandicFriendsCard.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/joinScandicFriendsCard.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/joinScandicFriendsCard.module.css diff --git a/components/HotelReservation/EnterDetails/Details/MemberPriceModal/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/MemberPriceModal/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Details/MemberPriceModal/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/MemberPriceModal/index.tsx diff --git a/components/HotelReservation/EnterDetails/Details/MemberPriceModal/modal.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/MemberPriceModal/modal.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Details/MemberPriceModal/modal.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/MemberPriceModal/modal.module.css diff --git a/components/HotelReservation/EnterDetails/Details/Signup/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Signup/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Details/Signup/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/Signup/index.tsx diff --git a/components/HotelReservation/EnterDetails/Details/Signup/signup.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/Signup/signup.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Details/Signup/signup.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/Signup/signup.module.css diff --git a/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/index.tsx diff --git a/components/HotelReservation/EnterDetails/Details/SpecialRequests/specialRequests.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/specialRequests.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Details/SpecialRequests/specialRequests.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/SpecialRequests/specialRequests.module.css diff --git a/components/HotelReservation/EnterDetails/Details/details.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/details.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Details/details.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/details.module.css diff --git a/components/HotelReservation/EnterDetails/Details/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Details/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/index.tsx diff --git a/components/HotelReservation/EnterDetails/Details/schema.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/Details/schema.ts similarity index 100% rename from components/HotelReservation/EnterDetails/Details/schema.ts rename to apps/scandic-web/components/HotelReservation/EnterDetails/Details/schema.ts diff --git a/components/HotelReservation/EnterDetails/Header/ToggleSidePeek.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Header/ToggleSidePeek.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Header/ToggleSidePeek.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Header/ToggleSidePeek.tsx diff --git a/components/HotelReservation/EnterDetails/Header/header.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Header/header.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Header/header.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Header/header.module.css diff --git a/components/HotelReservation/EnterDetails/Header/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Header/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Header/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Header/index.tsx diff --git a/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/guaranteeDetails.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/guaranteeDetails.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/guaranteeDetails.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/guaranteeDetails.module.css diff --git a/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/GuaranteeDetails/index.tsx diff --git a/components/HotelReservation/EnterDetails/Payment/PaymentCallback/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentCallback/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/PaymentCallback/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentCallback/index.tsx diff --git a/components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx similarity index 99% rename from components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx index d41262981..87d2022e1 100644 --- a/components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentClient.tsx @@ -398,7 +398,7 @@ export default function PaymentClient({
- {intl.formatMessage( + {intl.formatMessage( { id: "By paying with any of the payment methods available, I accept the terms for this booking and the general Terms & Conditions, and understand that Scandic will process my personal data for this booking in accordance with Scandic's Privacy policy. I also accept that Scandic require a valid credit card during my visit in case anything is left unpaid.", }, diff --git a/components/HotelReservation/EnterDetails/Payment/PaymentOption/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/PaymentOption/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/index.tsx diff --git a/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.module.css diff --git a/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.ts similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.ts rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/PaymentOption/paymentOption.ts diff --git a/components/HotelReservation/EnterDetails/Payment/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/index.tsx diff --git a/components/HotelReservation/EnterDetails/Payment/payment.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/payment.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/payment.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/payment.module.css diff --git a/components/HotelReservation/EnterDetails/Payment/schema.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/Payment/schema.ts similarity index 100% rename from components/HotelReservation/EnterDetails/Payment/schema.ts rename to apps/scandic-web/components/HotelReservation/EnterDetails/Payment/schema.ts diff --git a/components/HotelReservation/EnterDetails/PriceChangeDialog/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/PriceChangeDialog/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/PriceChangeDialog/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/PriceChangeDialog/index.tsx diff --git a/components/HotelReservation/EnterDetails/PriceChangeDialog/priceChangeDialog.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/PriceChangeDialog/priceChangeDialog.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/PriceChangeDialog/priceChangeDialog.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/PriceChangeDialog/priceChangeDialog.module.css diff --git a/components/HotelReservation/EnterDetails/SectionAccordion/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/SectionAccordion/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/SectionAccordion/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/SectionAccordion/index.tsx diff --git a/components/HotelReservation/EnterDetails/SectionAccordion/sectionAccordion.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/SectionAccordion/sectionAccordion.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/SectionAccordion/sectionAccordion.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/SectionAccordion/sectionAccordion.module.css diff --git a/components/HotelReservation/EnterDetails/SelectedRoom/ToggleSidePeek.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/ToggleSidePeek.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/SelectedRoom/ToggleSidePeek.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/ToggleSidePeek.tsx diff --git a/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx similarity index 98% rename from components/HotelReservation/EnterDetails/SelectedRoom/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx index e9c28348a..c250ffc20 100644 --- a/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/index.tsx @@ -63,7 +63,7 @@ export default function SelectedRoom({ className={styles.description} color="uiTextHighContrast" > - {intl.formatMessage( + {intl.formatMessage( { id: "{roomType} {rateDescription}" }, { roomType: roomType, diff --git a/components/HotelReservation/EnterDetails/SelectedRoom/selectedRoom.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/selectedRoom.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/SelectedRoom/selectedRoom.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/SelectedRoom/selectedRoom.module.css diff --git a/components/HotelReservation/EnterDetails/StorageCleaner.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/StorageCleaner.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/StorageCleaner.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/StorageCleaner.tsx diff --git a/components/HotelReservation/EnterDetails/Summary/Desktop.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Desktop.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/Desktop.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Desktop.tsx diff --git a/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/bottomSheet.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/bottomSheet.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/bottomSheet.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/bottomSheet.module.css diff --git a/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/BottomSheet/index.tsx diff --git a/components/HotelReservation/EnterDetails/Summary/Mobile/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/index.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/Mobile/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/index.tsx diff --git a/components/HotelReservation/EnterDetails/Summary/Mobile/mobile.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/mobile.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/Mobile/mobile.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/Mobile/mobile.module.css diff --git a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx similarity index 99% rename from components/HotelReservation/EnterDetails/Summary/UI/index.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx index d9251ff2a..b80612c1c 100644 --- a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/index.tsx @@ -344,7 +344,7 @@ export default function SummaryUI({
- {intl.formatMessage( + {intl.formatMessage( { id: "Total price (incl VAT)" }, { b: (str) => {str} } )} diff --git a/components/HotelReservation/EnterDetails/Summary/UI/ui.module.css b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/ui.module.css similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/UI/ui.module.css rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/UI/ui.module.css diff --git a/components/HotelReservation/EnterDetails/Summary/summary.test.tsx b/apps/scandic-web/components/HotelReservation/EnterDetails/Summary/summary.test.tsx similarity index 100% rename from components/HotelReservation/EnterDetails/Summary/summary.test.tsx rename to apps/scandic-web/components/HotelReservation/EnterDetails/Summary/summary.test.tsx diff --git a/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css b/apps/scandic-web/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css similarity index 100% rename from components/HotelReservation/HotelCard/HotelCardSkeleton.module.css rename to apps/scandic-web/components/HotelReservation/HotelCard/HotelCardSkeleton.module.css diff --git a/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx b/apps/scandic-web/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx similarity index 100% rename from components/HotelReservation/HotelCard/HotelCardSkeleton.tsx rename to apps/scandic-web/components/HotelReservation/HotelCard/HotelCardSkeleton.tsx diff --git a/components/HotelReservation/HotelCard/HotelPriceCard/hotelPriceCard.module.css b/apps/scandic-web/components/HotelReservation/HotelCard/HotelPriceCard/hotelPriceCard.module.css similarity index 100% rename from components/HotelReservation/HotelCard/HotelPriceCard/hotelPriceCard.module.css rename to apps/scandic-web/components/HotelReservation/HotelCard/HotelPriceCard/hotelPriceCard.module.css diff --git a/components/HotelReservation/HotelCard/HotelPriceCard/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCard/HotelPriceCard/index.tsx similarity index 100% rename from components/HotelReservation/HotelCard/HotelPriceCard/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCard/HotelPriceCard/index.tsx diff --git a/components/HotelReservation/HotelCard/NoPriceAvailableCard/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCard/NoPriceAvailableCard/index.tsx similarity index 100% rename from components/HotelReservation/HotelCard/NoPriceAvailableCard/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCard/NoPriceAvailableCard/index.tsx diff --git a/components/HotelReservation/HotelCard/NoPriceAvailableCard/noPriceAvailable.module.css b/apps/scandic-web/components/HotelReservation/HotelCard/NoPriceAvailableCard/noPriceAvailable.module.css similarity index 100% rename from components/HotelReservation/HotelCard/NoPriceAvailableCard/noPriceAvailable.module.css rename to apps/scandic-web/components/HotelReservation/HotelCard/NoPriceAvailableCard/noPriceAvailable.module.css diff --git a/components/HotelReservation/HotelCard/hotelCard.module.css b/apps/scandic-web/components/HotelReservation/HotelCard/hotelCard.module.css similarity index 100% rename from components/HotelReservation/HotelCard/hotelCard.module.css rename to apps/scandic-web/components/HotelReservation/HotelCard/hotelCard.module.css diff --git a/components/HotelReservation/HotelCard/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCard/index.tsx similarity index 100% rename from components/HotelReservation/HotelCard/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCard/index.tsx diff --git a/components/HotelReservation/HotelCard/variants.ts b/apps/scandic-web/components/HotelReservation/HotelCard/variants.ts similarity index 100% rename from components/HotelReservation/HotelCard/variants.ts rename to apps/scandic-web/components/HotelReservation/HotelCard/variants.ts diff --git a/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/hotelCardDialogImage.module.css b/apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/hotelCardDialogImage.module.css similarity index 100% rename from components/HotelReservation/HotelCardDialog/HotelCardDialogImage/hotelCardDialogImage.module.css rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/hotelCardDialogImage.module.css diff --git a/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardDialog/HotelCardDialogImage/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/index.tsx diff --git a/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/variants.ts b/apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/variants.ts similarity index 100% rename from components/HotelReservation/HotelCardDialog/HotelCardDialogImage/variants.ts rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/HotelCardDialogImage/variants.ts diff --git a/components/HotelReservation/HotelCardDialog/ListingHotelCardDialog/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardDialog/ListingHotelCardDialog/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardDialog/ListingHotelCardDialog/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/ListingHotelCardDialog/index.tsx diff --git a/components/HotelReservation/HotelCardDialog/StandaloneHotelCardDialog/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardDialog/StandaloneHotelCardDialog/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardDialog/StandaloneHotelCardDialog/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/StandaloneHotelCardDialog/index.tsx diff --git a/components/HotelReservation/HotelCardDialog/hotelCardDialog.module.css b/apps/scandic-web/components/HotelReservation/HotelCardDialog/hotelCardDialog.module.css similarity index 100% rename from components/HotelReservation/HotelCardDialog/hotelCardDialog.module.css rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/hotelCardDialog.module.css diff --git a/components/HotelReservation/HotelCardDialog/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardDialog/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardDialog/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardDialog/index.tsx diff --git a/components/HotelReservation/HotelCardDialogListing/hotelCardDialogListing.module.css b/apps/scandic-web/components/HotelReservation/HotelCardDialogListing/hotelCardDialogListing.module.css similarity index 100% rename from components/HotelReservation/HotelCardDialogListing/hotelCardDialogListing.module.css rename to apps/scandic-web/components/HotelReservation/HotelCardDialogListing/hotelCardDialogListing.module.css diff --git a/components/HotelReservation/HotelCardDialogListing/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardDialogListing/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardDialogListing/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardDialogListing/index.tsx diff --git a/components/HotelReservation/HotelCardDialogListing/utils.ts b/apps/scandic-web/components/HotelReservation/HotelCardDialogListing/utils.ts similarity index 100% rename from components/HotelReservation/HotelCardDialogListing/utils.ts rename to apps/scandic-web/components/HotelReservation/HotelCardDialogListing/utils.ts diff --git a/components/HotelReservation/HotelCardListing/hotelCardListing.module.css b/apps/scandic-web/components/HotelReservation/HotelCardListing/hotelCardListing.module.css similarity index 100% rename from components/HotelReservation/HotelCardListing/hotelCardListing.module.css rename to apps/scandic-web/components/HotelReservation/HotelCardListing/hotelCardListing.module.css diff --git a/components/HotelReservation/HotelCardListing/index.tsx b/apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx similarity index 100% rename from components/HotelReservation/HotelCardListing/index.tsx rename to apps/scandic-web/components/HotelReservation/HotelCardListing/index.tsx diff --git a/components/HotelReservation/HotelCardListing/utils.ts b/apps/scandic-web/components/HotelReservation/HotelCardListing/utils.ts similarity index 100% rename from components/HotelReservation/HotelCardListing/utils.ts rename to apps/scandic-web/components/HotelReservation/HotelCardListing/utils.ts diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/addAncillaryFlowModal.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/addAncillaryFlowModal.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/addAncillaryFlowModal.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/addAncillaryFlowModal.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/index.tsx diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/confirmationStep.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/confirmationStep.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/confirmationStep.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/confirmationStep.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx similarity index 97% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx index d8f4bc18e..c1a1fada4 100644 --- a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/ConfirmationStep/index.tsx @@ -62,7 +62,7 @@ export default function ConfirmationStep() {
- {intl.formatMessage( + {intl.formatMessage( { id: "Yes, I accept the general Terms & Conditions, and understand that Scandic will process my personal data in accordance with Scandic's Privacy policy. There you can learn more about what data we process, your rights and where to turn if you have questions.", }, @@ -94,7 +94,7 @@ export default function ConfirmationStep() {
- {intl.formatMessage( + {intl.formatMessage( { id: "Total price (incl VAT)" }, { b: (str) => {str} } )} diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/deliveryDetailsStep.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/deliveryDetailsStep.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/deliveryDetailsStep.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/deliveryDetailsStep.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/DeliveryDetailsStep/index.tsx diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/index.tsx diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/selectQuantityStep.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/selectQuantityStep.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/selectQuantityStep.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/SelectQuantityStep/selectQuantityStep.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/schema.ts b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/schema.ts similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/schema.ts rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/schema.ts diff --git a/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/ancillaryGridModal.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/ancillaryGridModal.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/ancillaryGridModal.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/ancillaryGridModal.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AncillaryGridModal/index.tsx diff --git a/components/HotelReservation/MyStay/Ancillaries/ancillaries.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/ancillaries.module.css similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/ancillaries.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/ancillaries.module.css diff --git a/components/HotelReservation/MyStay/Ancillaries/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/index.tsx diff --git a/components/HotelReservation/MyStay/Ancillaries/utils.ts b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/utils.ts similarity index 100% rename from components/HotelReservation/MyStay/Ancillaries/utils.ts rename to apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/utils.ts diff --git a/components/HotelReservation/MyStay/BookingSummary/SummaryCard/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/SummaryCard/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/BookingSummary/SummaryCard/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/SummaryCard/index.tsx diff --git a/components/HotelReservation/MyStay/BookingSummary/SummaryCard/summaryCard.module.css b/apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/SummaryCard/summaryCard.module.css similarity index 100% rename from components/HotelReservation/MyStay/BookingSummary/SummaryCard/summaryCard.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/SummaryCard/summaryCard.module.css diff --git a/components/HotelReservation/MyStay/BookingSummary/bookingSummary.module.css b/apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/bookingSummary.module.css similarity index 100% rename from components/HotelReservation/MyStay/BookingSummary/bookingSummary.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/bookingSummary.module.css diff --git a/components/HotelReservation/MyStay/BookingSummary/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/BookingSummary/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/BookingSummary/index.tsx diff --git a/components/HotelReservation/MyStay/CancelStay/Confirmation/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/Confirmation/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/Confirmation/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/Confirmation/index.tsx diff --git a/components/HotelReservation/MyStay/CancelStay/FinalConfirmation/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/FinalConfirmation/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/FinalConfirmation/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/FinalConfirmation/index.tsx diff --git a/components/HotelReservation/MyStay/CancelStay/cancelStay.module.css b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/cancelStay.module.css similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/cancelStay.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/cancelStay.module.css diff --git a/components/HotelReservation/MyStay/CancelStay/hooks/useCancelStay.ts b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/hooks/useCancelStay.ts similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/hooks/useCancelStay.ts rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/hooks/useCancelStay.ts diff --git a/components/HotelReservation/MyStay/CancelStay/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/index.tsx diff --git a/components/HotelReservation/MyStay/CancelStay/utils.ts b/apps/scandic-web/components/HotelReservation/MyStay/CancelStay/utils.ts similarity index 100% rename from components/HotelReservation/MyStay/CancelStay/utils.ts rename to apps/scandic-web/components/HotelReservation/MyStay/CancelStay/utils.ts diff --git a/components/HotelReservation/MyStay/Header/header.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Header/header.module.css similarity index 100% rename from components/HotelReservation/MyStay/Header/header.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Header/header.module.css diff --git a/components/HotelReservation/MyStay/Header/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Header/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Header/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Header/index.tsx diff --git a/components/HotelReservation/MyStay/ManageStay/ActionPanel/Actions/AddToCalendarButton.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/Actions/AddToCalendarButton.tsx similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/ActionPanel/Actions/AddToCalendarButton.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/Actions/AddToCalendarButton.tsx diff --git a/components/HotelReservation/MyStay/ManageStay/ActionPanel/actionPanel.module.css b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/actionPanel.module.css similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/ActionPanel/actionPanel.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/actionPanel.module.css diff --git a/components/HotelReservation/MyStay/ManageStay/ActionPanel/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/ActionPanel/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ActionPanel/index.tsx diff --git a/components/HotelReservation/MyStay/ManageStay/ModalContent/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ModalContent/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/ModalContent/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ModalContent/index.tsx diff --git a/components/HotelReservation/MyStay/ManageStay/ModalContent/modalContent.module.css b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ModalContent/modalContent.module.css similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/ModalContent/modalContent.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/ModalContent/modalContent.module.css diff --git a/components/HotelReservation/MyStay/ManageStay/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/index.tsx diff --git a/components/HotelReservation/MyStay/ManageStay/modifyModal.module.css b/apps/scandic-web/components/HotelReservation/MyStay/ManageStay/modifyModal.module.css similarity index 100% rename from components/HotelReservation/MyStay/ManageStay/modifyModal.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/ManageStay/modifyModal.module.css diff --git a/components/HotelReservation/MyStay/Promo/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Promo/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Promo/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Promo/index.tsx diff --git a/components/HotelReservation/MyStay/Promo/promo.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Promo/promo.module.css similarity index 100% rename from components/HotelReservation/MyStay/Promo/promo.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Promo/promo.module.css diff --git a/components/HotelReservation/MyStay/ReferenceCard/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/ReferenceCard/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/index.tsx diff --git a/components/HotelReservation/MyStay/ReferenceCard/referenceCard.module.css b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/referenceCard.module.css similarity index 100% rename from components/HotelReservation/MyStay/ReferenceCard/referenceCard.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/referenceCard.module.css diff --git a/components/HotelReservation/MyStay/Room/GuestDetails.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Room/GuestDetails.tsx similarity index 100% rename from components/HotelReservation/MyStay/Room/GuestDetails.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Room/GuestDetails.tsx diff --git a/components/HotelReservation/MyStay/Room/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Room/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/Room/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/Room/index.tsx diff --git a/components/HotelReservation/MyStay/Room/room.module.css b/apps/scandic-web/components/HotelReservation/MyStay/Room/room.module.css similarity index 100% rename from components/HotelReservation/MyStay/Room/room.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/Room/room.module.css diff --git a/components/HotelReservation/MyStay/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/index.tsx similarity index 100% rename from components/HotelReservation/MyStay/index.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/index.tsx diff --git a/components/HotelReservation/MyStay/myStay.module.css b/apps/scandic-web/components/HotelReservation/MyStay/myStay.module.css similarity index 100% rename from components/HotelReservation/MyStay/myStay.module.css rename to apps/scandic-web/components/HotelReservation/MyStay/myStay.module.css diff --git a/components/HotelReservation/MyStay/myStaySkeleton.tsx b/apps/scandic-web/components/HotelReservation/MyStay/myStaySkeleton.tsx similarity index 100% rename from components/HotelReservation/MyStay/myStaySkeleton.tsx rename to apps/scandic-web/components/HotelReservation/MyStay/myStaySkeleton.tsx diff --git a/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx b/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx similarity index 100% rename from components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx rename to apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/index.tsx diff --git a/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/priceDetailsTable.module.css b/apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/priceDetailsTable.module.css similarity index 100% rename from components/HotelReservation/PriceDetailsModal/PriceDetailsTable/priceDetailsTable.module.css rename to apps/scandic-web/components/HotelReservation/PriceDetailsModal/PriceDetailsTable/priceDetailsTable.module.css diff --git a/components/HotelReservation/PriceDetailsModal/index.tsx b/apps/scandic-web/components/HotelReservation/PriceDetailsModal/index.tsx similarity index 100% rename from components/HotelReservation/PriceDetailsModal/index.tsx rename to apps/scandic-web/components/HotelReservation/PriceDetailsModal/index.tsx diff --git a/components/HotelReservation/ReadMore/index.tsx b/apps/scandic-web/components/HotelReservation/ReadMore/index.tsx similarity index 100% rename from components/HotelReservation/ReadMore/index.tsx rename to apps/scandic-web/components/HotelReservation/ReadMore/index.tsx diff --git a/components/HotelReservation/ReadMore/readMore.module.css b/apps/scandic-web/components/HotelReservation/ReadMore/readMore.module.css similarity index 100% rename from components/HotelReservation/ReadMore/readMore.module.css rename to apps/scandic-web/components/HotelReservation/ReadMore/readMore.module.css diff --git a/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.module.css b/apps/scandic-web/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.module.css similarity index 100% rename from components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.module.css rename to apps/scandic-web/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.module.css diff --git a/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.tsx b/apps/scandic-web/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.tsx similarity index 100% rename from components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.tsx rename to apps/scandic-web/components/HotelReservation/RoomCardSkeleton/RoomCardSkeleton.tsx diff --git a/components/HotelReservation/SelectHotel/BookingCodeFilter/bookingCodeFilter.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/bookingCodeFilter.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/BookingCodeFilter/bookingCodeFilter.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/bookingCodeFilter.module.css diff --git a/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/BookingCodeFilter/index.tsx diff --git a/components/HotelReservation/SelectHotel/FilterAndSortModal/filterAndSortModal.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/FilterAndSortModal/filterAndSortModal.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/FilterAndSortModal/filterAndSortModal.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/FilterAndSortModal/filterAndSortModal.module.css diff --git a/components/HotelReservation/SelectHotel/FilterAndSortModal/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/FilterAndSortModal/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/FilterAndSortModal/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/FilterAndSortModal/index.tsx diff --git a/components/HotelReservation/SelectHotel/HotelCount/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelCount/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/HotelCount/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelCount/index.tsx diff --git a/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/filterCheckbox.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/filterCheckbox.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/filterCheckbox.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/filterCheckbox.module.css diff --git a/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/FilterCheckbox/index.tsx diff --git a/components/HotelReservation/SelectHotel/HotelFilter/hotelFilter.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/hotelFilter.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/HotelFilter/hotelFilter.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/hotelFilter.module.css diff --git a/components/HotelReservation/SelectHotel/HotelFilter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/HotelFilter/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelFilter/index.tsx diff --git a/components/HotelReservation/SelectHotel/HotelSorter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/HotelSorter/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/HotelSorter/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/HotelSorter/index.tsx diff --git a/components/HotelReservation/SelectHotel/MobileMapButtonContainer/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/MobileMapButtonContainer/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/MobileMapButtonContainer/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/MobileMapButtonContainer/index.tsx diff --git a/components/HotelReservation/SelectHotel/MobileMapButtonContainer/mobileMapButtonContainer.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/MobileMapButtonContainer/mobileMapButtonContainer.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/MobileMapButtonContainer/mobileMapButtonContainer.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/MobileMapButtonContainer/mobileMapButtonContainer.module.css diff --git a/components/HotelReservation/SelectHotel/NoAvailabilityAlert.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/NoAvailabilityAlert.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/NoAvailabilityAlert.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/NoAvailabilityAlert.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/hotelListing.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/hotelListing.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/hotelListing.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/hotelListing.module.css diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/HotelListing/index.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainer.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainer.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainer.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainer.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.module.css diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContainerSkeleton.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/index.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/selectHotelMapContent.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/selectHotelMapContent.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/selectHotelMapContent.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/selectHotelMapContent.module.css diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/utils.ts b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/utils.ts similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/utils.ts rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/SelectHotelMapContent/utils.ts diff --git a/components/HotelReservation/SelectHotel/SelectHotelMap/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelMap/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelMap/index.tsx diff --git a/components/HotelReservation/SelectHotel/SelectHotelSkeleton.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelSkeleton.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/SelectHotelSkeleton.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/SelectHotelSkeleton.tsx diff --git a/components/HotelReservation/SelectHotel/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx similarity index 100% rename from components/HotelReservation/SelectHotel/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx diff --git a/components/HotelReservation/SelectHotel/selectHotel.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css similarity index 100% rename from components/HotelReservation/SelectHotel/selectHotel.module.css rename to apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css diff --git a/components/HotelReservation/SelectRate/HotelInfoCard/hotelInfoCard.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/hotelInfoCard.module.css similarity index 100% rename from components/HotelReservation/SelectRate/HotelInfoCard/hotelInfoCard.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/hotelInfoCard.module.css diff --git a/components/HotelReservation/SelectRate/HotelInfoCard/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/HotelInfoCard/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/HotelInfoCard/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx similarity index 99% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx index 103bc5ee5..6881d6675 100644 --- a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/Summary.tsx @@ -230,7 +230,7 @@ export default function Summary({
- {intl.formatMessage( + {intl.formatMessage( { id: "Total price (incl VAT)" }, { b: (str) => {str} } )} diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/mobileSummary.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/mobileSummary.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/mobileSummary.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/mobileSummary.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/summary.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/summary.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/summary.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/MobileSummary/summary.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx similarity index 98% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx index 3102c9182..98cce62a7 100644 --- a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/index.tsx @@ -109,7 +109,7 @@ export default function RateSummary({ isUserLoggedIn }: RateSummaryProps) { } } - function handleSubmit(e: React.FormEvent) { + function handleSubmit(e: React.FormEvent) { e.preventDefault() startTransition(() => { router.push(`details?${params}`) @@ -213,7 +213,7 @@ export default function RateSummary({ isUserLoggedIn }: RateSummaryProps) { )}
- {intl.formatMessage( + {intl.formatMessage( { id: "Total price (incl VAT)" }, { b: (str) => {str} } )} diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/rateSummary.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/rateSummary.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/rateSummary.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/rateSummary.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/utils.ts b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/utils.ts similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RateSummary/utils.ts rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RateSummary/utils.ts diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/selectedRoomPanel.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/selectedRoomPanel.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/selectedRoomPanel.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/SelectedRoomPanel/selectedRoomPanel.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/multiRoomWrapper.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/multiRoomWrapper.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/multiRoomWrapper.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/multiRoomWrapper.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/variants.ts b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/variants.ts similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/variants.ts rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/MultiRoomWrapper/variants.ts diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/priceList.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/priceList.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/priceList.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/priceList.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/utils.ts b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/utils.ts similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/utils.ts rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/PriceList/utils.ts diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/flexibilityOption.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/flexibilityOption.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/flexibilityOption.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/flexibilityOption.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/FlexibilityOption/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/RoomSize.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/RoomSize.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/RoomSize.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/RoomSize.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/cardVariants.ts b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/cardVariants.ts similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/cardVariants.ts rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/cardVariants.ts diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/roomCard.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/roomCard.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/roomCard.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomCard/roomCard.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/roomFilter.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/roomFilter.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/roomFilter.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/RoomTypeFilter/roomFilter.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/roomSelectionPanel.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/roomSelectionPanel.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/roomSelectionPanel.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/RoomSelectionPanel/roomSelectionPanel.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/index.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/Rooms/rooms.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/rooms.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/Rooms/rooms.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/Rooms/rooms.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.module.css b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.module.css similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.module.css rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.module.css diff --git a/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/RoomsContainerSkeleton.tsx diff --git a/components/HotelReservation/SelectRate/RoomsContainer/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/RoomsContainer/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/RoomsContainer/index.tsx diff --git a/components/HotelReservation/SelectRate/index.tsx b/apps/scandic-web/components/HotelReservation/SelectRate/index.tsx similarity index 100% rename from components/HotelReservation/SelectRate/index.tsx rename to apps/scandic-web/components/HotelReservation/SelectRate/index.tsx diff --git a/components/HotelReservation/SelectRate/utils.ts b/apps/scandic-web/components/HotelReservation/SelectRate/utils.ts similarity index 100% rename from components/HotelReservation/SelectRate/utils.ts rename to apps/scandic-web/components/HotelReservation/SelectRate/utils.ts diff --git a/components/HotelReservation/SidePanel/index.tsx b/apps/scandic-web/components/HotelReservation/SidePanel/index.tsx similarity index 100% rename from components/HotelReservation/SidePanel/index.tsx rename to apps/scandic-web/components/HotelReservation/SidePanel/index.tsx diff --git a/components/HotelReservation/SidePanel/sidePanel.module.css b/apps/scandic-web/components/HotelReservation/SidePanel/sidePanel.module.css similarity index 100% rename from components/HotelReservation/SidePanel/sidePanel.module.css rename to apps/scandic-web/components/HotelReservation/SidePanel/sidePanel.module.css diff --git a/components/HotelReservation/SidePanel/variants.ts b/apps/scandic-web/components/HotelReservation/SidePanel/variants.ts similarity index 100% rename from components/HotelReservation/SidePanel/variants.ts rename to apps/scandic-web/components/HotelReservation/SidePanel/variants.ts diff --git a/components/HotelReservation/SidePeek/hotelReservationSidePeek.module.css b/apps/scandic-web/components/HotelReservation/SidePeek/hotelReservationSidePeek.module.css similarity index 100% rename from components/HotelReservation/SidePeek/hotelReservationSidePeek.module.css rename to apps/scandic-web/components/HotelReservation/SidePeek/hotelReservationSidePeek.module.css diff --git a/components/HotelReservation/SidePeek/index.tsx b/apps/scandic-web/components/HotelReservation/SidePeek/index.tsx similarity index 100% rename from components/HotelReservation/SidePeek/index.tsx rename to apps/scandic-web/components/HotelReservation/SidePeek/index.tsx diff --git a/components/HotelReservation/SignupPromo/Desktop.tsx b/apps/scandic-web/components/HotelReservation/SignupPromo/Desktop.tsx similarity index 96% rename from components/HotelReservation/SignupPromo/Desktop.tsx rename to apps/scandic-web/components/HotelReservation/SignupPromo/Desktop.tsx index a774e2d5c..b0729a85e 100644 --- a/components/HotelReservation/SignupPromo/Desktop.tsx +++ b/apps/scandic-web/components/HotelReservation/SignupPromo/Desktop.tsx @@ -28,7 +28,7 @@ export default function SignupPromoDesktop({ > {badgeContent && {badgeContent}} - {intl.formatMessage( + {intl.formatMessage( { id: "To get the member price {price}, log in or join when completing the booking.", }, diff --git a/components/HotelReservation/SignupPromo/Mobile.tsx b/apps/scandic-web/components/HotelReservation/SignupPromo/Mobile.tsx similarity index 100% rename from components/HotelReservation/SignupPromo/Mobile.tsx rename to apps/scandic-web/components/HotelReservation/SignupPromo/Mobile.tsx diff --git a/components/HotelReservation/SignupPromo/signupPromo.module.css b/apps/scandic-web/components/HotelReservation/SignupPromo/signupPromo.module.css similarity index 100% rename from components/HotelReservation/SignupPromo/signupPromo.module.css rename to apps/scandic-web/components/HotelReservation/SignupPromo/signupPromo.module.css diff --git a/components/HotelReservation/TripAdvisorChip/index.tsx b/apps/scandic-web/components/HotelReservation/TripAdvisorChip/index.tsx similarity index 100% rename from components/HotelReservation/TripAdvisorChip/index.tsx rename to apps/scandic-web/components/HotelReservation/TripAdvisorChip/index.tsx diff --git a/components/HotelReservation/TripAdvisorChip/tripAdvisorChip.module.css b/apps/scandic-web/components/HotelReservation/TripAdvisorChip/tripAdvisorChip.module.css similarity index 100% rename from components/HotelReservation/TripAdvisorChip/tripAdvisorChip.module.css rename to apps/scandic-web/components/HotelReservation/TripAdvisorChip/tripAdvisorChip.module.css diff --git a/components/HotelReservation/utils.ts b/apps/scandic-web/components/HotelReservation/utils.ts similarity index 100% rename from components/HotelReservation/utils.ts rename to apps/scandic-web/components/HotelReservation/utils.ts diff --git a/components/Icons/Ac.tsx b/apps/scandic-web/components/Icons/Ac.tsx similarity index 100% rename from components/Icons/Ac.tsx rename to apps/scandic-web/components/Icons/Ac.tsx diff --git a/components/Icons/Accesories.tsx b/apps/scandic-web/components/Icons/Accesories.tsx similarity index 100% rename from components/Icons/Accesories.tsx rename to apps/scandic-web/components/Icons/Accesories.tsx diff --git a/components/Icons/Accessibility.tsx b/apps/scandic-web/components/Icons/Accessibility.tsx similarity index 100% rename from components/Icons/Accessibility.tsx rename to apps/scandic-web/components/Icons/Accessibility.tsx diff --git a/components/Icons/AccountCircle.tsx b/apps/scandic-web/components/Icons/AccountCircle.tsx similarity index 100% rename from components/Icons/AccountCircle.tsx rename to apps/scandic-web/components/Icons/AccountCircle.tsx diff --git a/components/Icons/Air.tsx b/apps/scandic-web/components/Icons/Air.tsx similarity index 100% rename from components/Icons/Air.tsx rename to apps/scandic-web/components/Icons/Air.tsx diff --git a/components/Icons/Airplane.tsx b/apps/scandic-web/components/Icons/Airplane.tsx similarity index 100% rename from components/Icons/Airplane.tsx rename to apps/scandic-web/components/Icons/Airplane.tsx diff --git a/components/Icons/Allergy.tsx b/apps/scandic-web/components/Icons/Allergy.tsx similarity index 100% rename from components/Icons/Allergy.tsx rename to apps/scandic-web/components/Icons/Allergy.tsx diff --git a/components/Icons/ArrowRight.tsx b/apps/scandic-web/components/Icons/ArrowRight.tsx similarity index 100% rename from components/Icons/ArrowRight.tsx rename to apps/scandic-web/components/Icons/ArrowRight.tsx diff --git a/components/Icons/ArrowUp.tsx b/apps/scandic-web/components/Icons/ArrowUp.tsx similarity index 100% rename from components/Icons/ArrowUp.tsx rename to apps/scandic-web/components/Icons/ArrowUp.tsx diff --git a/components/Icons/Balcony.tsx b/apps/scandic-web/components/Icons/Balcony.tsx similarity index 100% rename from components/Icons/Balcony.tsx rename to apps/scandic-web/components/Icons/Balcony.tsx diff --git a/components/Icons/Bar.tsx b/apps/scandic-web/components/Icons/Bar.tsx similarity index 100% rename from components/Icons/Bar.tsx rename to apps/scandic-web/components/Icons/Bar.tsx diff --git a/components/Icons/Bathtub.tsx b/apps/scandic-web/components/Icons/Bathtub.tsx similarity index 100% rename from components/Icons/Bathtub.tsx rename to apps/scandic-web/components/Icons/Bathtub.tsx diff --git a/components/Icons/BedHotel.tsx b/apps/scandic-web/components/Icons/BedHotel.tsx similarity index 100% rename from components/Icons/BedHotel.tsx rename to apps/scandic-web/components/Icons/BedHotel.tsx diff --git a/components/Icons/BedroomParent.tsx b/apps/scandic-web/components/Icons/BedroomParent.tsx similarity index 100% rename from components/Icons/BedroomParent.tsx rename to apps/scandic-web/components/Icons/BedroomParent.tsx diff --git a/components/Icons/Beds/Bed.tsx b/apps/scandic-web/components/Icons/Beds/Bed.tsx similarity index 100% rename from components/Icons/Beds/Bed.tsx rename to apps/scandic-web/components/Icons/Beds/Bed.tsx diff --git a/components/Icons/Beds/BedDouble.tsx b/apps/scandic-web/components/Icons/Beds/BedDouble.tsx similarity index 100% rename from components/Icons/Beds/BedDouble.tsx rename to apps/scandic-web/components/Icons/Beds/BedDouble.tsx diff --git a/components/Icons/Beds/BedSingle.tsx b/apps/scandic-web/components/Icons/Beds/BedSingle.tsx similarity index 100% rename from components/Icons/Beds/BedSingle.tsx rename to apps/scandic-web/components/Icons/Beds/BedSingle.tsx diff --git a/components/Icons/Beds/ExtraBunkBed.tsx b/apps/scandic-web/components/Icons/Beds/ExtraBunkBed.tsx similarity index 100% rename from components/Icons/Beds/ExtraBunkBed.tsx rename to apps/scandic-web/components/Icons/Beds/ExtraBunkBed.tsx diff --git a/components/Icons/Beds/ExtraPullOutBed.tsx b/apps/scandic-web/components/Icons/Beds/ExtraPullOutBed.tsx similarity index 100% rename from components/Icons/Beds/ExtraPullOutBed.tsx rename to apps/scandic-web/components/Icons/Beds/ExtraPullOutBed.tsx diff --git a/components/Icons/Beds/ExtraSofaBed.tsx b/apps/scandic-web/components/Icons/Beds/ExtraSofaBed.tsx similarity index 100% rename from components/Icons/Beds/ExtraSofaBed.tsx rename to apps/scandic-web/components/Icons/Beds/ExtraSofaBed.tsx diff --git a/components/Icons/Beds/ExtraWallBed.tsx b/apps/scandic-web/components/Icons/Beds/ExtraWallBed.tsx similarity index 100% rename from components/Icons/Beds/ExtraWallBed.tsx rename to apps/scandic-web/components/Icons/Beds/ExtraWallBed.tsx diff --git a/components/Icons/Beds/KingBed.tsx b/apps/scandic-web/components/Icons/Beds/KingBed.tsx similarity index 100% rename from components/Icons/Beds/KingBed.tsx rename to apps/scandic-web/components/Icons/Beds/KingBed.tsx diff --git a/components/Icons/Beds/KingBedSmall.tsx b/apps/scandic-web/components/Icons/Beds/KingBedSmall.tsx similarity index 100% rename from components/Icons/Beds/KingBedSmall.tsx rename to apps/scandic-web/components/Icons/Beds/KingBedSmall.tsx diff --git a/components/Icons/Beds/QueenBed.tsx b/apps/scandic-web/components/Icons/Beds/QueenBed.tsx similarity index 100% rename from components/Icons/Beds/QueenBed.tsx rename to apps/scandic-web/components/Icons/Beds/QueenBed.tsx diff --git a/components/Icons/Beds/SingleBed.tsx b/apps/scandic-web/components/Icons/Beds/SingleBed.tsx similarity index 100% rename from components/Icons/Beds/SingleBed.tsx rename to apps/scandic-web/components/Icons/Beds/SingleBed.tsx diff --git a/components/Icons/Beds/TwinBeds.tsx b/apps/scandic-web/components/Icons/Beds/TwinBeds.tsx similarity index 100% rename from components/Icons/Beds/TwinBeds.tsx rename to apps/scandic-web/components/Icons/Beds/TwinBeds.tsx diff --git a/components/Icons/Bike.tsx b/apps/scandic-web/components/Icons/Bike.tsx similarity index 100% rename from components/Icons/Bike.tsx rename to apps/scandic-web/components/Icons/Bike.tsx diff --git a/components/Icons/Biking.tsx b/apps/scandic-web/components/Icons/Biking.tsx similarity index 100% rename from components/Icons/Biking.tsx rename to apps/scandic-web/components/Icons/Biking.tsx diff --git a/components/Icons/Breakfast.tsx b/apps/scandic-web/components/Icons/Breakfast.tsx similarity index 100% rename from components/Icons/Breakfast.tsx rename to apps/scandic-web/components/Icons/Breakfast.tsx diff --git a/components/Icons/Business.tsx b/apps/scandic-web/components/Icons/Business.tsx similarity index 100% rename from components/Icons/Business.tsx rename to apps/scandic-web/components/Icons/Business.tsx diff --git a/components/Icons/Cable.tsx b/apps/scandic-web/components/Icons/Cable.tsx similarity index 100% rename from components/Icons/Cable.tsx rename to apps/scandic-web/components/Icons/Cable.tsx diff --git a/components/Icons/Calendar.tsx b/apps/scandic-web/components/Icons/Calendar.tsx similarity index 100% rename from components/Icons/Calendar.tsx rename to apps/scandic-web/components/Icons/Calendar.tsx diff --git a/components/Icons/CalendarAdd.tsx b/apps/scandic-web/components/Icons/CalendarAdd.tsx similarity index 100% rename from components/Icons/CalendarAdd.tsx rename to apps/scandic-web/components/Icons/CalendarAdd.tsx diff --git a/components/Icons/Camera.tsx b/apps/scandic-web/components/Icons/Camera.tsx similarity index 100% rename from components/Icons/Camera.tsx rename to apps/scandic-web/components/Icons/Camera.tsx diff --git a/components/Icons/Cellphone.tsx b/apps/scandic-web/components/Icons/Cellphone.tsx similarity index 100% rename from components/Icons/Cellphone.tsx rename to apps/scandic-web/components/Icons/Cellphone.tsx diff --git a/components/Icons/Chair.tsx b/apps/scandic-web/components/Icons/Chair.tsx similarity index 100% rename from components/Icons/Chair.tsx rename to apps/scandic-web/components/Icons/Chair.tsx diff --git a/components/Icons/Check.tsx b/apps/scandic-web/components/Icons/Check.tsx similarity index 100% rename from components/Icons/Check.tsx rename to apps/scandic-web/components/Icons/Check.tsx diff --git a/components/Icons/CheckCircle.tsx b/apps/scandic-web/components/Icons/CheckCircle.tsx similarity index 100% rename from components/Icons/CheckCircle.tsx rename to apps/scandic-web/components/Icons/CheckCircle.tsx diff --git a/components/Icons/ChevronDown.tsx b/apps/scandic-web/components/Icons/ChevronDown.tsx similarity index 100% rename from components/Icons/ChevronDown.tsx rename to apps/scandic-web/components/Icons/ChevronDown.tsx diff --git a/components/Icons/ChevronDownSmall.tsx b/apps/scandic-web/components/Icons/ChevronDownSmall.tsx similarity index 100% rename from components/Icons/ChevronDownSmall.tsx rename to apps/scandic-web/components/Icons/ChevronDownSmall.tsx diff --git a/components/Icons/ChevronLeft.tsx b/apps/scandic-web/components/Icons/ChevronLeft.tsx similarity index 100% rename from components/Icons/ChevronLeft.tsx rename to apps/scandic-web/components/Icons/ChevronLeft.tsx diff --git a/components/Icons/ChevronLeftSmall.tsx b/apps/scandic-web/components/Icons/ChevronLeftSmall.tsx similarity index 100% rename from components/Icons/ChevronLeftSmall.tsx rename to apps/scandic-web/components/Icons/ChevronLeftSmall.tsx diff --git a/components/Icons/ChevronRight.tsx b/apps/scandic-web/components/Icons/ChevronRight.tsx similarity index 100% rename from components/Icons/ChevronRight.tsx rename to apps/scandic-web/components/Icons/ChevronRight.tsx diff --git a/components/Icons/ChevronRightSmall.tsx b/apps/scandic-web/components/Icons/ChevronRightSmall.tsx similarity index 100% rename from components/Icons/ChevronRightSmall.tsx rename to apps/scandic-web/components/Icons/ChevronRightSmall.tsx diff --git a/components/Icons/ChevronUp.tsx b/apps/scandic-web/components/Icons/ChevronUp.tsx similarity index 100% rename from components/Icons/ChevronUp.tsx rename to apps/scandic-web/components/Icons/ChevronUp.tsx diff --git a/components/Icons/ChevronUpSmall.tsx b/apps/scandic-web/components/Icons/ChevronUpSmall.tsx similarity index 100% rename from components/Icons/ChevronUpSmall.tsx rename to apps/scandic-web/components/Icons/ChevronUpSmall.tsx diff --git a/components/Icons/City.tsx b/apps/scandic-web/components/Icons/City.tsx similarity index 100% rename from components/Icons/City.tsx rename to apps/scandic-web/components/Icons/City.tsx diff --git a/components/Icons/Close.tsx b/apps/scandic-web/components/Icons/Close.tsx similarity index 100% rename from components/Icons/Close.tsx rename to apps/scandic-web/components/Icons/Close.tsx diff --git a/components/Icons/CloseLarge.tsx b/apps/scandic-web/components/Icons/CloseLarge.tsx similarity index 100% rename from components/Icons/CloseLarge.tsx rename to apps/scandic-web/components/Icons/CloseLarge.tsx diff --git a/components/Icons/Coffee.tsx b/apps/scandic-web/components/Icons/Coffee.tsx similarity index 100% rename from components/Icons/Coffee.tsx rename to apps/scandic-web/components/Icons/Coffee.tsx diff --git a/components/Icons/CoffeeAlt.tsx b/apps/scandic-web/components/Icons/CoffeeAlt.tsx similarity index 100% rename from components/Icons/CoffeeAlt.tsx rename to apps/scandic-web/components/Icons/CoffeeAlt.tsx diff --git a/components/Icons/CoffeeMaker.tsx b/apps/scandic-web/components/Icons/CoffeeMaker.tsx similarity index 100% rename from components/Icons/CoffeeMaker.tsx rename to apps/scandic-web/components/Icons/CoffeeMaker.tsx diff --git a/components/Icons/Coin.tsx b/apps/scandic-web/components/Icons/Coin.tsx similarity index 100% rename from components/Icons/Coin.tsx rename to apps/scandic-web/components/Icons/Coin.tsx diff --git a/components/Icons/CompareArrows.tsx b/apps/scandic-web/components/Icons/CompareArrows.tsx similarity index 100% rename from components/Icons/CompareArrows.tsx rename to apps/scandic-web/components/Icons/CompareArrows.tsx diff --git a/components/Icons/Concierge.tsx b/apps/scandic-web/components/Icons/Concierge.tsx similarity index 100% rename from components/Icons/Concierge.tsx rename to apps/scandic-web/components/Icons/Concierge.tsx diff --git a/components/Icons/Contract.tsx b/apps/scandic-web/components/Icons/Contract.tsx similarity index 100% rename from components/Icons/Contract.tsx rename to apps/scandic-web/components/Icons/Contract.tsx diff --git a/components/Icons/ConvenienceStore24h.tsx b/apps/scandic-web/components/Icons/ConvenienceStore24h.tsx similarity index 100% rename from components/Icons/ConvenienceStore24h.tsx rename to apps/scandic-web/components/Icons/ConvenienceStore24h.tsx diff --git a/components/Icons/Cool.tsx b/apps/scandic-web/components/Icons/Cool.tsx similarity index 100% rename from components/Icons/Cool.tsx rename to apps/scandic-web/components/Icons/Cool.tsx diff --git a/components/Icons/Copy.tsx b/apps/scandic-web/components/Icons/Copy.tsx similarity index 100% rename from components/Icons/Copy.tsx rename to apps/scandic-web/components/Icons/Copy.tsx diff --git a/components/Icons/CreditCard.tsx b/apps/scandic-web/components/Icons/CreditCard.tsx similarity index 100% rename from components/Icons/CreditCard.tsx rename to apps/scandic-web/components/Icons/CreditCard.tsx diff --git a/components/Icons/CreditCardAdd.tsx b/apps/scandic-web/components/Icons/CreditCardAdd.tsx similarity index 100% rename from components/Icons/CreditCardAdd.tsx rename to apps/scandic-web/components/Icons/CreditCardAdd.tsx diff --git a/components/Icons/CroissantCoffeeEgg.tsx b/apps/scandic-web/components/Icons/CroissantCoffeeEgg.tsx similarity index 100% rename from components/Icons/CroissantCoffeeEgg.tsx rename to apps/scandic-web/components/Icons/CroissantCoffeeEgg.tsx diff --git a/components/Icons/CrossCircle.tsx b/apps/scandic-web/components/Icons/CrossCircle.tsx similarity index 100% rename from components/Icons/CrossCircle.tsx rename to apps/scandic-web/components/Icons/CrossCircle.tsx diff --git a/components/Icons/CrossCircleOutline.tsx b/apps/scandic-web/components/Icons/CrossCircleOutline.tsx similarity index 100% rename from components/Icons/CrossCircleOutline.tsx rename to apps/scandic-web/components/Icons/CrossCircleOutline.tsx diff --git a/components/Icons/Cultural.tsx b/apps/scandic-web/components/Icons/Cultural.tsx similarity index 100% rename from components/Icons/Cultural.tsx rename to apps/scandic-web/components/Icons/Cultural.tsx diff --git a/components/Icons/CutleryOne.tsx b/apps/scandic-web/components/Icons/CutleryOne.tsx similarity index 100% rename from components/Icons/CutleryOne.tsx rename to apps/scandic-web/components/Icons/CutleryOne.tsx diff --git a/components/Icons/CutleryTwo.tsx b/apps/scandic-web/components/Icons/CutleryTwo.tsx similarity index 100% rename from components/Icons/CutleryTwo.tsx rename to apps/scandic-web/components/Icons/CutleryTwo.tsx diff --git a/components/Icons/Delete.tsx b/apps/scandic-web/components/Icons/Delete.tsx similarity index 100% rename from components/Icons/Delete.tsx rename to apps/scandic-web/components/Icons/Delete.tsx diff --git a/components/Icons/Desk.tsx b/apps/scandic-web/components/Icons/Desk.tsx similarity index 100% rename from components/Icons/Desk.tsx rename to apps/scandic-web/components/Icons/Desk.tsx diff --git a/components/Icons/Diamond.tsx b/apps/scandic-web/components/Icons/Diamond.tsx similarity index 100% rename from components/Icons/Diamond.tsx rename to apps/scandic-web/components/Icons/Diamond.tsx diff --git a/components/Icons/Dining.tsx b/apps/scandic-web/components/Icons/Dining.tsx similarity index 100% rename from components/Icons/Dining.tsx rename to apps/scandic-web/components/Icons/Dining.tsx diff --git a/components/Icons/Directions.tsx b/apps/scandic-web/components/Icons/Directions.tsx similarity index 100% rename from components/Icons/Directions.tsx rename to apps/scandic-web/components/Icons/Directions.tsx diff --git a/components/Icons/Discount.tsx b/apps/scandic-web/components/Icons/Discount.tsx similarity index 100% rename from components/Icons/Discount.tsx rename to apps/scandic-web/components/Icons/Discount.tsx diff --git a/components/Icons/DoorClosed.tsx b/apps/scandic-web/components/Icons/DoorClosed.tsx similarity index 100% rename from components/Icons/DoorClosed.tsx rename to apps/scandic-web/components/Icons/DoorClosed.tsx diff --git a/components/Icons/DoorOpen.tsx b/apps/scandic-web/components/Icons/DoorOpen.tsx similarity index 100% rename from components/Icons/DoorOpen.tsx rename to apps/scandic-web/components/Icons/DoorOpen.tsx diff --git a/components/Icons/Download.tsx b/apps/scandic-web/components/Icons/Download.tsx similarity index 100% rename from components/Icons/Download.tsx rename to apps/scandic-web/components/Icons/Download.tsx diff --git a/components/Icons/Dresser.tsx b/apps/scandic-web/components/Icons/Dresser.tsx similarity index 100% rename from components/Icons/Dresser.tsx rename to apps/scandic-web/components/Icons/Dresser.tsx diff --git a/components/Icons/Edit.tsx b/apps/scandic-web/components/Icons/Edit.tsx similarity index 100% rename from components/Icons/Edit.tsx rename to apps/scandic-web/components/Icons/Edit.tsx diff --git a/components/Icons/ElectricBike.tsx b/apps/scandic-web/components/Icons/ElectricBike.tsx similarity index 100% rename from components/Icons/ElectricBike.tsx rename to apps/scandic-web/components/Icons/ElectricBike.tsx diff --git a/components/Icons/ElectricCar.tsx b/apps/scandic-web/components/Icons/ElectricCar.tsx similarity index 100% rename from components/Icons/ElectricCar.tsx rename to apps/scandic-web/components/Icons/ElectricCar.tsx diff --git a/components/Icons/Email.tsx b/apps/scandic-web/components/Icons/Email.tsx similarity index 100% rename from components/Icons/Email.tsx rename to apps/scandic-web/components/Icons/Email.tsx diff --git a/components/Icons/ErrorCircle.tsx b/apps/scandic-web/components/Icons/ErrorCircle.tsx similarity index 100% rename from components/Icons/ErrorCircle.tsx rename to apps/scandic-web/components/Icons/ErrorCircle.tsx diff --git a/components/Icons/ErrorCircleFilled.tsx b/apps/scandic-web/components/Icons/ErrorCircleFilled.tsx similarity index 100% rename from components/Icons/ErrorCircleFilled.tsx rename to apps/scandic-web/components/Icons/ErrorCircleFilled.tsx diff --git a/components/Icons/EyeHide.tsx b/apps/scandic-web/components/Icons/EyeHide.tsx similarity index 100% rename from components/Icons/EyeHide.tsx rename to apps/scandic-web/components/Icons/EyeHide.tsx diff --git a/components/Icons/EyeShow.tsx b/apps/scandic-web/components/Icons/EyeShow.tsx similarity index 100% rename from components/Icons/EyeShow.tsx rename to apps/scandic-web/components/Icons/EyeShow.tsx diff --git a/components/Icons/Facebook.tsx b/apps/scandic-web/components/Icons/Facebook.tsx similarity index 100% rename from components/Icons/Facebook.tsx rename to apps/scandic-web/components/Icons/Facebook.tsx diff --git a/components/Icons/Family.tsx b/apps/scandic-web/components/Icons/Family.tsx similarity index 100% rename from components/Icons/Family.tsx rename to apps/scandic-web/components/Icons/Family.tsx diff --git a/components/Icons/Fan.tsx b/apps/scandic-web/components/Icons/Fan.tsx similarity index 100% rename from components/Icons/Fan.tsx rename to apps/scandic-web/components/Icons/Fan.tsx diff --git a/components/Icons/FilledHeart.tsx b/apps/scandic-web/components/Icons/FilledHeart.tsx similarity index 100% rename from components/Icons/FilledHeart.tsx rename to apps/scandic-web/components/Icons/FilledHeart.tsx diff --git a/components/Icons/Filter.tsx b/apps/scandic-web/components/Icons/Filter.tsx similarity index 100% rename from components/Icons/Filter.tsx rename to apps/scandic-web/components/Icons/Filter.tsx diff --git a/components/Icons/Fitness.tsx b/apps/scandic-web/components/Icons/Fitness.tsx similarity index 100% rename from components/Icons/Fitness.tsx rename to apps/scandic-web/components/Icons/Fitness.tsx diff --git a/components/Icons/Footstool.tsx b/apps/scandic-web/components/Icons/Footstool.tsx similarity index 100% rename from components/Icons/Footstool.tsx rename to apps/scandic-web/components/Icons/Footstool.tsx diff --git a/components/Icons/Gallery.tsx b/apps/scandic-web/components/Icons/Gallery.tsx similarity index 100% rename from components/Icons/Gallery.tsx rename to apps/scandic-web/components/Icons/Gallery.tsx diff --git a/components/Icons/Garage.tsx b/apps/scandic-web/components/Icons/Garage.tsx similarity index 100% rename from components/Icons/Garage.tsx rename to apps/scandic-web/components/Icons/Garage.tsx diff --git a/components/Icons/Gift.tsx b/apps/scandic-web/components/Icons/Gift.tsx similarity index 100% rename from components/Icons/Gift.tsx rename to apps/scandic-web/components/Icons/Gift.tsx diff --git a/components/Icons/GiftOpen.tsx b/apps/scandic-web/components/Icons/GiftOpen.tsx similarity index 100% rename from components/Icons/GiftOpen.tsx rename to apps/scandic-web/components/Icons/GiftOpen.tsx diff --git a/components/Icons/Globe.tsx b/apps/scandic-web/components/Icons/Globe.tsx similarity index 100% rename from components/Icons/Globe.tsx rename to apps/scandic-web/components/Icons/Globe.tsx diff --git a/components/Icons/Golf.tsx b/apps/scandic-web/components/Icons/Golf.tsx similarity index 100% rename from components/Icons/Golf.tsx rename to apps/scandic-web/components/Icons/Golf.tsx diff --git a/components/Icons/Groceries.tsx b/apps/scandic-web/components/Icons/Groceries.tsx similarity index 100% rename from components/Icons/Groceries.tsx rename to apps/scandic-web/components/Icons/Groceries.tsx diff --git a/components/Icons/Hairdryer.tsx b/apps/scandic-web/components/Icons/Hairdryer.tsx similarity index 100% rename from components/Icons/Hairdryer.tsx rename to apps/scandic-web/components/Icons/Hairdryer.tsx diff --git a/components/Icons/HandKey.tsx b/apps/scandic-web/components/Icons/HandKey.tsx similarity index 100% rename from components/Icons/HandKey.tsx rename to apps/scandic-web/components/Icons/HandKey.tsx diff --git a/components/Icons/HandSoap.tsx b/apps/scandic-web/components/Icons/HandSoap.tsx similarity index 100% rename from components/Icons/HandSoap.tsx rename to apps/scandic-web/components/Icons/HandSoap.tsx diff --git a/components/Icons/Hanger.tsx b/apps/scandic-web/components/Icons/Hanger.tsx similarity index 100% rename from components/Icons/Hanger.tsx rename to apps/scandic-web/components/Icons/Hanger.tsx diff --git a/components/Icons/HangerAlt.tsx b/apps/scandic-web/components/Icons/HangerAlt.tsx similarity index 100% rename from components/Icons/HangerAlt.tsx rename to apps/scandic-web/components/Icons/HangerAlt.tsx diff --git a/components/Icons/HealthBeauty.tsx b/apps/scandic-web/components/Icons/HealthBeauty.tsx similarity index 100% rename from components/Icons/HealthBeauty.tsx rename to apps/scandic-web/components/Icons/HealthBeauty.tsx diff --git a/components/Icons/Heart.tsx b/apps/scandic-web/components/Icons/Heart.tsx similarity index 100% rename from components/Icons/Heart.tsx rename to apps/scandic-web/components/Icons/Heart.tsx diff --git a/components/Icons/Heat.tsx b/apps/scandic-web/components/Icons/Heat.tsx similarity index 100% rename from components/Icons/Heat.tsx rename to apps/scandic-web/components/Icons/Heat.tsx diff --git a/components/Icons/HotelNight.tsx b/apps/scandic-web/components/Icons/HotelNight.tsx similarity index 100% rename from components/Icons/HotelNight.tsx rename to apps/scandic-web/components/Icons/HotelNight.tsx diff --git a/components/Icons/House.tsx b/apps/scandic-web/components/Icons/House.tsx similarity index 100% rename from components/Icons/House.tsx rename to apps/scandic-web/components/Icons/House.tsx diff --git a/components/Icons/Image.tsx b/apps/scandic-web/components/Icons/Image.tsx similarity index 100% rename from components/Icons/Image.tsx rename to apps/scandic-web/components/Icons/Image.tsx diff --git a/components/Icons/InfoCircle.tsx b/apps/scandic-web/components/Icons/InfoCircle.tsx similarity index 100% rename from components/Icons/InfoCircle.tsx rename to apps/scandic-web/components/Icons/InfoCircle.tsx diff --git a/components/Icons/Instagram.tsx b/apps/scandic-web/components/Icons/Instagram.tsx similarity index 100% rename from components/Icons/Instagram.tsx rename to apps/scandic-web/components/Icons/Instagram.tsx diff --git a/components/Icons/Iron.tsx b/apps/scandic-web/components/Icons/Iron.tsx similarity index 100% rename from components/Icons/Iron.tsx rename to apps/scandic-web/components/Icons/Iron.tsx diff --git a/components/Icons/Kayaking.tsx b/apps/scandic-web/components/Icons/Kayaking.tsx similarity index 100% rename from components/Icons/Kayaking.tsx rename to apps/scandic-web/components/Icons/Kayaking.tsx diff --git a/components/Icons/Kettle.tsx b/apps/scandic-web/components/Icons/Kettle.tsx similarity index 100% rename from components/Icons/Kettle.tsx rename to apps/scandic-web/components/Icons/Kettle.tsx diff --git a/components/Icons/Kids.tsx b/apps/scandic-web/components/Icons/Kids.tsx similarity index 100% rename from components/Icons/Kids.tsx rename to apps/scandic-web/components/Icons/Kids.tsx diff --git a/components/Icons/KidsMocktail.tsx b/apps/scandic-web/components/Icons/KidsMocktail.tsx similarity index 100% rename from components/Icons/KidsMocktail.tsx rename to apps/scandic-web/components/Icons/KidsMocktail.tsx diff --git a/components/Icons/Lamp.tsx b/apps/scandic-web/components/Icons/Lamp.tsx similarity index 100% rename from components/Icons/Lamp.tsx rename to apps/scandic-web/components/Icons/Lamp.tsx diff --git a/components/Icons/Laptop.tsx b/apps/scandic-web/components/Icons/Laptop.tsx similarity index 100% rename from components/Icons/Laptop.tsx rename to apps/scandic-web/components/Icons/Laptop.tsx diff --git a/components/Icons/LaundryMachine.tsx b/apps/scandic-web/components/Icons/LaundryMachine.tsx similarity index 100% rename from components/Icons/LaundryMachine.tsx rename to apps/scandic-web/components/Icons/LaundryMachine.tsx diff --git a/components/Icons/Link.tsx b/apps/scandic-web/components/Icons/Link.tsx similarity index 100% rename from components/Icons/Link.tsx rename to apps/scandic-web/components/Icons/Link.tsx diff --git a/components/Icons/LocalBar.tsx b/apps/scandic-web/components/Icons/LocalBar.tsx similarity index 100% rename from components/Icons/LocalBar.tsx rename to apps/scandic-web/components/Icons/LocalBar.tsx diff --git a/components/Icons/Location.tsx b/apps/scandic-web/components/Icons/Location.tsx similarity index 100% rename from components/Icons/Location.tsx rename to apps/scandic-web/components/Icons/Location.tsx diff --git a/components/Icons/Lock.tsx b/apps/scandic-web/components/Icons/Lock.tsx similarity index 100% rename from components/Icons/Lock.tsx rename to apps/scandic-web/components/Icons/Lock.tsx diff --git a/components/Icons/Logos/DowntownCamper.tsx b/apps/scandic-web/components/Icons/Logos/DowntownCamper.tsx similarity index 100% rename from components/Icons/Logos/DowntownCamper.tsx rename to apps/scandic-web/components/Icons/Logos/DowntownCamper.tsx diff --git a/components/Icons/Logos/GrandHotelOslo.tsx b/apps/scandic-web/components/Icons/Logos/GrandHotelOslo.tsx similarity index 100% rename from components/Icons/Logos/GrandHotelOslo.tsx rename to apps/scandic-web/components/Icons/Logos/GrandHotelOslo.tsx diff --git a/components/Icons/Logos/Haymarket.tsx b/apps/scandic-web/components/Icons/Logos/Haymarket.tsx similarity index 100% rename from components/Icons/Logos/Haymarket.tsx rename to apps/scandic-web/components/Icons/Logos/Haymarket.tsx diff --git a/components/Icons/Logos/HotelNorge.tsx b/apps/scandic-web/components/Icons/Logos/HotelNorge.tsx similarity index 100% rename from components/Icons/Logos/HotelNorge.tsx rename to apps/scandic-web/components/Icons/Logos/HotelNorge.tsx diff --git a/components/Icons/Logos/Marski.tsx b/apps/scandic-web/components/Icons/Logos/Marski.tsx similarity index 100% rename from components/Icons/Logos/Marski.tsx rename to apps/scandic-web/components/Icons/Logos/Marski.tsx diff --git a/components/Icons/Logos/ScandicGoLogo.tsx b/apps/scandic-web/components/Icons/Logos/ScandicGoLogo.tsx similarity index 100% rename from components/Icons/Logos/ScandicGoLogo.tsx rename to apps/scandic-web/components/Icons/Logos/ScandicGoLogo.tsx diff --git a/components/Icons/Logos/ScandicLogo.tsx b/apps/scandic-web/components/Icons/Logos/ScandicLogo.tsx similarity index 100% rename from components/Icons/Logos/ScandicLogo.tsx rename to apps/scandic-web/components/Icons/Logos/ScandicLogo.tsx diff --git a/components/Icons/Logos/index.tsx b/apps/scandic-web/components/Icons/Logos/index.tsx similarity index 100% rename from components/Icons/Logos/index.tsx rename to apps/scandic-web/components/Icons/Logos/index.tsx diff --git a/components/Icons/Luggage.tsx b/apps/scandic-web/components/Icons/Luggage.tsx similarity index 100% rename from components/Icons/Luggage.tsx rename to apps/scandic-web/components/Icons/Luggage.tsx diff --git a/components/Icons/MagicWand.tsx b/apps/scandic-web/components/Icons/MagicWand.tsx similarity index 100% rename from components/Icons/MagicWand.tsx rename to apps/scandic-web/components/Icons/MagicWand.tsx diff --git a/components/Icons/Map.tsx b/apps/scandic-web/components/Icons/Map.tsx similarity index 100% rename from components/Icons/Map.tsx rename to apps/scandic-web/components/Icons/Map.tsx diff --git a/components/Icons/Measure.tsx b/apps/scandic-web/components/Icons/Measure.tsx similarity index 100% rename from components/Icons/Measure.tsx rename to apps/scandic-web/components/Icons/Measure.tsx diff --git a/components/Icons/Microwave.tsx b/apps/scandic-web/components/Icons/Microwave.tsx similarity index 100% rename from components/Icons/Microwave.tsx rename to apps/scandic-web/components/Icons/Microwave.tsx diff --git a/components/Icons/Minus.tsx b/apps/scandic-web/components/Icons/Minus.tsx similarity index 100% rename from components/Icons/Minus.tsx rename to apps/scandic-web/components/Icons/Minus.tsx diff --git a/components/Icons/Mirror.tsx b/apps/scandic-web/components/Icons/Mirror.tsx similarity index 100% rename from components/Icons/Mirror.tsx rename to apps/scandic-web/components/Icons/Mirror.tsx diff --git a/components/Icons/MoneyHand.tsx b/apps/scandic-web/components/Icons/MoneyHand.tsx similarity index 100% rename from components/Icons/MoneyHand.tsx rename to apps/scandic-web/components/Icons/MoneyHand.tsx diff --git a/components/Icons/Museum.tsx b/apps/scandic-web/components/Icons/Museum.tsx similarity index 100% rename from components/Icons/Museum.tsx rename to apps/scandic-web/components/Icons/Museum.tsx diff --git a/components/Icons/Nature.tsx b/apps/scandic-web/components/Icons/Nature.tsx similarity index 100% rename from components/Icons/Nature.tsx rename to apps/scandic-web/components/Icons/Nature.tsx diff --git a/components/Icons/Nightlife.tsx b/apps/scandic-web/components/Icons/Nightlife.tsx similarity index 100% rename from components/Icons/Nightlife.tsx rename to apps/scandic-web/components/Icons/Nightlife.tsx diff --git a/components/Icons/NoBreakfast.tsx b/apps/scandic-web/components/Icons/NoBreakfast.tsx similarity index 100% rename from components/Icons/NoBreakfast.tsx rename to apps/scandic-web/components/Icons/NoBreakfast.tsx diff --git a/components/Icons/NoSmoking.tsx b/apps/scandic-web/components/Icons/NoSmoking.tsx similarity index 100% rename from components/Icons/NoSmoking.tsx rename to apps/scandic-web/components/Icons/NoSmoking.tsx diff --git a/components/Icons/OpenInNew.tsx b/apps/scandic-web/components/Icons/OpenInNew.tsx similarity index 100% rename from components/Icons/OpenInNew.tsx rename to apps/scandic-web/components/Icons/OpenInNew.tsx diff --git a/components/Icons/OpenInNewSmall.tsx b/apps/scandic-web/components/Icons/OpenInNewSmall.tsx similarity index 100% rename from components/Icons/OpenInNewSmall.tsx rename to apps/scandic-web/components/Icons/OpenInNewSmall.tsx diff --git a/components/Icons/OutdoorFurniture.tsx b/apps/scandic-web/components/Icons/OutdoorFurniture.tsx similarity index 100% rename from components/Icons/OutdoorFurniture.tsx rename to apps/scandic-web/components/Icons/OutdoorFurniture.tsx diff --git a/components/Icons/Parking.tsx b/apps/scandic-web/components/Icons/Parking.tsx similarity index 100% rename from components/Icons/Parking.tsx rename to apps/scandic-web/components/Icons/Parking.tsx diff --git a/components/Icons/People2.tsx b/apps/scandic-web/components/Icons/People2.tsx similarity index 100% rename from components/Icons/People2.tsx rename to apps/scandic-web/components/Icons/People2.tsx diff --git a/components/Icons/Person.tsx b/apps/scandic-web/components/Icons/Person.tsx similarity index 100% rename from components/Icons/Person.tsx rename to apps/scandic-web/components/Icons/Person.tsx diff --git a/components/Icons/Pets.tsx b/apps/scandic-web/components/Icons/Pets.tsx similarity index 100% rename from components/Icons/Pets.tsx rename to apps/scandic-web/components/Icons/Pets.tsx diff --git a/components/Icons/Phone.tsx b/apps/scandic-web/components/Icons/Phone.tsx similarity index 100% rename from components/Icons/Phone.tsx rename to apps/scandic-web/components/Icons/Phone.tsx diff --git a/components/Icons/Plus.tsx b/apps/scandic-web/components/Icons/Plus.tsx similarity index 100% rename from components/Icons/Plus.tsx rename to apps/scandic-web/components/Icons/Plus.tsx diff --git a/components/Icons/PlusCircle.tsx b/apps/scandic-web/components/Icons/PlusCircle.tsx similarity index 100% rename from components/Icons/PlusCircle.tsx rename to apps/scandic-web/components/Icons/PlusCircle.tsx diff --git a/components/Icons/PriceTag.tsx b/apps/scandic-web/components/Icons/PriceTag.tsx similarity index 100% rename from components/Icons/PriceTag.tsx rename to apps/scandic-web/components/Icons/PriceTag.tsx diff --git a/components/Icons/Printer.tsx b/apps/scandic-web/components/Icons/Printer.tsx similarity index 100% rename from components/Icons/Printer.tsx rename to apps/scandic-web/components/Icons/Printer.tsx diff --git a/components/Icons/Refresh.tsx b/apps/scandic-web/components/Icons/Refresh.tsx similarity index 100% rename from components/Icons/Refresh.tsx rename to apps/scandic-web/components/Icons/Refresh.tsx diff --git a/components/Icons/Restaurant.tsx b/apps/scandic-web/components/Icons/Restaurant.tsx similarity index 100% rename from components/Icons/Restaurant.tsx rename to apps/scandic-web/components/Icons/Restaurant.tsx diff --git a/components/Icons/RocketLaunch.tsx b/apps/scandic-web/components/Icons/RocketLaunch.tsx similarity index 100% rename from components/Icons/RocketLaunch.tsx rename to apps/scandic-web/components/Icons/RocketLaunch.tsx diff --git a/components/Icons/RoomService.tsx b/apps/scandic-web/components/Icons/RoomService.tsx similarity index 100% rename from components/Icons/RoomService.tsx rename to apps/scandic-web/components/Icons/RoomService.tsx diff --git a/components/Icons/SafetyBox.tsx b/apps/scandic-web/components/Icons/SafetyBox.tsx similarity index 100% rename from components/Icons/SafetyBox.tsx rename to apps/scandic-web/components/Icons/SafetyBox.tsx diff --git a/components/Icons/Sauna.tsx b/apps/scandic-web/components/Icons/Sauna.tsx similarity index 100% rename from components/Icons/Sauna.tsx rename to apps/scandic-web/components/Icons/Sauna.tsx diff --git a/components/Icons/Search.tsx b/apps/scandic-web/components/Icons/Search.tsx similarity index 100% rename from components/Icons/Search.tsx rename to apps/scandic-web/components/Icons/Search.tsx diff --git a/components/Icons/Service.tsx b/apps/scandic-web/components/Icons/Service.tsx similarity index 100% rename from components/Icons/Service.tsx rename to apps/scandic-web/components/Icons/Service.tsx diff --git a/components/Icons/Shopping.tsx b/apps/scandic-web/components/Icons/Shopping.tsx similarity index 100% rename from components/Icons/Shopping.tsx rename to apps/scandic-web/components/Icons/Shopping.tsx diff --git a/components/Icons/Shower.tsx b/apps/scandic-web/components/Icons/Shower.tsx similarity index 100% rename from components/Icons/Shower.tsx rename to apps/scandic-web/components/Icons/Shower.tsx diff --git a/components/Icons/Skateboarding.tsx b/apps/scandic-web/components/Icons/Skateboarding.tsx similarity index 100% rename from components/Icons/Skateboarding.tsx rename to apps/scandic-web/components/Icons/Skateboarding.tsx diff --git a/components/Icons/Smoking.tsx b/apps/scandic-web/components/Icons/Smoking.tsx similarity index 100% rename from components/Icons/Smoking.tsx rename to apps/scandic-web/components/Icons/Smoking.tsx diff --git a/components/Icons/Snowflake.tsx b/apps/scandic-web/components/Icons/Snowflake.tsx similarity index 100% rename from components/Icons/Snowflake.tsx rename to apps/scandic-web/components/Icons/Snowflake.tsx diff --git a/components/Icons/Spa.tsx b/apps/scandic-web/components/Icons/Spa.tsx similarity index 100% rename from components/Icons/Spa.tsx rename to apps/scandic-web/components/Icons/Spa.tsx diff --git a/components/Icons/Speaker.tsx b/apps/scandic-web/components/Icons/Speaker.tsx similarity index 100% rename from components/Icons/Speaker.tsx rename to apps/scandic-web/components/Icons/Speaker.tsx diff --git a/components/Icons/StarFilled.tsx b/apps/scandic-web/components/Icons/StarFilled.tsx similarity index 100% rename from components/Icons/StarFilled.tsx rename to apps/scandic-web/components/Icons/StarFilled.tsx diff --git a/components/Icons/Store.tsx b/apps/scandic-web/components/Icons/Store.tsx similarity index 100% rename from components/Icons/Store.tsx rename to apps/scandic-web/components/Icons/Store.tsx diff --git a/components/Icons/Street.tsx b/apps/scandic-web/components/Icons/Street.tsx similarity index 100% rename from components/Icons/Street.tsx rename to apps/scandic-web/components/Icons/Street.tsx diff --git a/components/Icons/Surprise.tsx b/apps/scandic-web/components/Icons/Surprise.tsx similarity index 100% rename from components/Icons/Surprise.tsx rename to apps/scandic-web/components/Icons/Surprise.tsx diff --git a/components/Icons/Swim.tsx b/apps/scandic-web/components/Icons/Swim.tsx similarity index 100% rename from components/Icons/Swim.tsx rename to apps/scandic-web/components/Icons/Swim.tsx diff --git a/components/Icons/Thermostat.tsx b/apps/scandic-web/components/Icons/Thermostat.tsx similarity index 100% rename from components/Icons/Thermostat.tsx rename to apps/scandic-web/components/Icons/Thermostat.tsx diff --git a/components/Icons/Train.tsx b/apps/scandic-web/components/Icons/Train.tsx similarity index 100% rename from components/Icons/Train.tsx rename to apps/scandic-web/components/Icons/Train.tsx diff --git a/components/Icons/TripAdvisor.tsx b/apps/scandic-web/components/Icons/TripAdvisor.tsx similarity index 100% rename from components/Icons/TripAdvisor.tsx rename to apps/scandic-web/components/Icons/TripAdvisor.tsx diff --git a/components/Icons/Tshirt.tsx b/apps/scandic-web/components/Icons/Tshirt.tsx similarity index 100% rename from components/Icons/Tshirt.tsx rename to apps/scandic-web/components/Icons/Tshirt.tsx diff --git a/components/Icons/TshirtWash.tsx b/apps/scandic-web/components/Icons/TshirtWash.tsx similarity index 100% rename from components/Icons/TshirtWash.tsx rename to apps/scandic-web/components/Icons/TshirtWash.tsx diff --git a/components/Icons/TvCasting.tsx b/apps/scandic-web/components/Icons/TvCasting.tsx similarity index 100% rename from components/Icons/TvCasting.tsx rename to apps/scandic-web/components/Icons/TvCasting.tsx diff --git a/components/Icons/Voucher.tsx b/apps/scandic-web/components/Icons/Voucher.tsx similarity index 100% rename from components/Icons/Voucher.tsx rename to apps/scandic-web/components/Icons/Voucher.tsx diff --git a/components/Icons/WarningTriangle.tsx b/apps/scandic-web/components/Icons/WarningTriangle.tsx similarity index 100% rename from components/Icons/WarningTriangle.tsx rename to apps/scandic-web/components/Icons/WarningTriangle.tsx diff --git a/components/Icons/Wheelchair.tsx b/apps/scandic-web/components/Icons/Wheelchair.tsx similarity index 100% rename from components/Icons/Wheelchair.tsx rename to apps/scandic-web/components/Icons/Wheelchair.tsx diff --git a/components/Icons/Wifi.tsx b/apps/scandic-web/components/Icons/Wifi.tsx similarity index 100% rename from components/Icons/Wifi.tsx rename to apps/scandic-web/components/Icons/Wifi.tsx diff --git a/components/Icons/WindowCurtainsAlt.tsx b/apps/scandic-web/components/Icons/WindowCurtainsAlt.tsx similarity index 100% rename from components/Icons/WindowCurtainsAlt.tsx rename to apps/scandic-web/components/Icons/WindowCurtainsAlt.tsx diff --git a/components/Icons/WindowNotAvailable.tsx b/apps/scandic-web/components/Icons/WindowNotAvailable.tsx similarity index 100% rename from components/Icons/WindowNotAvailable.tsx rename to apps/scandic-web/components/Icons/WindowNotAvailable.tsx diff --git a/components/Icons/WineBar.tsx b/apps/scandic-web/components/Icons/WineBar.tsx similarity index 100% rename from components/Icons/WineBar.tsx rename to apps/scandic-web/components/Icons/WineBar.tsx diff --git a/components/Icons/WoodFloor.tsx b/apps/scandic-web/components/Icons/WoodFloor.tsx similarity index 100% rename from components/Icons/WoodFloor.tsx rename to apps/scandic-web/components/Icons/WoodFloor.tsx diff --git a/components/Icons/Yard.tsx b/apps/scandic-web/components/Icons/Yard.tsx similarity index 100% rename from components/Icons/Yard.tsx rename to apps/scandic-web/components/Icons/Yard.tsx diff --git a/components/Icons/get-icon-by-icon-name.ts b/apps/scandic-web/components/Icons/get-icon-by-icon-name.ts similarity index 100% rename from components/Icons/get-icon-by-icon-name.ts rename to apps/scandic-web/components/Icons/get-icon-by-icon-name.ts diff --git a/components/Icons/icon.module.css b/apps/scandic-web/components/Icons/icon.module.css similarity index 100% rename from components/Icons/icon.module.css rename to apps/scandic-web/components/Icons/icon.module.css diff --git a/components/Icons/index.tsx b/apps/scandic-web/components/Icons/index.tsx similarity index 100% rename from components/Icons/index.tsx rename to apps/scandic-web/components/Icons/index.tsx diff --git a/components/Icons/variants.ts b/apps/scandic-web/components/Icons/variants.ts similarity index 100% rename from components/Icons/variants.ts rename to apps/scandic-web/components/Icons/variants.ts diff --git a/components/Image.tsx b/apps/scandic-web/components/Image.tsx similarity index 100% rename from components/Image.tsx rename to apps/scandic-web/components/Image.tsx diff --git a/components/ImageContainer/imageContainer.module.css b/apps/scandic-web/components/ImageContainer/imageContainer.module.css similarity index 100% rename from components/ImageContainer/imageContainer.module.css rename to apps/scandic-web/components/ImageContainer/imageContainer.module.css diff --git a/components/ImageContainer/index.tsx b/apps/scandic-web/components/ImageContainer/index.tsx similarity index 100% rename from components/ImageContainer/index.tsx rename to apps/scandic-web/components/ImageContainer/index.tsx diff --git a/components/ImageGallery/imageGallery.module.css b/apps/scandic-web/components/ImageGallery/imageGallery.module.css similarity index 100% rename from components/ImageGallery/imageGallery.module.css rename to apps/scandic-web/components/ImageGallery/imageGallery.module.css diff --git a/components/ImageGallery/index.tsx b/apps/scandic-web/components/ImageGallery/index.tsx similarity index 100% rename from components/ImageGallery/index.tsx rename to apps/scandic-web/components/ImageGallery/index.tsx diff --git a/components/JsonToHtml/index.tsx b/apps/scandic-web/components/JsonToHtml/index.tsx similarity index 100% rename from components/JsonToHtml/index.tsx rename to apps/scandic-web/components/JsonToHtml/index.tsx diff --git a/components/JsonToHtml/jsontohtml.module.css b/apps/scandic-web/components/JsonToHtml/jsontohtml.module.css similarity index 100% rename from components/JsonToHtml/jsontohtml.module.css rename to apps/scandic-web/components/JsonToHtml/jsontohtml.module.css diff --git a/components/JsonToHtml/renderOptions.tsx b/apps/scandic-web/components/JsonToHtml/renderOptions.tsx similarity index 100% rename from components/JsonToHtml/renderOptions.tsx rename to apps/scandic-web/components/JsonToHtml/renderOptions.tsx diff --git a/components/JsonToHtml/utils.tsx b/apps/scandic-web/components/JsonToHtml/utils.tsx similarity index 100% rename from components/JsonToHtml/utils.tsx rename to apps/scandic-web/components/JsonToHtml/utils.tsx diff --git a/components/LanguageSwitcher/LanguageSwitcherContainer/index.tsx b/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContainer/index.tsx similarity index 100% rename from components/LanguageSwitcher/LanguageSwitcherContainer/index.tsx rename to apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContainer/index.tsx diff --git a/components/LanguageSwitcher/LanguageSwitcherContainer/languageSwitcherContainer.module.css b/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContainer/languageSwitcherContainer.module.css similarity index 100% rename from components/LanguageSwitcher/LanguageSwitcherContainer/languageSwitcherContainer.module.css rename to apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContainer/languageSwitcherContainer.module.css diff --git a/components/LanguageSwitcher/LanguageSwitcherContent/index.tsx b/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/index.tsx similarity index 100% rename from components/LanguageSwitcher/LanguageSwitcherContent/index.tsx rename to apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/index.tsx diff --git a/components/LanguageSwitcher/LanguageSwitcherContent/languageSwitcherContent.module.css b/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/languageSwitcherContent.module.css similarity index 100% rename from components/LanguageSwitcher/LanguageSwitcherContent/languageSwitcherContent.module.css rename to apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/languageSwitcherContent.module.css diff --git a/components/LanguageSwitcher/LanguageSwitcherContent/utils.ts b/apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/utils.ts similarity index 100% rename from components/LanguageSwitcher/LanguageSwitcherContent/utils.ts rename to apps/scandic-web/components/LanguageSwitcher/LanguageSwitcherContent/utils.ts diff --git a/components/LanguageSwitcher/index.tsx b/apps/scandic-web/components/LanguageSwitcher/index.tsx similarity index 100% rename from components/LanguageSwitcher/index.tsx rename to apps/scandic-web/components/LanguageSwitcher/index.tsx diff --git a/components/LanguageSwitcher/languageSwitcher.module.css b/apps/scandic-web/components/LanguageSwitcher/languageSwitcher.module.css similarity index 100% rename from components/LanguageSwitcher/languageSwitcher.module.css rename to apps/scandic-web/components/LanguageSwitcher/languageSwitcher.module.css diff --git a/components/LanguageSwitcher/variants.ts b/apps/scandic-web/components/LanguageSwitcher/variants.ts similarity index 100% rename from components/LanguageSwitcher/variants.ts rename to apps/scandic-web/components/LanguageSwitcher/variants.ts diff --git a/components/Levels/Icon.tsx b/apps/scandic-web/components/Levels/Icon.tsx similarity index 100% rename from components/Levels/Icon.tsx rename to apps/scandic-web/components/Levels/Icon.tsx diff --git a/components/Levels/Level/BestFriend.tsx b/apps/scandic-web/components/Levels/Level/BestFriend.tsx similarity index 100% rename from components/Levels/Level/BestFriend.tsx rename to apps/scandic-web/components/Levels/Level/BestFriend.tsx diff --git a/components/Levels/Level/CloseFriend.tsx b/apps/scandic-web/components/Levels/Level/CloseFriend.tsx similarity index 100% rename from components/Levels/Level/CloseFriend.tsx rename to apps/scandic-web/components/Levels/Level/CloseFriend.tsx diff --git a/components/Levels/Level/DearFriend.tsx b/apps/scandic-web/components/Levels/Level/DearFriend.tsx similarity index 100% rename from components/Levels/Level/DearFriend.tsx rename to apps/scandic-web/components/Levels/Level/DearFriend.tsx diff --git a/components/Levels/Level/GoodFriend.tsx b/apps/scandic-web/components/Levels/Level/GoodFriend.tsx similarity index 100% rename from components/Levels/Level/GoodFriend.tsx rename to apps/scandic-web/components/Levels/Level/GoodFriend.tsx diff --git a/components/Levels/Level/LoyalFriend.tsx b/apps/scandic-web/components/Levels/Level/LoyalFriend.tsx similarity index 100% rename from components/Levels/Level/LoyalFriend.tsx rename to apps/scandic-web/components/Levels/Level/LoyalFriend.tsx diff --git a/components/Levels/Level/NewFriend.tsx b/apps/scandic-web/components/Levels/Level/NewFriend.tsx similarity index 100% rename from components/Levels/Level/NewFriend.tsx rename to apps/scandic-web/components/Levels/Level/NewFriend.tsx diff --git a/components/Levels/Level/ScandicFamily.tsx b/apps/scandic-web/components/Levels/Level/ScandicFamily.tsx similarity index 100% rename from components/Levels/Level/ScandicFamily.tsx rename to apps/scandic-web/components/Levels/Level/ScandicFamily.tsx diff --git a/components/Levels/Level/ScandicFriends.tsx b/apps/scandic-web/components/Levels/Level/ScandicFriends.tsx similarity index 100% rename from components/Levels/Level/ScandicFriends.tsx rename to apps/scandic-web/components/Levels/Level/ScandicFriends.tsx diff --git a/components/Levels/Level/TrueFriend.tsx b/apps/scandic-web/components/Levels/Level/TrueFriend.tsx similarity index 100% rename from components/Levels/Level/TrueFriend.tsx rename to apps/scandic-web/components/Levels/Level/TrueFriend.tsx diff --git a/components/Levels/index.tsx b/apps/scandic-web/components/Levels/index.tsx similarity index 100% rename from components/Levels/index.tsx rename to apps/scandic-web/components/Levels/index.tsx diff --git a/components/Levels/levels.module.css b/apps/scandic-web/components/Levels/levels.module.css similarity index 100% rename from components/Levels/levels.module.css rename to apps/scandic-web/components/Levels/levels.module.css diff --git a/components/Levels/levels.ts b/apps/scandic-web/components/Levels/levels.ts similarity index 100% rename from components/Levels/levels.ts rename to apps/scandic-web/components/Levels/levels.ts diff --git a/components/Levels/variants.ts b/apps/scandic-web/components/Levels/variants.ts similarity index 100% rename from components/Levels/variants.ts rename to apps/scandic-web/components/Levels/variants.ts diff --git a/components/Lightbox/FullView.tsx b/apps/scandic-web/components/Lightbox/FullView.tsx similarity index 100% rename from components/Lightbox/FullView.tsx rename to apps/scandic-web/components/Lightbox/FullView.tsx diff --git a/components/Lightbox/Gallery.tsx b/apps/scandic-web/components/Lightbox/Gallery.tsx similarity index 100% rename from components/Lightbox/Gallery.tsx rename to apps/scandic-web/components/Lightbox/Gallery.tsx diff --git a/components/Lightbox/Lightbox.module.css b/apps/scandic-web/components/Lightbox/Lightbox.module.css similarity index 100% rename from components/Lightbox/Lightbox.module.css rename to apps/scandic-web/components/Lightbox/Lightbox.module.css diff --git a/components/Lightbox/index.tsx b/apps/scandic-web/components/Lightbox/index.tsx similarity index 100% rename from components/Lightbox/index.tsx rename to apps/scandic-web/components/Lightbox/index.tsx diff --git a/components/LivePreview/index.tsx b/apps/scandic-web/components/LivePreview/index.tsx similarity index 100% rename from components/LivePreview/index.tsx rename to apps/scandic-web/components/LivePreview/index.tsx diff --git a/components/Loading/index.tsx b/apps/scandic-web/components/Loading/index.tsx similarity index 100% rename from components/Loading/index.tsx rename to apps/scandic-web/components/Loading/index.tsx diff --git a/components/Loading/loading.module.css b/apps/scandic-web/components/Loading/loading.module.css similarity index 100% rename from components/Loading/loading.module.css rename to apps/scandic-web/components/Loading/loading.module.css diff --git a/components/LoadingSpinner/index.tsx b/apps/scandic-web/components/LoadingSpinner/index.tsx similarity index 100% rename from components/LoadingSpinner/index.tsx rename to apps/scandic-web/components/LoadingSpinner/index.tsx diff --git a/components/LoadingSpinner/loading.module.css b/apps/scandic-web/components/LoadingSpinner/loading.module.css similarity index 100% rename from components/LoadingSpinner/loading.module.css rename to apps/scandic-web/components/LoadingSpinner/loading.module.css diff --git a/components/LoginButton/index.tsx b/apps/scandic-web/components/LoginButton/index.tsx similarity index 100% rename from components/LoginButton/index.tsx rename to apps/scandic-web/components/LoginButton/index.tsx diff --git a/components/MapContainer/index.tsx b/apps/scandic-web/components/MapContainer/index.tsx similarity index 100% rename from components/MapContainer/index.tsx rename to apps/scandic-web/components/MapContainer/index.tsx diff --git a/components/MapContainer/mapModal.module.css b/apps/scandic-web/components/MapContainer/mapModal.module.css similarity index 100% rename from components/MapContainer/mapModal.module.css rename to apps/scandic-web/components/MapContainer/mapModal.module.css diff --git a/components/Maps/InteractiveMap/HotelListingMapContent/hotelListingMapContent.module.css b/apps/scandic-web/components/Maps/InteractiveMap/HotelListingMapContent/hotelListingMapContent.module.css similarity index 100% rename from components/Maps/InteractiveMap/HotelListingMapContent/hotelListingMapContent.module.css rename to apps/scandic-web/components/Maps/InteractiveMap/HotelListingMapContent/hotelListingMapContent.module.css diff --git a/components/Maps/InteractiveMap/HotelListingMapContent/index.tsx b/apps/scandic-web/components/Maps/InteractiveMap/HotelListingMapContent/index.tsx similarity index 100% rename from components/Maps/InteractiveMap/HotelListingMapContent/index.tsx rename to apps/scandic-web/components/Maps/InteractiveMap/HotelListingMapContent/index.tsx diff --git a/components/Maps/InteractiveMap/HotelMapContent/hotelMapContent.module.css b/apps/scandic-web/components/Maps/InteractiveMap/HotelMapContent/hotelMapContent.module.css similarity index 100% rename from components/Maps/InteractiveMap/HotelMapContent/hotelMapContent.module.css rename to apps/scandic-web/components/Maps/InteractiveMap/HotelMapContent/hotelMapContent.module.css diff --git a/components/Maps/InteractiveMap/HotelMapContent/index.tsx b/apps/scandic-web/components/Maps/InteractiveMap/HotelMapContent/index.tsx similarity index 100% rename from components/Maps/InteractiveMap/HotelMapContent/index.tsx rename to apps/scandic-web/components/Maps/InteractiveMap/HotelMapContent/index.tsx diff --git a/components/Maps/InteractiveMap/index.tsx b/apps/scandic-web/components/Maps/InteractiveMap/index.tsx similarity index 100% rename from components/Maps/InteractiveMap/index.tsx rename to apps/scandic-web/components/Maps/InteractiveMap/index.tsx diff --git a/components/Maps/InteractiveMap/interactiveMap.module.css b/apps/scandic-web/components/Maps/InteractiveMap/interactiveMap.module.css similarity index 100% rename from components/Maps/InteractiveMap/interactiveMap.module.css rename to apps/scandic-web/components/Maps/InteractiveMap/interactiveMap.module.css diff --git a/components/Maps/Markers/DowntownCamper.tsx b/apps/scandic-web/components/Maps/Markers/DowntownCamper.tsx similarity index 100% rename from components/Maps/Markers/DowntownCamper.tsx rename to apps/scandic-web/components/Maps/Markers/DowntownCamper.tsx diff --git a/components/Maps/Markers/DowntownCamperSmall.tsx b/apps/scandic-web/components/Maps/Markers/DowntownCamperSmall.tsx similarity index 100% rename from components/Maps/Markers/DowntownCamperSmall.tsx rename to apps/scandic-web/components/Maps/Markers/DowntownCamperSmall.tsx diff --git a/components/Maps/Markers/GrandHotel.tsx b/apps/scandic-web/components/Maps/Markers/GrandHotel.tsx similarity index 100% rename from components/Maps/Markers/GrandHotel.tsx rename to apps/scandic-web/components/Maps/Markers/GrandHotel.tsx diff --git a/components/Maps/Markers/GrandHotelSmall.tsx b/apps/scandic-web/components/Maps/Markers/GrandHotelSmall.tsx similarity index 100% rename from components/Maps/Markers/GrandHotelSmall.tsx rename to apps/scandic-web/components/Maps/Markers/GrandHotelSmall.tsx diff --git a/components/Maps/Markers/Haymarket.tsx b/apps/scandic-web/components/Maps/Markers/Haymarket.tsx similarity index 100% rename from components/Maps/Markers/Haymarket.tsx rename to apps/scandic-web/components/Maps/Markers/Haymarket.tsx diff --git a/components/Maps/Markers/HaymarketSmall.tsx b/apps/scandic-web/components/Maps/Markers/HaymarketSmall.tsx similarity index 100% rename from components/Maps/Markers/HaymarketSmall.tsx rename to apps/scandic-web/components/Maps/Markers/HaymarketSmall.tsx diff --git a/components/Maps/Markers/HotelMarker/hotelMarker.module.css b/apps/scandic-web/components/Maps/Markers/HotelMarker/hotelMarker.module.css similarity index 100% rename from components/Maps/Markers/HotelMarker/hotelMarker.module.css rename to apps/scandic-web/components/Maps/Markers/HotelMarker/hotelMarker.module.css diff --git a/components/Maps/Markers/HotelMarker/index.tsx b/apps/scandic-web/components/Maps/Markers/HotelMarker/index.tsx similarity index 100% rename from components/Maps/Markers/HotelMarker/index.tsx rename to apps/scandic-web/components/Maps/Markers/HotelMarker/index.tsx diff --git a/components/Maps/Markers/HotelMarker/variants.ts b/apps/scandic-web/components/Maps/Markers/HotelMarker/variants.ts similarity index 100% rename from components/Maps/Markers/HotelMarker/variants.ts rename to apps/scandic-web/components/Maps/Markers/HotelMarker/variants.ts diff --git a/components/Maps/Markers/HotelNorge.tsx b/apps/scandic-web/components/Maps/Markers/HotelNorge.tsx similarity index 100% rename from components/Maps/Markers/HotelNorge.tsx rename to apps/scandic-web/components/Maps/Markers/HotelNorge.tsx diff --git a/components/Maps/Markers/HotelNorgeSmall.tsx b/apps/scandic-web/components/Maps/Markers/HotelNorgeSmall.tsx similarity index 100% rename from components/Maps/Markers/HotelNorgeSmall.tsx rename to apps/scandic-web/components/Maps/Markers/HotelNorgeSmall.tsx diff --git a/components/Maps/Markers/Marski.tsx b/apps/scandic-web/components/Maps/Markers/Marski.tsx similarity index 100% rename from components/Maps/Markers/Marski.tsx rename to apps/scandic-web/components/Maps/Markers/Marski.tsx diff --git a/components/Maps/Markers/MarskiSmall.tsx b/apps/scandic-web/components/Maps/Markers/MarskiSmall.tsx similarity index 100% rename from components/Maps/Markers/MarskiSmall.tsx rename to apps/scandic-web/components/Maps/Markers/MarskiSmall.tsx diff --git a/components/Maps/Markers/Poi/index.tsx b/apps/scandic-web/components/Maps/Markers/Poi/index.tsx similarity index 100% rename from components/Maps/Markers/Poi/index.tsx rename to apps/scandic-web/components/Maps/Markers/Poi/index.tsx diff --git a/components/Maps/Markers/Poi/poi.module.css b/apps/scandic-web/components/Maps/Markers/Poi/poi.module.css similarity index 100% rename from components/Maps/Markers/Poi/poi.module.css rename to apps/scandic-web/components/Maps/Markers/Poi/poi.module.css diff --git a/components/Maps/Markers/Poi/variants.ts b/apps/scandic-web/components/Maps/Markers/Poi/variants.ts similarity index 100% rename from components/Maps/Markers/Poi/variants.ts rename to apps/scandic-web/components/Maps/Markers/Poi/variants.ts diff --git a/components/Maps/Markers/Scandic.tsx b/apps/scandic-web/components/Maps/Markers/Scandic.tsx similarity index 100% rename from components/Maps/Markers/Scandic.tsx rename to apps/scandic-web/components/Maps/Markers/Scandic.tsx diff --git a/components/Maps/Markers/ScandicGo.tsx b/apps/scandic-web/components/Maps/Markers/ScandicGo.tsx similarity index 100% rename from components/Maps/Markers/ScandicGo.tsx rename to apps/scandic-web/components/Maps/Markers/ScandicGo.tsx diff --git a/components/Maps/Markers/ScandicGoSmall.tsx b/apps/scandic-web/components/Maps/Markers/ScandicGoSmall.tsx similarity index 100% rename from components/Maps/Markers/ScandicGoSmall.tsx rename to apps/scandic-web/components/Maps/Markers/ScandicGoSmall.tsx diff --git a/components/Maps/Markers/ScandicSmall.tsx b/apps/scandic-web/components/Maps/Markers/ScandicSmall.tsx similarity index 100% rename from components/Maps/Markers/ScandicSmall.tsx rename to apps/scandic-web/components/Maps/Markers/ScandicSmall.tsx diff --git a/components/Maps/Markers/index.tsx b/apps/scandic-web/components/Maps/Markers/index.tsx similarity index 100% rename from components/Maps/Markers/index.tsx rename to apps/scandic-web/components/Maps/Markers/index.tsx diff --git a/components/Maps/Markers/utils.ts b/apps/scandic-web/components/Maps/Markers/utils.ts similarity index 100% rename from components/Maps/Markers/utils.ts rename to apps/scandic-web/components/Maps/Markers/utils.ts diff --git a/components/Maps/StaticMap/ReadMe.md b/apps/scandic-web/components/Maps/StaticMap/ReadMe.md similarity index 100% rename from components/Maps/StaticMap/ReadMe.md rename to apps/scandic-web/components/Maps/StaticMap/ReadMe.md diff --git a/components/Maps/StaticMap/index.tsx b/apps/scandic-web/components/Maps/StaticMap/index.tsx similarity index 100% rename from components/Maps/StaticMap/index.tsx rename to apps/scandic-web/components/Maps/StaticMap/index.tsx diff --git a/components/MaxWidth/index.tsx b/apps/scandic-web/components/MaxWidth/index.tsx similarity index 100% rename from components/MaxWidth/index.tsx rename to apps/scandic-web/components/MaxWidth/index.tsx diff --git a/components/MaxWidth/maxWidth.module.css b/apps/scandic-web/components/MaxWidth/maxWidth.module.css similarity index 100% rename from components/MaxWidth/maxWidth.module.css rename to apps/scandic-web/components/MaxWidth/maxWidth.module.css diff --git a/components/Modal/index.tsx b/apps/scandic-web/components/Modal/index.tsx similarity index 100% rename from components/Modal/index.tsx rename to apps/scandic-web/components/Modal/index.tsx diff --git a/components/Modal/modal.module.css b/apps/scandic-web/components/Modal/modal.module.css similarity index 100% rename from components/Modal/modal.module.css rename to apps/scandic-web/components/Modal/modal.module.css diff --git a/components/Modal/modal.ts b/apps/scandic-web/components/Modal/modal.ts similarity index 100% rename from components/Modal/modal.ts rename to apps/scandic-web/components/Modal/modal.ts diff --git a/components/Modal/motionVariants.ts b/apps/scandic-web/components/Modal/motionVariants.ts similarity index 100% rename from components/Modal/motionVariants.ts rename to apps/scandic-web/components/Modal/motionVariants.ts diff --git a/components/MyPages/Avatar/avatar.module.css b/apps/scandic-web/components/MyPages/Avatar/avatar.module.css similarity index 100% rename from components/MyPages/Avatar/avatar.module.css rename to apps/scandic-web/components/MyPages/Avatar/avatar.module.css diff --git a/components/MyPages/Avatar/index.tsx b/apps/scandic-web/components/MyPages/Avatar/index.tsx similarity index 100% rename from components/MyPages/Avatar/index.tsx rename to apps/scandic-web/components/MyPages/Avatar/index.tsx diff --git a/components/MyPages/Pagination/index.tsx b/apps/scandic-web/components/MyPages/Pagination/index.tsx similarity index 100% rename from components/MyPages/Pagination/index.tsx rename to apps/scandic-web/components/MyPages/Pagination/index.tsx diff --git a/components/MyPages/Pagination/pagination.module.css b/apps/scandic-web/components/MyPages/Pagination/pagination.module.css similarity index 100% rename from components/MyPages/Pagination/pagination.module.css rename to apps/scandic-web/components/MyPages/Pagination/pagination.module.css diff --git a/components/MyPages/Sidebar/SidebarNavigationSkeleton.tsx b/apps/scandic-web/components/MyPages/Sidebar/SidebarNavigationSkeleton.tsx similarity index 100% rename from components/MyPages/Sidebar/SidebarNavigationSkeleton.tsx rename to apps/scandic-web/components/MyPages/Sidebar/SidebarNavigationSkeleton.tsx diff --git a/components/MyPages/Sidebar/index.tsx b/apps/scandic-web/components/MyPages/Sidebar/index.tsx similarity index 100% rename from components/MyPages/Sidebar/index.tsx rename to apps/scandic-web/components/MyPages/Sidebar/index.tsx diff --git a/components/MyPages/Sidebar/sidebar.module.css b/apps/scandic-web/components/MyPages/Sidebar/sidebar.module.css similarity index 100% rename from components/MyPages/Sidebar/sidebar.module.css rename to apps/scandic-web/components/MyPages/Sidebar/sidebar.module.css diff --git a/components/MyPages/Surprises/Card.tsx b/apps/scandic-web/components/MyPages/Surprises/Card.tsx similarity index 100% rename from components/MyPages/Surprises/Card.tsx rename to apps/scandic-web/components/MyPages/Surprises/Card.tsx diff --git a/components/MyPages/Surprises/Client.tsx b/apps/scandic-web/components/MyPages/Surprises/Client.tsx similarity index 99% rename from components/MyPages/Surprises/Client.tsx rename to apps/scandic-web/components/MyPages/Surprises/Client.tsx index a62a1140c..c5d05ad65 100644 --- a/components/MyPages/Surprises/Client.tsx +++ b/apps/scandic-web/components/MyPages/Surprises/Client.tsx @@ -77,7 +77,7 @@ export default function SurprisesNotification({ console.error("Failed to unwrap surprise", error) toast.error( <> - {intl.formatMessage( + {intl.formatMessage( { id: "Oops! Something went wrong while showing your surprise. Please refresh the page or try again later. If the issue persists, contact the support.", }, diff --git a/components/MyPages/Surprises/Header.tsx b/apps/scandic-web/components/MyPages/Surprises/Header.tsx similarity index 100% rename from components/MyPages/Surprises/Header.tsx rename to apps/scandic-web/components/MyPages/Surprises/Header.tsx diff --git a/components/MyPages/Surprises/Initial.tsx b/apps/scandic-web/components/MyPages/Surprises/Initial.tsx similarity index 96% rename from components/MyPages/Surprises/Initial.tsx rename to apps/scandic-web/components/MyPages/Surprises/Initial.tsx index 5a796644f..e9ed63c49 100644 --- a/components/MyPages/Surprises/Initial.tsx +++ b/apps/scandic-web/components/MyPages/Surprises/Initial.tsx @@ -16,7 +16,7 @@ export default function Initial({ totalSurprises, onOpen }: InitialProps) { {totalSurprises > 1 ? ( <> - {intl.formatMessage( + {intl.formatMessage( { id: "You have {amount} gifts waiting for you!", }, diff --git a/components/MyPages/Surprises/Navigation.tsx b/apps/scandic-web/components/MyPages/Surprises/Navigation.tsx similarity index 100% rename from components/MyPages/Surprises/Navigation.tsx rename to apps/scandic-web/components/MyPages/Surprises/Navigation.tsx diff --git a/components/MyPages/Surprises/Slide.tsx b/apps/scandic-web/components/MyPages/Surprises/Slide.tsx similarity index 100% rename from components/MyPages/Surprises/Slide.tsx rename to apps/scandic-web/components/MyPages/Surprises/Slide.tsx diff --git a/components/MyPages/Surprises/confetti.ts b/apps/scandic-web/components/MyPages/Surprises/confetti.ts similarity index 100% rename from components/MyPages/Surprises/confetti.ts rename to apps/scandic-web/components/MyPages/Surprises/confetti.ts diff --git a/components/MyPages/Surprises/index.tsx b/apps/scandic-web/components/MyPages/Surprises/index.tsx similarity index 100% rename from components/MyPages/Surprises/index.tsx rename to apps/scandic-web/components/MyPages/Surprises/index.tsx diff --git a/components/MyPages/Surprises/surprises.module.css b/apps/scandic-web/components/MyPages/Surprises/surprises.module.css similarity index 100% rename from components/MyPages/Surprises/surprises.module.css rename to apps/scandic-web/components/MyPages/Surprises/surprises.module.css diff --git a/components/MyPages/myprofile/communication/communication.module.css b/apps/scandic-web/components/MyPages/myprofile/communication/communication.module.css similarity index 100% rename from components/MyPages/myprofile/communication/communication.module.css rename to apps/scandic-web/components/MyPages/myprofile/communication/communication.module.css diff --git a/components/MyPages/myprofile/communication/communication.tsx b/apps/scandic-web/components/MyPages/myprofile/communication/communication.tsx similarity index 100% rename from components/MyPages/myprofile/communication/communication.tsx rename to apps/scandic-web/components/MyPages/myprofile/communication/communication.tsx diff --git a/components/MyPages/myprofile/creditCards/creditCards.module.css b/apps/scandic-web/components/MyPages/myprofile/creditCards/creditCards.module.css similarity index 100% rename from components/MyPages/myprofile/creditCards/creditCards.module.css rename to apps/scandic-web/components/MyPages/myprofile/creditCards/creditCards.module.css diff --git a/components/MyPages/myprofile/creditCards/creditCards.tsx b/apps/scandic-web/components/MyPages/myprofile/creditCards/creditCards.tsx similarity index 100% rename from components/MyPages/myprofile/creditCards/creditCards.tsx rename to apps/scandic-web/components/MyPages/myprofile/creditCards/creditCards.tsx diff --git a/components/MyPages/myprofile/membershipCards/membershipcards.module.css b/apps/scandic-web/components/MyPages/myprofile/membershipCards/membershipcards.module.css similarity index 100% rename from components/MyPages/myprofile/membershipCards/membershipcards.module.css rename to apps/scandic-web/components/MyPages/myprofile/membershipCards/membershipcards.module.css diff --git a/components/MyPages/myprofile/membershipCards/membershipcards.tsx b/apps/scandic-web/components/MyPages/myprofile/membershipCards/membershipcards.tsx similarity index 100% rename from components/MyPages/myprofile/membershipCards/membershipcards.tsx rename to apps/scandic-web/components/MyPages/myprofile/membershipCards/membershipcards.tsx diff --git a/components/MyPages/myprofile/profile/profile.module.css b/apps/scandic-web/components/MyPages/myprofile/profile/profile.module.css similarity index 100% rename from components/MyPages/myprofile/profile/profile.module.css rename to apps/scandic-web/components/MyPages/myprofile/profile/profile.module.css diff --git a/components/MyPages/myprofile/profile/profile.tsx b/apps/scandic-web/components/MyPages/myprofile/profile/profile.tsx similarity index 100% rename from components/MyPages/myprofile/profile/profile.tsx rename to apps/scandic-web/components/MyPages/myprofile/profile/profile.tsx diff --git a/components/OpeningHours/index.tsx b/apps/scandic-web/components/OpeningHours/index.tsx similarity index 100% rename from components/OpeningHours/index.tsx rename to apps/scandic-web/components/OpeningHours/index.tsx diff --git a/components/OpeningHours/openingHours.module.css b/apps/scandic-web/components/OpeningHours/openingHours.module.css similarity index 100% rename from components/OpeningHours/openingHours.module.css rename to apps/scandic-web/components/OpeningHours/openingHours.module.css diff --git a/components/ParkingInformation/ParkingList/index.tsx b/apps/scandic-web/components/ParkingInformation/ParkingList/index.tsx similarity index 100% rename from components/ParkingInformation/ParkingList/index.tsx rename to apps/scandic-web/components/ParkingInformation/ParkingList/index.tsx diff --git a/components/ParkingInformation/ParkingList/parkingList.module.css b/apps/scandic-web/components/ParkingInformation/ParkingList/parkingList.module.css similarity index 100% rename from components/ParkingInformation/ParkingList/parkingList.module.css rename to apps/scandic-web/components/ParkingInformation/ParkingList/parkingList.module.css diff --git a/components/ParkingInformation/ParkingPrices/index.tsx b/apps/scandic-web/components/ParkingInformation/ParkingPrices/index.tsx similarity index 100% rename from components/ParkingInformation/ParkingPrices/index.tsx rename to apps/scandic-web/components/ParkingInformation/ParkingPrices/index.tsx diff --git a/components/ParkingInformation/ParkingPrices/parkingPrices.module.css b/apps/scandic-web/components/ParkingInformation/ParkingPrices/parkingPrices.module.css similarity index 100% rename from components/ParkingInformation/ParkingPrices/parkingPrices.module.css rename to apps/scandic-web/components/ParkingInformation/ParkingPrices/parkingPrices.module.css diff --git a/components/ParkingInformation/index.tsx b/apps/scandic-web/components/ParkingInformation/index.tsx similarity index 100% rename from components/ParkingInformation/index.tsx rename to apps/scandic-web/components/ParkingInformation/index.tsx diff --git a/components/ParkingInformation/parkingInformation.module.css b/apps/scandic-web/components/ParkingInformation/parkingInformation.module.css similarity index 100% rename from components/ParkingInformation/parkingInformation.module.css rename to apps/scandic-web/components/ParkingInformation/parkingInformation.module.css diff --git a/components/Profile/AddCreditCardButton/addCreditCardButton.module.css b/apps/scandic-web/components/Profile/AddCreditCardButton/addCreditCardButton.module.css similarity index 100% rename from components/Profile/AddCreditCardButton/addCreditCardButton.module.css rename to apps/scandic-web/components/Profile/AddCreditCardButton/addCreditCardButton.module.css diff --git a/components/Profile/AddCreditCardButton/index.tsx b/apps/scandic-web/components/Profile/AddCreditCardButton/index.tsx similarity index 100% rename from components/Profile/AddCreditCardButton/index.tsx rename to apps/scandic-web/components/Profile/AddCreditCardButton/index.tsx diff --git a/components/Profile/CreditCardList/CreditCardList.module.css b/apps/scandic-web/components/Profile/CreditCardList/CreditCardList.module.css similarity index 100% rename from components/Profile/CreditCardList/CreditCardList.module.css rename to apps/scandic-web/components/Profile/CreditCardList/CreditCardList.module.css diff --git a/components/Profile/CreditCardList/index.tsx b/apps/scandic-web/components/Profile/CreditCardList/index.tsx similarity index 100% rename from components/Profile/CreditCardList/index.tsx rename to apps/scandic-web/components/Profile/CreditCardList/index.tsx diff --git a/components/Profile/CreditCardRow/creditCardRow.module.css b/apps/scandic-web/components/Profile/CreditCardRow/creditCardRow.module.css similarity index 100% rename from components/Profile/CreditCardRow/creditCardRow.module.css rename to apps/scandic-web/components/Profile/CreditCardRow/creditCardRow.module.css diff --git a/components/Profile/CreditCardRow/index.tsx b/apps/scandic-web/components/Profile/CreditCardRow/index.tsx similarity index 100% rename from components/Profile/CreditCardRow/index.tsx rename to apps/scandic-web/components/Profile/CreditCardRow/index.tsx diff --git a/components/Profile/DeleteCreditCardButton/index.tsx b/apps/scandic-web/components/Profile/DeleteCreditCardButton/index.tsx similarity index 100% rename from components/Profile/DeleteCreditCardButton/index.tsx rename to apps/scandic-web/components/Profile/DeleteCreditCardButton/index.tsx diff --git a/components/Profile/DeleteCreditCardConfirmation.tsx b/apps/scandic-web/components/Profile/DeleteCreditCardConfirmation.tsx similarity index 100% rename from components/Profile/DeleteCreditCardConfirmation.tsx rename to apps/scandic-web/components/Profile/DeleteCreditCardConfirmation.tsx diff --git a/components/Profile/Header/header.module.css b/apps/scandic-web/components/Profile/Header/header.module.css similarity index 100% rename from components/Profile/Header/header.module.css rename to apps/scandic-web/components/Profile/Header/header.module.css diff --git a/components/Profile/Header/index.tsx b/apps/scandic-web/components/Profile/Header/index.tsx similarity index 100% rename from components/Profile/Header/index.tsx rename to apps/scandic-web/components/Profile/Header/index.tsx diff --git a/components/Profile/ManagePreferencesButton/index.tsx b/apps/scandic-web/components/Profile/ManagePreferencesButton/index.tsx similarity index 100% rename from components/Profile/ManagePreferencesButton/index.tsx rename to apps/scandic-web/components/Profile/ManagePreferencesButton/index.tsx diff --git a/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css b/apps/scandic-web/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css similarity index 100% rename from components/Profile/ManagePreferencesButton/managePreferencesButton.module.css rename to apps/scandic-web/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css diff --git a/components/ProtectedLayout.tsx b/apps/scandic-web/components/ProtectedLayout.tsx similarity index 100% rename from components/ProtectedLayout.tsx rename to apps/scandic-web/components/ProtectedLayout.tsx diff --git a/components/Redirect.tsx b/apps/scandic-web/components/Redirect.tsx similarity index 100% rename from components/Redirect.tsx rename to apps/scandic-web/components/Redirect.tsx diff --git a/components/SasTierComparison/index.tsx b/apps/scandic-web/components/SasTierComparison/index.tsx similarity index 100% rename from components/SasTierComparison/index.tsx rename to apps/scandic-web/components/SasTierComparison/index.tsx diff --git a/components/SasTierComparison/sasTierComparison.module.css b/apps/scandic-web/components/SasTierComparison/sasTierComparison.module.css similarity index 100% rename from components/SasTierComparison/sasTierComparison.module.css rename to apps/scandic-web/components/SasTierComparison/sasTierComparison.module.css diff --git a/components/Section/Container/container.module.css b/apps/scandic-web/components/Section/Container/container.module.css similarity index 100% rename from components/Section/Container/container.module.css rename to apps/scandic-web/components/Section/Container/container.module.css diff --git a/components/Section/Container/index.tsx b/apps/scandic-web/components/Section/Container/index.tsx similarity index 100% rename from components/Section/Container/index.tsx rename to apps/scandic-web/components/Section/Container/index.tsx diff --git a/components/Section/Header/header.module.css b/apps/scandic-web/components/Section/Header/header.module.css similarity index 100% rename from components/Section/Header/header.module.css rename to apps/scandic-web/components/Section/Header/header.module.css diff --git a/components/Section/Header/index.tsx b/apps/scandic-web/components/Section/Header/index.tsx similarity index 100% rename from components/Section/Header/index.tsx rename to apps/scandic-web/components/Section/Header/index.tsx diff --git a/components/Section/Link/index.tsx b/apps/scandic-web/components/Section/Link/index.tsx similarity index 100% rename from components/Section/Link/index.tsx rename to apps/scandic-web/components/Section/Link/index.tsx diff --git a/components/Section/Link/link.module.css b/apps/scandic-web/components/Section/Link/link.module.css similarity index 100% rename from components/Section/Link/link.module.css rename to apps/scandic-web/components/Section/Link/link.module.css diff --git a/components/Section/Link/link.ts b/apps/scandic-web/components/Section/Link/link.ts similarity index 100% rename from components/Section/Link/link.ts rename to apps/scandic-web/components/Section/Link/link.ts diff --git a/components/Section/Link/variants.ts b/apps/scandic-web/components/Section/Link/variants.ts similarity index 100% rename from components/Section/Link/variants.ts rename to apps/scandic-web/components/Section/Link/variants.ts diff --git a/components/SidePeeks/HotelSidePeek/Accordions/Accessibility.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Accessibility.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/Accessibility.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Accessibility.tsx diff --git a/components/SidePeeks/HotelSidePeek/Accordions/CheckInCheckOut.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/CheckInCheckOut.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/CheckInCheckOut.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/CheckInCheckOut.tsx diff --git a/components/SidePeeks/HotelSidePeek/Accordions/MeetingsAndConferences.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/MeetingsAndConferences.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/MeetingsAndConferences.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/MeetingsAndConferences.tsx diff --git a/components/SidePeeks/HotelSidePeek/Accordions/Parking.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Parking.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/Parking.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Parking.tsx diff --git a/components/SidePeeks/HotelSidePeek/Accordions/Restaurant.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Restaurant.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/Restaurant.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/Restaurant.tsx diff --git a/components/SidePeeks/HotelSidePeek/Accordions/sidePeekAccordion.module.css b/apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/sidePeekAccordion.module.css similarity index 100% rename from components/SidePeeks/HotelSidePeek/Accordions/sidePeekAccordion.module.css rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/Accordions/sidePeekAccordion.module.css diff --git a/components/SidePeeks/HotelSidePeek/hotelSidePeek.module.css b/apps/scandic-web/components/SidePeeks/HotelSidePeek/hotelSidePeek.module.css similarity index 100% rename from components/SidePeeks/HotelSidePeek/hotelSidePeek.module.css rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/hotelSidePeek.module.css diff --git a/components/SidePeeks/HotelSidePeek/index.tsx b/apps/scandic-web/components/SidePeeks/HotelSidePeek/index.tsx similarity index 100% rename from components/SidePeeks/HotelSidePeek/index.tsx rename to apps/scandic-web/components/SidePeeks/HotelSidePeek/index.tsx diff --git a/components/SidePeeks/RoomSidePeek/bedIcon.ts b/apps/scandic-web/components/SidePeeks/RoomSidePeek/bedIcon.ts similarity index 100% rename from components/SidePeeks/RoomSidePeek/bedIcon.ts rename to apps/scandic-web/components/SidePeeks/RoomSidePeek/bedIcon.ts diff --git a/components/SidePeeks/RoomSidePeek/facilityIcon.ts b/apps/scandic-web/components/SidePeeks/RoomSidePeek/facilityIcon.ts similarity index 100% rename from components/SidePeeks/RoomSidePeek/facilityIcon.ts rename to apps/scandic-web/components/SidePeeks/RoomSidePeek/facilityIcon.ts diff --git a/components/SidePeeks/RoomSidePeek/index.tsx b/apps/scandic-web/components/SidePeeks/RoomSidePeek/index.tsx similarity index 100% rename from components/SidePeeks/RoomSidePeek/index.tsx rename to apps/scandic-web/components/SidePeeks/RoomSidePeek/index.tsx diff --git a/components/SidePeeks/RoomSidePeek/roomSidePeek.module.css b/apps/scandic-web/components/SidePeeks/RoomSidePeek/roomSidePeek.module.css similarity index 100% rename from components/SidePeeks/RoomSidePeek/roomSidePeek.module.css rename to apps/scandic-web/components/SidePeeks/RoomSidePeek/roomSidePeek.module.css diff --git a/components/SidePeeks/SidePeekProvider/index.tsx b/apps/scandic-web/components/SidePeeks/SidePeekProvider/index.tsx similarity index 100% rename from components/SidePeeks/SidePeekProvider/index.tsx rename to apps/scandic-web/components/SidePeeks/SidePeekProvider/index.tsx diff --git a/components/Sidebar/JoinLoyalty/Contact/ContactRow/contactRow.module.css b/apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/ContactRow/contactRow.module.css similarity index 100% rename from components/Sidebar/JoinLoyalty/Contact/ContactRow/contactRow.module.css rename to apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/ContactRow/contactRow.module.css diff --git a/components/Sidebar/JoinLoyalty/Contact/ContactRow/index.tsx b/apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/ContactRow/index.tsx similarity index 100% rename from components/Sidebar/JoinLoyalty/Contact/ContactRow/index.tsx rename to apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/ContactRow/index.tsx diff --git a/components/Sidebar/JoinLoyalty/Contact/contact.module.css b/apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/contact.module.css similarity index 100% rename from components/Sidebar/JoinLoyalty/Contact/contact.module.css rename to apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/contact.module.css diff --git a/components/Sidebar/JoinLoyalty/Contact/index.tsx b/apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/index.tsx similarity index 100% rename from components/Sidebar/JoinLoyalty/Contact/index.tsx rename to apps/scandic-web/components/Sidebar/JoinLoyalty/Contact/index.tsx diff --git a/components/Sidebar/JoinLoyalty/ReadMore/index.tsx b/apps/scandic-web/components/Sidebar/JoinLoyalty/ReadMore/index.tsx similarity index 100% rename from components/Sidebar/JoinLoyalty/ReadMore/index.tsx rename to apps/scandic-web/components/Sidebar/JoinLoyalty/ReadMore/index.tsx diff --git a/components/Sidebar/JoinLoyalty/ReadMore/readMore.module.css b/apps/scandic-web/components/Sidebar/JoinLoyalty/ReadMore/readMore.module.css similarity index 100% rename from components/Sidebar/JoinLoyalty/ReadMore/readMore.module.css rename to apps/scandic-web/components/Sidebar/JoinLoyalty/ReadMore/readMore.module.css diff --git a/components/Sidebar/JoinLoyalty/index.tsx b/apps/scandic-web/components/Sidebar/JoinLoyalty/index.tsx similarity index 100% rename from components/Sidebar/JoinLoyalty/index.tsx rename to apps/scandic-web/components/Sidebar/JoinLoyalty/index.tsx diff --git a/components/Sidebar/JoinLoyalty/joinLoyalty.module.css b/apps/scandic-web/components/Sidebar/JoinLoyalty/joinLoyalty.module.css similarity index 100% rename from components/Sidebar/JoinLoyalty/joinLoyalty.module.css rename to apps/scandic-web/components/Sidebar/JoinLoyalty/joinLoyalty.module.css diff --git a/components/Sidebar/MyPagesNavigation.tsx b/apps/scandic-web/components/Sidebar/MyPagesNavigation.tsx similarity index 100% rename from components/Sidebar/MyPagesNavigation.tsx rename to apps/scandic-web/components/Sidebar/MyPagesNavigation.tsx diff --git a/components/Sidebar/SidebarSkeleton.tsx b/apps/scandic-web/components/Sidebar/SidebarSkeleton.tsx similarity index 100% rename from components/Sidebar/SidebarSkeleton.tsx rename to apps/scandic-web/components/Sidebar/SidebarSkeleton.tsx diff --git a/components/Sidebar/index.tsx b/apps/scandic-web/components/Sidebar/index.tsx similarity index 100% rename from components/Sidebar/index.tsx rename to apps/scandic-web/components/Sidebar/index.tsx diff --git a/components/Sidebar/sidebar.module.css b/apps/scandic-web/components/Sidebar/sidebar.module.css similarity index 100% rename from components/Sidebar/sidebar.module.css rename to apps/scandic-web/components/Sidebar/sidebar.module.css diff --git a/components/SitewideAlert/index.tsx b/apps/scandic-web/components/SitewideAlert/index.tsx similarity index 100% rename from components/SitewideAlert/index.tsx rename to apps/scandic-web/components/SitewideAlert/index.tsx diff --git a/components/SitewideAlert/sitewideAlert.module.css b/apps/scandic-web/components/SitewideAlert/sitewideAlert.module.css similarity index 100% rename from components/SitewideAlert/sitewideAlert.module.css rename to apps/scandic-web/components/SitewideAlert/sitewideAlert.module.css diff --git a/components/SkeletonShimmer/index.tsx b/apps/scandic-web/components/SkeletonShimmer/index.tsx similarity index 100% rename from components/SkeletonShimmer/index.tsx rename to apps/scandic-web/components/SkeletonShimmer/index.tsx diff --git a/components/SkeletonShimmer/skeleton.module.css b/apps/scandic-web/components/SkeletonShimmer/skeleton.module.css similarity index 100% rename from components/SkeletonShimmer/skeleton.module.css rename to apps/scandic-web/components/SkeletonShimmer/skeleton.module.css diff --git a/components/SkipToMainContent.tsx b/apps/scandic-web/components/SkipToMainContent.tsx similarity index 100% rename from components/SkipToMainContent.tsx rename to apps/scandic-web/components/SkipToMainContent.tsx diff --git a/components/TabFilters/index.tsx b/apps/scandic-web/components/TabFilters/index.tsx similarity index 100% rename from components/TabFilters/index.tsx rename to apps/scandic-web/components/TabFilters/index.tsx diff --git a/components/TabFilters/tabFilters.module.css b/apps/scandic-web/components/TabFilters/tabFilters.module.css similarity index 100% rename from components/TabFilters/tabFilters.module.css rename to apps/scandic-web/components/TabFilters/tabFilters.module.css diff --git a/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css b/apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css similarity index 100% rename from components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css rename to apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.module.css diff --git a/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.ts b/apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.ts similarity index 100% rename from components/TempDesignSystem/Accordion/AccordionItem/accordionItem.ts rename to apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/accordionItem.ts diff --git a/components/TempDesignSystem/Accordion/AccordionItem/index.tsx b/apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/index.tsx similarity index 100% rename from components/TempDesignSystem/Accordion/AccordionItem/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/index.tsx diff --git a/components/TempDesignSystem/Accordion/AccordionItem/variants.ts b/apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/variants.ts similarity index 100% rename from components/TempDesignSystem/Accordion/AccordionItem/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Accordion/AccordionItem/variants.ts diff --git a/components/TempDesignSystem/Accordion/accordion.module.css b/apps/scandic-web/components/TempDesignSystem/Accordion/accordion.module.css similarity index 100% rename from components/TempDesignSystem/Accordion/accordion.module.css rename to apps/scandic-web/components/TempDesignSystem/Accordion/accordion.module.css diff --git a/components/TempDesignSystem/Accordion/accordion.ts b/apps/scandic-web/components/TempDesignSystem/Accordion/accordion.ts similarity index 100% rename from components/TempDesignSystem/Accordion/accordion.ts rename to apps/scandic-web/components/TempDesignSystem/Accordion/accordion.ts diff --git a/components/TempDesignSystem/Accordion/index.tsx b/apps/scandic-web/components/TempDesignSystem/Accordion/index.tsx similarity index 100% rename from components/TempDesignSystem/Accordion/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Accordion/index.tsx diff --git a/components/TempDesignSystem/Accordion/variants.ts b/apps/scandic-web/components/TempDesignSystem/Accordion/variants.ts similarity index 100% rename from components/TempDesignSystem/Accordion/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Accordion/variants.ts diff --git a/components/TempDesignSystem/Alert/Sidepeek/index.tsx b/apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/index.tsx similarity index 100% rename from components/TempDesignSystem/Alert/Sidepeek/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/index.tsx diff --git a/components/TempDesignSystem/Alert/Sidepeek/sidepeek.module.css b/apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/sidepeek.module.css similarity index 100% rename from components/TempDesignSystem/Alert/Sidepeek/sidepeek.module.css rename to apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/sidepeek.module.css diff --git a/components/TempDesignSystem/Alert/Sidepeek/sidepeek.ts b/apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/sidepeek.ts similarity index 100% rename from components/TempDesignSystem/Alert/Sidepeek/sidepeek.ts rename to apps/scandic-web/components/TempDesignSystem/Alert/Sidepeek/sidepeek.ts diff --git a/components/TempDesignSystem/Alert/alert.module.css b/apps/scandic-web/components/TempDesignSystem/Alert/alert.module.css similarity index 100% rename from components/TempDesignSystem/Alert/alert.module.css rename to apps/scandic-web/components/TempDesignSystem/Alert/alert.module.css diff --git a/components/TempDesignSystem/Alert/alert.ts b/apps/scandic-web/components/TempDesignSystem/Alert/alert.ts similarity index 100% rename from components/TempDesignSystem/Alert/alert.ts rename to apps/scandic-web/components/TempDesignSystem/Alert/alert.ts diff --git a/components/TempDesignSystem/Alert/index.tsx b/apps/scandic-web/components/TempDesignSystem/Alert/index.tsx similarity index 100% rename from components/TempDesignSystem/Alert/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Alert/index.tsx diff --git a/components/TempDesignSystem/Alert/utils.ts b/apps/scandic-web/components/TempDesignSystem/Alert/utils.ts similarity index 100% rename from components/TempDesignSystem/Alert/utils.ts rename to apps/scandic-web/components/TempDesignSystem/Alert/utils.ts diff --git a/components/TempDesignSystem/Alert/variants.ts b/apps/scandic-web/components/TempDesignSystem/Alert/variants.ts similarity index 100% rename from components/TempDesignSystem/Alert/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Alert/variants.ts diff --git a/components/TempDesignSystem/AncillaryCard/ancillaryCard.module.css b/apps/scandic-web/components/TempDesignSystem/AncillaryCard/ancillaryCard.module.css similarity index 100% rename from components/TempDesignSystem/AncillaryCard/ancillaryCard.module.css rename to apps/scandic-web/components/TempDesignSystem/AncillaryCard/ancillaryCard.module.css diff --git a/components/TempDesignSystem/AncillaryCard/index.tsx b/apps/scandic-web/components/TempDesignSystem/AncillaryCard/index.tsx similarity index 100% rename from components/TempDesignSystem/AncillaryCard/index.tsx rename to apps/scandic-web/components/TempDesignSystem/AncillaryCard/index.tsx diff --git a/components/TempDesignSystem/BackToTopButton/backToTopButton.module.css b/apps/scandic-web/components/TempDesignSystem/BackToTopButton/backToTopButton.module.css similarity index 100% rename from components/TempDesignSystem/BackToTopButton/backToTopButton.module.css rename to apps/scandic-web/components/TempDesignSystem/BackToTopButton/backToTopButton.module.css diff --git a/components/TempDesignSystem/BackToTopButton/index.tsx b/apps/scandic-web/components/TempDesignSystem/BackToTopButton/index.tsx similarity index 100% rename from components/TempDesignSystem/BackToTopButton/index.tsx rename to apps/scandic-web/components/TempDesignSystem/BackToTopButton/index.tsx diff --git a/components/TempDesignSystem/BackToTopButton/variants.ts b/apps/scandic-web/components/TempDesignSystem/BackToTopButton/variants.ts similarity index 100% rename from components/TempDesignSystem/BackToTopButton/variants.ts rename to apps/scandic-web/components/TempDesignSystem/BackToTopButton/variants.ts diff --git a/components/TempDesignSystem/Breadcrumbs/BreadcrumbsSkeleton/index.tsx b/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/BreadcrumbsSkeleton/index.tsx similarity index 100% rename from components/TempDesignSystem/Breadcrumbs/BreadcrumbsSkeleton/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Breadcrumbs/BreadcrumbsSkeleton/index.tsx diff --git a/components/TempDesignSystem/Breadcrumbs/breadcrumbs.module.css b/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/breadcrumbs.module.css similarity index 100% rename from components/TempDesignSystem/Breadcrumbs/breadcrumbs.module.css rename to apps/scandic-web/components/TempDesignSystem/Breadcrumbs/breadcrumbs.module.css diff --git a/components/TempDesignSystem/Breadcrumbs/breadcrumbs.ts b/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/breadcrumbs.ts similarity index 100% rename from components/TempDesignSystem/Breadcrumbs/breadcrumbs.ts rename to apps/scandic-web/components/TempDesignSystem/Breadcrumbs/breadcrumbs.ts diff --git a/components/TempDesignSystem/Breadcrumbs/index.tsx b/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/index.tsx similarity index 100% rename from components/TempDesignSystem/Breadcrumbs/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Breadcrumbs/index.tsx diff --git a/components/TempDesignSystem/Breadcrumbs/variants.ts b/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/variants.ts similarity index 100% rename from components/TempDesignSystem/Breadcrumbs/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Breadcrumbs/variants.ts diff --git a/components/TempDesignSystem/Button/button.module.css b/apps/scandic-web/components/TempDesignSystem/Button/button.module.css similarity index 100% rename from components/TempDesignSystem/Button/button.module.css rename to apps/scandic-web/components/TempDesignSystem/Button/button.module.css diff --git a/components/TempDesignSystem/Button/button.ts b/apps/scandic-web/components/TempDesignSystem/Button/button.ts similarity index 100% rename from components/TempDesignSystem/Button/button.ts rename to apps/scandic-web/components/TempDesignSystem/Button/button.ts diff --git a/components/TempDesignSystem/Button/index.tsx b/apps/scandic-web/components/TempDesignSystem/Button/index.tsx similarity index 100% rename from components/TempDesignSystem/Button/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Button/index.tsx diff --git a/components/TempDesignSystem/Button/variants.ts b/apps/scandic-web/components/TempDesignSystem/Button/variants.ts similarity index 100% rename from components/TempDesignSystem/Button/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Button/variants.ts diff --git a/components/TempDesignSystem/Card/CardImage/cardImage.module.css b/apps/scandic-web/components/TempDesignSystem/Card/CardImage/cardImage.module.css similarity index 100% rename from components/TempDesignSystem/Card/CardImage/cardImage.module.css rename to apps/scandic-web/components/TempDesignSystem/Card/CardImage/cardImage.module.css diff --git a/components/TempDesignSystem/Card/CardImage/index.tsx b/apps/scandic-web/components/TempDesignSystem/Card/CardImage/index.tsx similarity index 100% rename from components/TempDesignSystem/Card/CardImage/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Card/CardImage/index.tsx diff --git a/components/TempDesignSystem/Card/card.module.css b/apps/scandic-web/components/TempDesignSystem/Card/card.module.css similarity index 100% rename from components/TempDesignSystem/Card/card.module.css rename to apps/scandic-web/components/TempDesignSystem/Card/card.module.css diff --git a/components/TempDesignSystem/Card/card.ts b/apps/scandic-web/components/TempDesignSystem/Card/card.ts similarity index 100% rename from components/TempDesignSystem/Card/card.ts rename to apps/scandic-web/components/TempDesignSystem/Card/card.ts diff --git a/components/TempDesignSystem/Card/index.tsx b/apps/scandic-web/components/TempDesignSystem/Card/index.tsx similarity index 100% rename from components/TempDesignSystem/Card/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Card/index.tsx diff --git a/components/TempDesignSystem/Card/utils.ts b/apps/scandic-web/components/TempDesignSystem/Card/utils.ts similarity index 100% rename from components/TempDesignSystem/Card/utils.ts rename to apps/scandic-web/components/TempDesignSystem/Card/utils.ts diff --git a/components/TempDesignSystem/Card/variants.ts b/apps/scandic-web/components/TempDesignSystem/Card/variants.ts similarity index 100% rename from components/TempDesignSystem/Card/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Card/variants.ts diff --git a/components/TempDesignSystem/Chip/chip.module.css b/apps/scandic-web/components/TempDesignSystem/Chip/chip.module.css similarity index 100% rename from components/TempDesignSystem/Chip/chip.module.css rename to apps/scandic-web/components/TempDesignSystem/Chip/chip.module.css diff --git a/components/TempDesignSystem/Chip/chip.ts b/apps/scandic-web/components/TempDesignSystem/Chip/chip.ts similarity index 100% rename from components/TempDesignSystem/Chip/chip.ts rename to apps/scandic-web/components/TempDesignSystem/Chip/chip.ts diff --git a/components/TempDesignSystem/Chip/index.tsx b/apps/scandic-web/components/TempDesignSystem/Chip/index.tsx similarity index 100% rename from components/TempDesignSystem/Chip/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Chip/index.tsx diff --git a/components/TempDesignSystem/Chip/variants.ts b/apps/scandic-web/components/TempDesignSystem/Chip/variants.ts similarity index 100% rename from components/TempDesignSystem/Chip/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Chip/variants.ts diff --git a/components/TempDesignSystem/Divider/divider.module.css b/apps/scandic-web/components/TempDesignSystem/Divider/divider.module.css similarity index 100% rename from components/TempDesignSystem/Divider/divider.module.css rename to apps/scandic-web/components/TempDesignSystem/Divider/divider.module.css diff --git a/components/TempDesignSystem/Divider/divider.ts b/apps/scandic-web/components/TempDesignSystem/Divider/divider.ts similarity index 100% rename from components/TempDesignSystem/Divider/divider.ts rename to apps/scandic-web/components/TempDesignSystem/Divider/divider.ts diff --git a/components/TempDesignSystem/Divider/index.tsx b/apps/scandic-web/components/TempDesignSystem/Divider/index.tsx similarity index 100% rename from components/TempDesignSystem/Divider/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Divider/index.tsx diff --git a/components/TempDesignSystem/Divider/variants.ts b/apps/scandic-web/components/TempDesignSystem/Divider/variants.ts similarity index 100% rename from components/TempDesignSystem/Divider/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Divider/variants.ts diff --git a/components/TempDesignSystem/Form/Checkbox/checkbox.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Checkbox/checkbox.module.css similarity index 100% rename from components/TempDesignSystem/Form/Checkbox/checkbox.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Checkbox/checkbox.module.css diff --git a/components/TempDesignSystem/Form/Checkbox/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Checkbox/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Checkbox/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Checkbox/index.tsx diff --git a/components/TempDesignSystem/Form/ChoiceCard/Radio.tsx b/apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/Radio.tsx similarity index 100% rename from components/TempDesignSystem/Form/ChoiceCard/Radio.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/Radio.tsx diff --git a/components/TempDesignSystem/Form/ChoiceCard/_Card/card.module.css b/apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/card.module.css similarity index 100% rename from components/TempDesignSystem/Form/ChoiceCard/_Card/card.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/card.module.css diff --git a/components/TempDesignSystem/Form/ChoiceCard/_Card/card.ts b/apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/card.ts similarity index 100% rename from components/TempDesignSystem/Form/ChoiceCard/_Card/card.ts rename to apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/card.ts diff --git a/components/TempDesignSystem/Form/ChoiceCard/_Card/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/ChoiceCard/_Card/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/ChoiceCard/_Card/index.tsx diff --git a/components/TempDesignSystem/Form/Country/countries.ts b/apps/scandic-web/components/TempDesignSystem/Form/Country/countries.ts similarity index 100% rename from components/TempDesignSystem/Form/Country/countries.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Country/countries.ts diff --git a/components/TempDesignSystem/Form/Country/country.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Country/country.module.css similarity index 100% rename from components/TempDesignSystem/Form/Country/country.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Country/country.module.css diff --git a/components/TempDesignSystem/Form/Country/country.ts b/apps/scandic-web/components/TempDesignSystem/Form/Country/country.ts similarity index 100% rename from components/TempDesignSystem/Form/Country/country.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Country/country.ts diff --git a/components/TempDesignSystem/Form/Country/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Country/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Country/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Country/index.tsx diff --git a/components/TempDesignSystem/Form/Date/date.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Date/date.module.css similarity index 100% rename from components/TempDesignSystem/Form/Date/date.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Date/date.module.css diff --git a/components/TempDesignSystem/Form/Date/date.test.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Date/date.test.tsx similarity index 100% rename from components/TempDesignSystem/Form/Date/date.test.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Date/date.test.tsx diff --git a/components/TempDesignSystem/Form/Date/date.ts b/apps/scandic-web/components/TempDesignSystem/Form/Date/date.ts similarity index 100% rename from components/TempDesignSystem/Form/Date/date.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Date/date.ts diff --git a/components/TempDesignSystem/Form/Date/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Date/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Date/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Date/index.tsx diff --git a/components/TempDesignSystem/Form/ErrorMessage/Error.tsx b/apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/Error.tsx similarity index 100% rename from components/TempDesignSystem/Form/ErrorMessage/Error.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/Error.tsx diff --git a/components/TempDesignSystem/Form/ErrorMessage/error.module.css b/apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/error.module.css similarity index 100% rename from components/TempDesignSystem/Form/ErrorMessage/error.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/error.module.css diff --git a/components/TempDesignSystem/Form/ErrorMessage/errorMessage.ts b/apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/errorMessage.ts similarity index 100% rename from components/TempDesignSystem/Form/ErrorMessage/errorMessage.ts rename to apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/errorMessage.ts diff --git a/components/TempDesignSystem/Form/ErrorMessage/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/ErrorMessage/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/ErrorMessage/index.tsx diff --git a/components/TempDesignSystem/Form/FilterChip/Checkbox.tsx b/apps/scandic-web/components/TempDesignSystem/Form/FilterChip/Checkbox.tsx similarity index 100% rename from components/TempDesignSystem/Form/FilterChip/Checkbox.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/FilterChip/Checkbox.tsx diff --git a/components/TempDesignSystem/Form/FilterChip/_Chip/chip.module.css b/apps/scandic-web/components/TempDesignSystem/Form/FilterChip/_Chip/chip.module.css similarity index 100% rename from components/TempDesignSystem/Form/FilterChip/_Chip/chip.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/FilterChip/_Chip/chip.module.css diff --git a/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx diff --git a/components/TempDesignSystem/Form/Input/AriaInputWithLabel/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Input/AriaInputWithLabel/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/index.tsx diff --git a/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.module.css similarity index 100% rename from components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.module.css diff --git a/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.ts b/apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.ts similarity index 100% rename from components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Input/AriaInputWithLabel/input.ts diff --git a/components/TempDesignSystem/Form/Input/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Input/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Input/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Input/index.tsx diff --git a/components/TempDesignSystem/Form/Input/input.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Input/input.module.css similarity index 100% rename from components/TempDesignSystem/Form/Input/input.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Input/input.module.css diff --git a/components/TempDesignSystem/Form/Input/input.ts b/apps/scandic-web/components/TempDesignSystem/Form/Input/input.ts similarity index 100% rename from components/TempDesignSystem/Form/Input/input.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Input/input.ts diff --git a/components/TempDesignSystem/Form/Label/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Label/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Label/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Label/index.tsx diff --git a/components/TempDesignSystem/Form/Label/label.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Label/label.module.css similarity index 100% rename from components/TempDesignSystem/Form/Label/label.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Label/label.module.css diff --git a/components/TempDesignSystem/Form/Label/label.ts b/apps/scandic-web/components/TempDesignSystem/Form/Label/label.ts similarity index 100% rename from components/TempDesignSystem/Form/Label/label.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Label/label.ts diff --git a/components/TempDesignSystem/Form/Label/variants.ts b/apps/scandic-web/components/TempDesignSystem/Form/Label/variants.ts similarity index 100% rename from components/TempDesignSystem/Form/Label/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Label/variants.ts diff --git a/components/TempDesignSystem/Form/NewPassword/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/NewPassword/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/NewPassword/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/NewPassword/index.tsx diff --git a/components/TempDesignSystem/Form/NewPassword/newPassword.module.css b/apps/scandic-web/components/TempDesignSystem/Form/NewPassword/newPassword.module.css similarity index 100% rename from components/TempDesignSystem/Form/NewPassword/newPassword.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/NewPassword/newPassword.module.css diff --git a/components/TempDesignSystem/Form/NewPassword/newPassword.ts b/apps/scandic-web/components/TempDesignSystem/Form/NewPassword/newPassword.ts similarity index 100% rename from components/TempDesignSystem/Form/NewPassword/newPassword.ts rename to apps/scandic-web/components/TempDesignSystem/Form/NewPassword/newPassword.ts diff --git a/components/TempDesignSystem/Form/Phone/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Phone/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Phone/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Phone/index.tsx diff --git a/components/TempDesignSystem/Form/Phone/phone.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Phone/phone.module.css similarity index 100% rename from components/TempDesignSystem/Form/Phone/phone.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Phone/phone.module.css diff --git a/components/TempDesignSystem/Form/Select/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Select/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Select/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Select/index.tsx diff --git a/components/TempDesignSystem/Form/Select/select.ts b/apps/scandic-web/components/TempDesignSystem/Form/Select/select.ts similarity index 100% rename from components/TempDesignSystem/Form/Select/select.ts rename to apps/scandic-web/components/TempDesignSystem/Form/Select/select.ts diff --git a/components/TempDesignSystem/Form/SelectChevron/chevron.module.css b/apps/scandic-web/components/TempDesignSystem/Form/SelectChevron/chevron.module.css similarity index 100% rename from components/TempDesignSystem/Form/SelectChevron/chevron.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/SelectChevron/chevron.module.css diff --git a/components/TempDesignSystem/Form/SelectChevron/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/SelectChevron/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/SelectChevron/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/SelectChevron/index.tsx diff --git a/components/TempDesignSystem/Form/Switch/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/Switch/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/Switch/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/Switch/index.tsx diff --git a/components/TempDesignSystem/Form/Switch/switch.module.css b/apps/scandic-web/components/TempDesignSystem/Form/Switch/switch.module.css similarity index 100% rename from components/TempDesignSystem/Form/Switch/switch.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/Switch/switch.module.css diff --git a/components/TempDesignSystem/Form/TextArea/index.tsx b/apps/scandic-web/components/TempDesignSystem/Form/TextArea/index.tsx similarity index 100% rename from components/TempDesignSystem/Form/TextArea/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Form/TextArea/index.tsx diff --git a/components/TempDesignSystem/Form/TextArea/input.ts b/apps/scandic-web/components/TempDesignSystem/Form/TextArea/input.ts similarity index 100% rename from components/TempDesignSystem/Form/TextArea/input.ts rename to apps/scandic-web/components/TempDesignSystem/Form/TextArea/input.ts diff --git a/components/TempDesignSystem/Form/TextArea/textarea.module.css b/apps/scandic-web/components/TempDesignSystem/Form/TextArea/textarea.module.css similarity index 100% rename from components/TempDesignSystem/Form/TextArea/textarea.module.css rename to apps/scandic-web/components/TempDesignSystem/Form/TextArea/textarea.module.css diff --git a/components/TempDesignSystem/Grids/Dynamic/Item/index.tsx b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/index.tsx similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/Item/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/index.tsx diff --git a/components/TempDesignSystem/Grids/Dynamic/Item/item.module.css b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/item.module.css similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/Item/item.module.css rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/item.module.css diff --git a/components/TempDesignSystem/Grids/Dynamic/Item/item.ts b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/item.ts similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/Item/item.ts rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/item.ts diff --git a/components/TempDesignSystem/Grids/Dynamic/Item/variants.ts b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/variants.ts similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/Item/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/Item/variants.ts diff --git a/components/TempDesignSystem/Grids/Dynamic/dynamic.module.css b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/dynamic.module.css similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/dynamic.module.css rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/dynamic.module.css diff --git a/components/TempDesignSystem/Grids/Dynamic/dynamic.ts b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/dynamic.ts similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/dynamic.ts rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/dynamic.ts diff --git a/components/TempDesignSystem/Grids/Dynamic/index.tsx b/apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/index.tsx similarity index 100% rename from components/TempDesignSystem/Grids/Dynamic/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Grids/Dynamic/index.tsx diff --git a/components/TempDesignSystem/Grids/Stackable/index.tsx b/apps/scandic-web/components/TempDesignSystem/Grids/Stackable/index.tsx similarity index 100% rename from components/TempDesignSystem/Grids/Stackable/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Grids/Stackable/index.tsx diff --git a/components/TempDesignSystem/Grids/Stackable/stackable.module.css b/apps/scandic-web/components/TempDesignSystem/Grids/Stackable/stackable.module.css similarity index 100% rename from components/TempDesignSystem/Grids/Stackable/stackable.module.css rename to apps/scandic-web/components/TempDesignSystem/Grids/Stackable/stackable.module.css diff --git a/components/TempDesignSystem/Grids/Stackable/stackable.ts b/apps/scandic-web/components/TempDesignSystem/Grids/Stackable/stackable.ts similarity index 100% rename from components/TempDesignSystem/Grids/Stackable/stackable.ts rename to apps/scandic-web/components/TempDesignSystem/Grids/Stackable/stackable.ts diff --git a/components/TempDesignSystem/Grids/Stackable/variants.ts b/apps/scandic-web/components/TempDesignSystem/Grids/Stackable/variants.ts similarity index 100% rename from components/TempDesignSystem/Grids/Stackable/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Grids/Stackable/variants.ts diff --git a/components/TempDesignSystem/Grids/index.tsx b/apps/scandic-web/components/TempDesignSystem/Grids/index.tsx similarity index 100% rename from components/TempDesignSystem/Grids/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Grids/index.tsx diff --git a/components/TempDesignSystem/IconChip/iconChip.module.css b/apps/scandic-web/components/TempDesignSystem/IconChip/iconChip.module.css similarity index 100% rename from components/TempDesignSystem/IconChip/iconChip.module.css rename to apps/scandic-web/components/TempDesignSystem/IconChip/iconChip.module.css diff --git a/components/TempDesignSystem/IconChip/index.tsx b/apps/scandic-web/components/TempDesignSystem/IconChip/index.tsx similarity index 100% rename from components/TempDesignSystem/IconChip/index.tsx rename to apps/scandic-web/components/TempDesignSystem/IconChip/index.tsx diff --git a/components/TempDesignSystem/IconChip/variants.ts b/apps/scandic-web/components/TempDesignSystem/IconChip/variants.ts similarity index 100% rename from components/TempDesignSystem/IconChip/variants.ts rename to apps/scandic-web/components/TempDesignSystem/IconChip/variants.ts diff --git a/components/TempDesignSystem/Link/index.tsx b/apps/scandic-web/components/TempDesignSystem/Link/index.tsx similarity index 100% rename from components/TempDesignSystem/Link/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Link/index.tsx diff --git a/components/TempDesignSystem/Link/link.module.css b/apps/scandic-web/components/TempDesignSystem/Link/link.module.css similarity index 100% rename from components/TempDesignSystem/Link/link.module.css rename to apps/scandic-web/components/TempDesignSystem/Link/link.module.css diff --git a/components/TempDesignSystem/Link/link.ts b/apps/scandic-web/components/TempDesignSystem/Link/link.ts similarity index 100% rename from components/TempDesignSystem/Link/link.ts rename to apps/scandic-web/components/TempDesignSystem/Link/link.ts diff --git a/components/TempDesignSystem/Link/variants.ts b/apps/scandic-web/components/TempDesignSystem/Link/variants.ts similarity index 100% rename from components/TempDesignSystem/Link/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Link/variants.ts diff --git a/components/TempDesignSystem/LinkChips/Chip/chip.module.css b/apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/chip.module.css similarity index 100% rename from components/TempDesignSystem/LinkChips/Chip/chip.module.css rename to apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/chip.module.css diff --git a/components/TempDesignSystem/LinkChips/Chip/chip.ts b/apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/chip.ts similarity index 100% rename from components/TempDesignSystem/LinkChips/Chip/chip.ts rename to apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/chip.ts diff --git a/components/TempDesignSystem/LinkChips/Chip/index.tsx b/apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/index.tsx similarity index 100% rename from components/TempDesignSystem/LinkChips/Chip/index.tsx rename to apps/scandic-web/components/TempDesignSystem/LinkChips/Chip/index.tsx diff --git a/components/TempDesignSystem/LinkChips/index.tsx b/apps/scandic-web/components/TempDesignSystem/LinkChips/index.tsx similarity index 100% rename from components/TempDesignSystem/LinkChips/index.tsx rename to apps/scandic-web/components/TempDesignSystem/LinkChips/index.tsx diff --git a/components/TempDesignSystem/LinkChips/linkChips.module.css b/apps/scandic-web/components/TempDesignSystem/LinkChips/linkChips.module.css similarity index 100% rename from components/TempDesignSystem/LinkChips/linkChips.module.css rename to apps/scandic-web/components/TempDesignSystem/LinkChips/linkChips.module.css diff --git a/components/TempDesignSystem/LinkChips/linkChips.ts b/apps/scandic-web/components/TempDesignSystem/LinkChips/linkChips.ts similarity index 100% rename from components/TempDesignSystem/LinkChips/linkChips.ts rename to apps/scandic-web/components/TempDesignSystem/LinkChips/linkChips.ts diff --git a/components/TempDesignSystem/LoyaltyCard/index.tsx b/apps/scandic-web/components/TempDesignSystem/LoyaltyCard/index.tsx similarity index 100% rename from components/TempDesignSystem/LoyaltyCard/index.tsx rename to apps/scandic-web/components/TempDesignSystem/LoyaltyCard/index.tsx diff --git a/components/TempDesignSystem/LoyaltyCard/loyaltyCard.module.css b/apps/scandic-web/components/TempDesignSystem/LoyaltyCard/loyaltyCard.module.css similarity index 100% rename from components/TempDesignSystem/LoyaltyCard/loyaltyCard.module.css rename to apps/scandic-web/components/TempDesignSystem/LoyaltyCard/loyaltyCard.module.css diff --git a/components/TempDesignSystem/LoyaltyCard/loyaltyCard.ts b/apps/scandic-web/components/TempDesignSystem/LoyaltyCard/loyaltyCard.ts similarity index 100% rename from components/TempDesignSystem/LoyaltyCard/loyaltyCard.ts rename to apps/scandic-web/components/TempDesignSystem/LoyaltyCard/loyaltyCard.ts diff --git a/components/TempDesignSystem/LoyaltyCard/variants.ts b/apps/scandic-web/components/TempDesignSystem/LoyaltyCard/variants.ts similarity index 100% rename from components/TempDesignSystem/LoyaltyCard/variants.ts rename to apps/scandic-web/components/TempDesignSystem/LoyaltyCard/variants.ts diff --git a/components/TempDesignSystem/MeetingRoomCard/index.tsx b/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/index.tsx similarity index 100% rename from components/TempDesignSystem/MeetingRoomCard/index.tsx rename to apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/index.tsx diff --git a/components/TempDesignSystem/MeetingRoomCard/meetingRoomCard.module.css b/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/meetingRoomCard.module.css similarity index 100% rename from components/TempDesignSystem/MeetingRoomCard/meetingRoomCard.module.css rename to apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/meetingRoomCard.module.css diff --git a/components/TempDesignSystem/MeetingRoomCard/utils.ts b/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts similarity index 100% rename from components/TempDesignSystem/MeetingRoomCard/utils.ts rename to apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts diff --git a/components/TempDesignSystem/Popover/Arrow/arrow.module.css b/apps/scandic-web/components/TempDesignSystem/Popover/Arrow/arrow.module.css similarity index 100% rename from components/TempDesignSystem/Popover/Arrow/arrow.module.css rename to apps/scandic-web/components/TempDesignSystem/Popover/Arrow/arrow.module.css diff --git a/components/TempDesignSystem/Popover/Arrow/index.tsx b/apps/scandic-web/components/TempDesignSystem/Popover/Arrow/index.tsx similarity index 100% rename from components/TempDesignSystem/Popover/Arrow/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Popover/Arrow/index.tsx diff --git a/components/TempDesignSystem/Popover/index.tsx b/apps/scandic-web/components/TempDesignSystem/Popover/index.tsx similarity index 100% rename from components/TempDesignSystem/Popover/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Popover/index.tsx diff --git a/components/TempDesignSystem/Popover/popover.module.css b/apps/scandic-web/components/TempDesignSystem/Popover/popover.module.css similarity index 100% rename from components/TempDesignSystem/Popover/popover.module.css rename to apps/scandic-web/components/TempDesignSystem/Popover/popover.module.css diff --git a/components/TempDesignSystem/Popover/popover.ts b/apps/scandic-web/components/TempDesignSystem/Popover/popover.ts similarity index 100% rename from components/TempDesignSystem/Popover/popover.ts rename to apps/scandic-web/components/TempDesignSystem/Popover/popover.ts diff --git a/components/TempDesignSystem/ProgressBar/index.tsx b/apps/scandic-web/components/TempDesignSystem/ProgressBar/index.tsx similarity index 100% rename from components/TempDesignSystem/ProgressBar/index.tsx rename to apps/scandic-web/components/TempDesignSystem/ProgressBar/index.tsx diff --git a/components/TempDesignSystem/ProgressBar/progressbar.module.css b/apps/scandic-web/components/TempDesignSystem/ProgressBar/progressbar.module.css similarity index 100% rename from components/TempDesignSystem/ProgressBar/progressbar.module.css rename to apps/scandic-web/components/TempDesignSystem/ProgressBar/progressbar.module.css diff --git a/components/TempDesignSystem/ProgressBar/progressbar.ts b/apps/scandic-web/components/TempDesignSystem/ProgressBar/progressbar.ts similarity index 100% rename from components/TempDesignSystem/ProgressBar/progressbar.ts rename to apps/scandic-web/components/TempDesignSystem/ProgressBar/progressbar.ts diff --git a/components/TempDesignSystem/ScrollWrapper/index.tsx b/apps/scandic-web/components/TempDesignSystem/ScrollWrapper/index.tsx similarity index 100% rename from components/TempDesignSystem/ScrollWrapper/index.tsx rename to apps/scandic-web/components/TempDesignSystem/ScrollWrapper/index.tsx diff --git a/components/TempDesignSystem/ScrollWrapper/scrollWrapper.module.css b/apps/scandic-web/components/TempDesignSystem/ScrollWrapper/scrollWrapper.module.css similarity index 100% rename from components/TempDesignSystem/ScrollWrapper/scrollWrapper.module.css rename to apps/scandic-web/components/TempDesignSystem/ScrollWrapper/scrollWrapper.module.css diff --git a/components/TempDesignSystem/ScrollWrapper/scrollWrapper.ts b/apps/scandic-web/components/TempDesignSystem/ScrollWrapper/scrollWrapper.ts similarity index 100% rename from components/TempDesignSystem/ScrollWrapper/scrollWrapper.ts rename to apps/scandic-web/components/TempDesignSystem/ScrollWrapper/scrollWrapper.ts diff --git a/components/TempDesignSystem/Select/index.tsx b/apps/scandic-web/components/TempDesignSystem/Select/index.tsx similarity index 100% rename from components/TempDesignSystem/Select/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Select/index.tsx diff --git a/components/TempDesignSystem/Select/select.module.css b/apps/scandic-web/components/TempDesignSystem/Select/select.module.css similarity index 100% rename from components/TempDesignSystem/Select/select.module.css rename to apps/scandic-web/components/TempDesignSystem/Select/select.module.css diff --git a/components/TempDesignSystem/Select/select.ts b/apps/scandic-web/components/TempDesignSystem/Select/select.ts similarity index 100% rename from components/TempDesignSystem/Select/select.ts rename to apps/scandic-web/components/TempDesignSystem/Select/select.ts diff --git a/components/TempDesignSystem/ShowMoreButton/index.tsx b/apps/scandic-web/components/TempDesignSystem/ShowMoreButton/index.tsx similarity index 100% rename from components/TempDesignSystem/ShowMoreButton/index.tsx rename to apps/scandic-web/components/TempDesignSystem/ShowMoreButton/index.tsx diff --git a/components/TempDesignSystem/ShowMoreButton/showMoreButton.module.css b/apps/scandic-web/components/TempDesignSystem/ShowMoreButton/showMoreButton.module.css similarity index 100% rename from components/TempDesignSystem/ShowMoreButton/showMoreButton.module.css rename to apps/scandic-web/components/TempDesignSystem/ShowMoreButton/showMoreButton.module.css diff --git a/components/TempDesignSystem/ShowMoreButton/showMoreButton.ts b/apps/scandic-web/components/TempDesignSystem/ShowMoreButton/showMoreButton.ts similarity index 100% rename from components/TempDesignSystem/ShowMoreButton/showMoreButton.ts rename to apps/scandic-web/components/TempDesignSystem/ShowMoreButton/showMoreButton.ts diff --git a/components/TempDesignSystem/ShowMoreButton/variants.ts b/apps/scandic-web/components/TempDesignSystem/ShowMoreButton/variants.ts similarity index 100% rename from components/TempDesignSystem/ShowMoreButton/variants.ts rename to apps/scandic-web/components/TempDesignSystem/ShowMoreButton/variants.ts diff --git a/components/TempDesignSystem/SidePeek/index.tsx b/apps/scandic-web/components/TempDesignSystem/SidePeek/index.tsx similarity index 100% rename from components/TempDesignSystem/SidePeek/index.tsx rename to apps/scandic-web/components/TempDesignSystem/SidePeek/index.tsx diff --git a/components/TempDesignSystem/SidePeek/sidePeek.module.css b/apps/scandic-web/components/TempDesignSystem/SidePeek/sidePeek.module.css similarity index 100% rename from components/TempDesignSystem/SidePeek/sidePeek.module.css rename to apps/scandic-web/components/TempDesignSystem/SidePeek/sidePeek.module.css diff --git a/components/TempDesignSystem/SidePeek/sidePeek.ts b/apps/scandic-web/components/TempDesignSystem/SidePeek/sidePeek.ts similarity index 100% rename from components/TempDesignSystem/SidePeek/sidePeek.ts rename to apps/scandic-web/components/TempDesignSystem/SidePeek/sidePeek.ts diff --git a/components/TempDesignSystem/SidePeek/types.ts b/apps/scandic-web/components/TempDesignSystem/SidePeek/types.ts similarity index 100% rename from components/TempDesignSystem/SidePeek/types.ts rename to apps/scandic-web/components/TempDesignSystem/SidePeek/types.ts diff --git a/components/TempDesignSystem/Table/TBody.tsx b/apps/scandic-web/components/TempDesignSystem/Table/TBody.tsx similarity index 100% rename from components/TempDesignSystem/Table/TBody.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/TBody.tsx diff --git a/components/TempDesignSystem/Table/TD.tsx b/apps/scandic-web/components/TempDesignSystem/Table/TD.tsx similarity index 100% rename from components/TempDesignSystem/Table/TD.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/TD.tsx diff --git a/components/TempDesignSystem/Table/TH.tsx b/apps/scandic-web/components/TempDesignSystem/Table/TH.tsx similarity index 100% rename from components/TempDesignSystem/Table/TH.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/TH.tsx diff --git a/components/TempDesignSystem/Table/THead.tsx b/apps/scandic-web/components/TempDesignSystem/Table/THead.tsx similarity index 100% rename from components/TempDesignSystem/Table/THead.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/THead.tsx diff --git a/components/TempDesignSystem/Table/TR.tsx b/apps/scandic-web/components/TempDesignSystem/Table/TR.tsx similarity index 100% rename from components/TempDesignSystem/Table/TR.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/TR.tsx diff --git a/components/TempDesignSystem/Table/index.tsx b/apps/scandic-web/components/TempDesignSystem/Table/index.tsx similarity index 100% rename from components/TempDesignSystem/Table/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Table/index.tsx diff --git a/components/TempDesignSystem/Table/table.module.css b/apps/scandic-web/components/TempDesignSystem/Table/table.module.css similarity index 100% rename from components/TempDesignSystem/Table/table.module.css rename to apps/scandic-web/components/TempDesignSystem/Table/table.module.css diff --git a/components/TempDesignSystem/Table/table.ts b/apps/scandic-web/components/TempDesignSystem/Table/table.ts similarity index 100% rename from components/TempDesignSystem/Table/table.ts rename to apps/scandic-web/components/TempDesignSystem/Table/table.ts diff --git a/components/TempDesignSystem/Table/variants.ts b/apps/scandic-web/components/TempDesignSystem/Table/variants.ts similarity index 100% rename from components/TempDesignSystem/Table/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Table/variants.ts diff --git a/components/TempDesignSystem/TeaserCard/Sidepeek/index.tsx b/apps/scandic-web/components/TempDesignSystem/TeaserCard/Sidepeek/index.tsx similarity index 100% rename from components/TempDesignSystem/TeaserCard/Sidepeek/index.tsx rename to apps/scandic-web/components/TempDesignSystem/TeaserCard/Sidepeek/index.tsx diff --git a/components/TempDesignSystem/TeaserCard/Sidepeek/sidepeek.module.css b/apps/scandic-web/components/TempDesignSystem/TeaserCard/Sidepeek/sidepeek.module.css similarity index 100% rename from components/TempDesignSystem/TeaserCard/Sidepeek/sidepeek.module.css rename to apps/scandic-web/components/TempDesignSystem/TeaserCard/Sidepeek/sidepeek.module.css diff --git a/components/TempDesignSystem/TeaserCard/index.tsx b/apps/scandic-web/components/TempDesignSystem/TeaserCard/index.tsx similarity index 100% rename from components/TempDesignSystem/TeaserCard/index.tsx rename to apps/scandic-web/components/TempDesignSystem/TeaserCard/index.tsx diff --git a/components/TempDesignSystem/TeaserCard/teaserCard.module.css b/apps/scandic-web/components/TempDesignSystem/TeaserCard/teaserCard.module.css similarity index 100% rename from components/TempDesignSystem/TeaserCard/teaserCard.module.css rename to apps/scandic-web/components/TempDesignSystem/TeaserCard/teaserCard.module.css diff --git a/components/TempDesignSystem/TeaserCard/variants.ts b/apps/scandic-web/components/TempDesignSystem/TeaserCard/variants.ts similarity index 100% rename from components/TempDesignSystem/TeaserCard/variants.ts rename to apps/scandic-web/components/TempDesignSystem/TeaserCard/variants.ts diff --git a/components/TempDesignSystem/Text/BiroScript/biroScript.module.css b/apps/scandic-web/components/TempDesignSystem/Text/BiroScript/biroScript.module.css similarity index 100% rename from components/TempDesignSystem/Text/BiroScript/biroScript.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/BiroScript/biroScript.module.css diff --git a/components/TempDesignSystem/Text/BiroScript/biroScript.ts b/apps/scandic-web/components/TempDesignSystem/Text/BiroScript/biroScript.ts similarity index 100% rename from components/TempDesignSystem/Text/BiroScript/biroScript.ts rename to apps/scandic-web/components/TempDesignSystem/Text/BiroScript/biroScript.ts diff --git a/components/TempDesignSystem/Text/BiroScript/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/BiroScript/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/BiroScript/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/BiroScript/index.tsx diff --git a/components/TempDesignSystem/Text/BiroScript/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/BiroScript/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/BiroScript/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/BiroScript/variants.ts diff --git a/components/TempDesignSystem/Text/Body/body.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Body/body.module.css similarity index 100% rename from components/TempDesignSystem/Text/Body/body.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Body/body.module.css diff --git a/components/TempDesignSystem/Text/Body/body.ts b/apps/scandic-web/components/TempDesignSystem/Text/Body/body.ts similarity index 100% rename from components/TempDesignSystem/Text/Body/body.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Body/body.ts diff --git a/components/TempDesignSystem/Text/Body/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Body/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Body/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Body/index.tsx diff --git a/components/TempDesignSystem/Text/Body/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Body/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Body/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Body/variants.ts diff --git a/components/TempDesignSystem/Text/Caption/caption.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Caption/caption.module.css similarity index 100% rename from components/TempDesignSystem/Text/Caption/caption.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Caption/caption.module.css diff --git a/components/TempDesignSystem/Text/Caption/caption.ts b/apps/scandic-web/components/TempDesignSystem/Text/Caption/caption.ts similarity index 100% rename from components/TempDesignSystem/Text/Caption/caption.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Caption/caption.ts diff --git a/components/TempDesignSystem/Text/Caption/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Caption/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Caption/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Caption/index.tsx diff --git a/components/TempDesignSystem/Text/Caption/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Caption/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Caption/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Caption/variants.ts diff --git a/components/TempDesignSystem/Text/Footnote/footnote.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Footnote/footnote.module.css similarity index 100% rename from components/TempDesignSystem/Text/Footnote/footnote.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Footnote/footnote.module.css diff --git a/components/TempDesignSystem/Text/Footnote/footnote.ts b/apps/scandic-web/components/TempDesignSystem/Text/Footnote/footnote.ts similarity index 100% rename from components/TempDesignSystem/Text/Footnote/footnote.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Footnote/footnote.ts diff --git a/components/TempDesignSystem/Text/Footnote/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Footnote/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Footnote/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Footnote/index.tsx diff --git a/components/TempDesignSystem/Text/Footnote/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Footnote/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Footnote/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Footnote/variants.ts diff --git a/components/TempDesignSystem/Text/Preamble/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Preamble/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Preamble/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Preamble/index.tsx diff --git a/components/TempDesignSystem/Text/Preamble/preamble.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Preamble/preamble.module.css similarity index 100% rename from components/TempDesignSystem/Text/Preamble/preamble.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Preamble/preamble.module.css diff --git a/components/TempDesignSystem/Text/Preamble/preamble.ts b/apps/scandic-web/components/TempDesignSystem/Text/Preamble/preamble.ts similarity index 100% rename from components/TempDesignSystem/Text/Preamble/preamble.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Preamble/preamble.ts diff --git a/components/TempDesignSystem/Text/Preamble/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Preamble/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Preamble/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Preamble/variants.ts diff --git a/components/TempDesignSystem/Text/Subtitle/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Subtitle/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Subtitle/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Subtitle/index.tsx diff --git a/components/TempDesignSystem/Text/Subtitle/subtitle.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Subtitle/subtitle.module.css similarity index 100% rename from components/TempDesignSystem/Text/Subtitle/subtitle.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Subtitle/subtitle.module.css diff --git a/components/TempDesignSystem/Text/Subtitle/subtitle.ts b/apps/scandic-web/components/TempDesignSystem/Text/Subtitle/subtitle.ts similarity index 100% rename from components/TempDesignSystem/Text/Subtitle/subtitle.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Subtitle/subtitle.ts diff --git a/components/TempDesignSystem/Text/Subtitle/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Subtitle/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Subtitle/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Subtitle/variants.ts diff --git a/components/TempDesignSystem/Text/Title/index.tsx b/apps/scandic-web/components/TempDesignSystem/Text/Title/index.tsx similarity index 100% rename from components/TempDesignSystem/Text/Title/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Text/Title/index.tsx diff --git a/components/TempDesignSystem/Text/Title/title.module.css b/apps/scandic-web/components/TempDesignSystem/Text/Title/title.module.css similarity index 100% rename from components/TempDesignSystem/Text/Title/title.module.css rename to apps/scandic-web/components/TempDesignSystem/Text/Title/title.module.css diff --git a/components/TempDesignSystem/Text/Title/title.ts b/apps/scandic-web/components/TempDesignSystem/Text/Title/title.ts similarity index 100% rename from components/TempDesignSystem/Text/Title/title.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Title/title.ts diff --git a/components/TempDesignSystem/Text/Title/variants.ts b/apps/scandic-web/components/TempDesignSystem/Text/Title/variants.ts similarity index 100% rename from components/TempDesignSystem/Text/Title/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Text/Title/variants.ts diff --git a/components/TempDesignSystem/Toasts/index.tsx b/apps/scandic-web/components/TempDesignSystem/Toasts/index.tsx similarity index 100% rename from components/TempDesignSystem/Toasts/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Toasts/index.tsx diff --git a/components/TempDesignSystem/Toasts/toasts.module.css b/apps/scandic-web/components/TempDesignSystem/Toasts/toasts.module.css similarity index 100% rename from components/TempDesignSystem/Toasts/toasts.module.css rename to apps/scandic-web/components/TempDesignSystem/Toasts/toasts.module.css diff --git a/components/TempDesignSystem/Toasts/toasts.ts b/apps/scandic-web/components/TempDesignSystem/Toasts/toasts.ts similarity index 100% rename from components/TempDesignSystem/Toasts/toasts.ts rename to apps/scandic-web/components/TempDesignSystem/Toasts/toasts.ts diff --git a/components/TempDesignSystem/Toasts/variants.ts b/apps/scandic-web/components/TempDesignSystem/Toasts/variants.ts similarity index 100% rename from components/TempDesignSystem/Toasts/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Toasts/variants.ts diff --git a/components/TempDesignSystem/Tooltip/index.tsx b/apps/scandic-web/components/TempDesignSystem/Tooltip/index.tsx similarity index 100% rename from components/TempDesignSystem/Tooltip/index.tsx rename to apps/scandic-web/components/TempDesignSystem/Tooltip/index.tsx diff --git a/components/TempDesignSystem/Tooltip/tooltip.module.css b/apps/scandic-web/components/TempDesignSystem/Tooltip/tooltip.module.css similarity index 100% rename from components/TempDesignSystem/Tooltip/tooltip.module.css rename to apps/scandic-web/components/TempDesignSystem/Tooltip/tooltip.module.css diff --git a/components/TempDesignSystem/Tooltip/variants.ts b/apps/scandic-web/components/TempDesignSystem/Tooltip/variants.ts similarity index 100% rename from components/TempDesignSystem/Tooltip/variants.ts rename to apps/scandic-web/components/TempDesignSystem/Tooltip/variants.ts diff --git a/components/TempDesignSystem/utils/checkForEmptyChildren.ts b/apps/scandic-web/components/TempDesignSystem/utils/checkForEmptyChildren.ts similarity index 100% rename from components/TempDesignSystem/utils/checkForEmptyChildren.ts rename to apps/scandic-web/components/TempDesignSystem/utils/checkForEmptyChildren.ts diff --git a/components/TrackingSDK/AdobeSDKScript.tsx b/apps/scandic-web/components/TrackingSDK/AdobeSDKScript.tsx similarity index 100% rename from components/TrackingSDK/AdobeSDKScript.tsx rename to apps/scandic-web/components/TrackingSDK/AdobeSDKScript.tsx diff --git a/components/TrackingSDK/GTMScript.tsx b/apps/scandic-web/components/TrackingSDK/GTMScript.tsx similarity index 100% rename from components/TrackingSDK/GTMScript.tsx rename to apps/scandic-web/components/TrackingSDK/GTMScript.tsx diff --git a/components/TrackingSDK/RouterTracking.tsx b/apps/scandic-web/components/TrackingSDK/RouterTracking.tsx similarity index 100% rename from components/TrackingSDK/RouterTracking.tsx rename to apps/scandic-web/components/TrackingSDK/RouterTracking.tsx diff --git a/components/TrackingSDK/RouterTransition.tsx b/apps/scandic-web/components/TrackingSDK/RouterTransition.tsx similarity index 100% rename from components/TrackingSDK/RouterTransition.tsx rename to apps/scandic-web/components/TrackingSDK/RouterTransition.tsx diff --git a/components/TrackingSDK/index.tsx b/apps/scandic-web/components/TrackingSDK/index.tsx similarity index 100% rename from components/TrackingSDK/index.tsx rename to apps/scandic-web/components/TrackingSDK/index.tsx diff --git a/components/Webviews/AccountPage/Blocks.tsx b/apps/scandic-web/components/Webviews/AccountPage/Blocks.tsx similarity index 100% rename from components/Webviews/AccountPage/Blocks.tsx rename to apps/scandic-web/components/Webviews/AccountPage/Blocks.tsx diff --git a/components/Webviews/AccountPage/accountPage.module.css b/apps/scandic-web/components/Webviews/AccountPage/accountPage.module.css similarity index 100% rename from components/Webviews/AccountPage/accountPage.module.css rename to apps/scandic-web/components/Webviews/AccountPage/accountPage.module.css diff --git a/components/Webviews/AccountPage/index.tsx b/apps/scandic-web/components/Webviews/AccountPage/index.tsx similarity index 100% rename from components/Webviews/AccountPage/index.tsx rename to apps/scandic-web/components/Webviews/AccountPage/index.tsx diff --git a/components/Webviews/LinkToOverview/index.tsx b/apps/scandic-web/components/Webviews/LinkToOverview/index.tsx similarity index 100% rename from components/Webviews/LinkToOverview/index.tsx rename to apps/scandic-web/components/Webviews/LinkToOverview/index.tsx diff --git a/components/Webviews/LinkToOverview/linkToOverview.module.css b/apps/scandic-web/components/Webviews/LinkToOverview/linkToOverview.module.css similarity index 100% rename from components/Webviews/LinkToOverview/linkToOverview.module.css rename to apps/scandic-web/components/Webviews/LinkToOverview/linkToOverview.module.css diff --git a/components/Webviews/LoyaltyPage/Blocks.tsx b/apps/scandic-web/components/Webviews/LoyaltyPage/Blocks.tsx similarity index 100% rename from components/Webviews/LoyaltyPage/Blocks.tsx rename to apps/scandic-web/components/Webviews/LoyaltyPage/Blocks.tsx diff --git a/components/Webviews/LoyaltyPage/index.tsx b/apps/scandic-web/components/Webviews/LoyaltyPage/index.tsx similarity index 100% rename from components/Webviews/LoyaltyPage/index.tsx rename to apps/scandic-web/components/Webviews/LoyaltyPage/index.tsx diff --git a/components/Webviews/LoyaltyPage/loyaltyPage.module.css b/apps/scandic-web/components/Webviews/LoyaltyPage/loyaltyPage.module.css similarity index 100% rename from components/Webviews/LoyaltyPage/loyaltyPage.module.css rename to apps/scandic-web/components/Webviews/LoyaltyPage/loyaltyPage.module.css diff --git a/constants/auth.ts b/apps/scandic-web/constants/auth.ts similarity index 100% rename from constants/auth.ts rename to apps/scandic-web/constants/auth.ts diff --git a/constants/booking.ts b/apps/scandic-web/constants/booking.ts similarity index 100% rename from constants/booking.ts rename to apps/scandic-web/constants/booking.ts diff --git a/constants/currentWebHrefs.ts b/apps/scandic-web/constants/currentWebHrefs.ts similarity index 100% rename from constants/currentWebHrefs.ts rename to apps/scandic-web/constants/currentWebHrefs.ts diff --git a/constants/homeHrefs.ts b/apps/scandic-web/constants/homeHrefs.ts similarity index 100% rename from constants/homeHrefs.ts rename to apps/scandic-web/constants/homeHrefs.ts diff --git a/constants/languages.ts b/apps/scandic-web/constants/languages.ts similarity index 100% rename from constants/languages.ts rename to apps/scandic-web/constants/languages.ts diff --git a/constants/membershipLevels.ts b/apps/scandic-web/constants/membershipLevels.ts similarity index 100% rename from constants/membershipLevels.ts rename to apps/scandic-web/constants/membershipLevels.ts diff --git a/constants/myBooking.ts b/apps/scandic-web/constants/myBooking.ts similarity index 100% rename from constants/myBooking.ts rename to apps/scandic-web/constants/myBooking.ts diff --git a/constants/poiCategories.ts b/apps/scandic-web/constants/poiCategories.ts similarity index 100% rename from constants/poiCategories.ts rename to apps/scandic-web/constants/poiCategories.ts diff --git a/constants/rewards.ts b/apps/scandic-web/constants/rewards.ts similarity index 100% rename from constants/rewards.ts rename to apps/scandic-web/constants/rewards.ts diff --git a/constants/routes/authRequired.ts b/apps/scandic-web/constants/routes/authRequired.ts similarity index 100% rename from constants/routes/authRequired.ts rename to apps/scandic-web/constants/routes/authRequired.ts diff --git a/constants/routes/baseUrls.ts b/apps/scandic-web/constants/routes/baseUrls.ts similarity index 100% rename from constants/routes/baseUrls.ts rename to apps/scandic-web/constants/routes/baseUrls.ts diff --git a/constants/routes/handleAuth.js b/apps/scandic-web/constants/routes/handleAuth.js similarity index 100% rename from constants/routes/handleAuth.js rename to apps/scandic-web/constants/routes/handleAuth.js diff --git a/constants/routes/hotelReservation.js b/apps/scandic-web/constants/routes/hotelReservation.js similarity index 100% rename from constants/routes/hotelReservation.js rename to apps/scandic-web/constants/routes/hotelReservation.js diff --git a/constants/routes/myPages.js b/apps/scandic-web/constants/routes/myPages.js similarity index 100% rename from constants/routes/myPages.js rename to apps/scandic-web/constants/routes/myPages.js diff --git a/constants/routes/signup.ts b/apps/scandic-web/constants/routes/signup.ts similarity index 100% rename from constants/routes/signup.ts rename to apps/scandic-web/constants/routes/signup.ts diff --git a/constants/routes/webviews.ts b/apps/scandic-web/constants/routes/webviews.ts similarity index 100% rename from constants/routes/webviews.ts rename to apps/scandic-web/constants/routes/webviews.ts diff --git a/contexts/Details.ts b/apps/scandic-web/contexts/Details.ts similarity index 100% rename from contexts/Details.ts rename to apps/scandic-web/contexts/Details.ts diff --git a/contexts/HotelData.ts b/apps/scandic-web/contexts/HotelData.ts similarity index 100% rename from contexts/HotelData.ts rename to apps/scandic-web/contexts/HotelData.ts diff --git a/contexts/Rates.ts b/apps/scandic-web/contexts/Rates.ts similarity index 100% rename from contexts/Rates.ts rename to apps/scandic-web/contexts/Rates.ts diff --git a/contexts/Room.ts b/apps/scandic-web/contexts/Room.ts similarity index 100% rename from contexts/Room.ts rename to apps/scandic-web/contexts/Room.ts diff --git a/cypress.config.ts b/apps/scandic-web/cypress.config.ts similarity index 100% rename from cypress.config.ts rename to apps/scandic-web/cypress.config.ts diff --git a/cypress/e2e/static-pages/about.cy.ts b/apps/scandic-web/cypress/e2e/static-pages/about.cy.ts similarity index 100% rename from cypress/e2e/static-pages/about.cy.ts rename to apps/scandic-web/cypress/e2e/static-pages/about.cy.ts diff --git a/cypress/e2e/static-pages/sponsoring.cy.ts b/apps/scandic-web/cypress/e2e/static-pages/sponsoring.cy.ts similarity index 100% rename from cypress/e2e/static-pages/sponsoring.cy.ts rename to apps/scandic-web/cypress/e2e/static-pages/sponsoring.cy.ts diff --git a/cypress/e2e/static-pages/wifi.cy.ts b/apps/scandic-web/cypress/e2e/static-pages/wifi.cy.ts similarity index 100% rename from cypress/e2e/static-pages/wifi.cy.ts rename to apps/scandic-web/cypress/e2e/static-pages/wifi.cy.ts diff --git a/cypress/fixtures/example.json b/apps/scandic-web/cypress/fixtures/example.json similarity index 100% rename from cypress/fixtures/example.json rename to apps/scandic-web/cypress/fixtures/example.json diff --git a/cypress/support/commands.ts b/apps/scandic-web/cypress/support/commands.ts similarity index 100% rename from cypress/support/commands.ts rename to apps/scandic-web/cypress/support/commands.ts diff --git a/cypress/support/component-index.html b/apps/scandic-web/cypress/support/component-index.html similarity index 100% rename from cypress/support/component-index.html rename to apps/scandic-web/cypress/support/component-index.html diff --git a/cypress/support/component.ts b/apps/scandic-web/cypress/support/component.ts similarity index 100% rename from cypress/support/component.ts rename to apps/scandic-web/cypress/support/component.ts diff --git a/cypress/support/e2e.ts b/apps/scandic-web/cypress/support/e2e.ts similarity index 100% rename from cypress/support/e2e.ts rename to apps/scandic-web/cypress/support/e2e.ts diff --git a/env/client.ts b/apps/scandic-web/env/client.ts similarity index 100% rename from env/client.ts rename to apps/scandic-web/env/client.ts diff --git a/env/server.ts b/apps/scandic-web/env/server.ts similarity index 98% rename from env/server.ts rename to apps/scandic-web/env/server.ts index 83bd2fef7..a7baf30c8 100644 --- a/env/server.ts +++ b/apps/scandic-web/env/server.ts @@ -37,7 +37,6 @@ export const env = createEnv({ CURITY_ISSUER_USER: z.string(), CURITY_ISSUER_SERVICE: z.string(), CYPRESS_BASE_URL: z.string().default("http://127.0.0.1:3000"), - DESIGN_SYSTEM_ACCESS_TOKEN: z.string(), ENVTEST: z.string().optional(), // https://env.t3.gg/docs/recipes#booleans NEXTAUTH_DEBUG: z @@ -210,7 +209,6 @@ export const env = createEnv({ CURITY_ISSUER_USER: process.env.CURITY_ISSUER_USER, CURITY_ISSUER_SERVICE: process.env.CURITY_ISSUER_SERVICE, CYPRESS_BASE_URL: process.env.CYPRESS_TEST_URL, - DESIGN_SYSTEM_ACCESS_TOKEN: process.env.DESIGN_SYSTEM_ACCESS_TOKEN, ENVTEST: process.env.ENVTEST, NEXTAUTH_DEBUG: process.env.NEXTAUTH_DEBUG, NEXTAUTH_REDIRECT_PROXY_URL: process.env.NEXTAUTH_REDIRECT_PROXY_URL, diff --git a/hooks/booking/useAvailablePaymentOptions.ts b/apps/scandic-web/hooks/booking/useAvailablePaymentOptions.ts similarity index 100% rename from hooks/booking/useAvailablePaymentOptions.ts rename to apps/scandic-web/hooks/booking/useAvailablePaymentOptions.ts diff --git a/hooks/booking/useHandleBookingStatus.ts b/apps/scandic-web/hooks/booking/useHandleBookingStatus.ts similarity index 100% rename from hooks/booking/useHandleBookingStatus.ts rename to apps/scandic-web/hooks/booking/useHandleBookingStatus.ts diff --git a/hooks/booking/usePaymentFailedToast.ts b/apps/scandic-web/hooks/booking/usePaymentFailedToast.ts similarity index 100% rename from hooks/booking/usePaymentFailedToast.ts rename to apps/scandic-web/hooks/booking/usePaymentFailedToast.ts diff --git a/hooks/booking/useScrollToActiveSection.ts b/apps/scandic-web/hooks/booking/useScrollToActiveSection.ts similarity index 100% rename from hooks/booking/useScrollToActiveSection.ts rename to apps/scandic-web/hooks/booking/useScrollToActiveSection.ts diff --git a/hooks/maps/use-map-viewport.ts b/apps/scandic-web/hooks/maps/use-map-viewport.ts similarity index 100% rename from hooks/maps/use-map-viewport.ts rename to apps/scandic-web/hooks/maps/use-map-viewport.ts diff --git a/hooks/maps/use-supercluster.ts b/apps/scandic-web/hooks/maps/use-supercluster.ts similarity index 100% rename from hooks/maps/use-supercluster.ts rename to apps/scandic-web/hooks/maps/use-supercluster.ts diff --git a/hooks/useCheckIfExternalLink.ts b/apps/scandic-web/hooks/useCheckIfExternalLink.ts similarity index 100% rename from hooks/useCheckIfExternalLink.ts rename to apps/scandic-web/hooks/useCheckIfExternalLink.ts diff --git a/hooks/useClickOutside.ts b/apps/scandic-web/hooks/useClickOutside.ts similarity index 100% rename from hooks/useClickOutside.ts rename to apps/scandic-web/hooks/useClickOutside.ts diff --git a/hooks/useHandleKeyPress.ts b/apps/scandic-web/hooks/useHandleKeyPress.ts similarity index 100% rename from hooks/useHandleKeyPress.ts rename to apps/scandic-web/hooks/useHandleKeyPress.ts diff --git a/hooks/useHandleKeyUp.ts b/apps/scandic-web/hooks/useHandleKeyUp.ts similarity index 100% rename from hooks/useHandleKeyUp.ts rename to apps/scandic-web/hooks/useHandleKeyUp.ts diff --git a/hooks/useHash.tsx b/apps/scandic-web/hooks/useHash.tsx similarity index 100% rename from hooks/useHash.tsx rename to apps/scandic-web/hooks/useHash.tsx diff --git a/hooks/useInitializeFiltersFromUrl.ts b/apps/scandic-web/hooks/useInitializeFiltersFromUrl.ts similarity index 100% rename from hooks/useInitializeFiltersFromUrl.ts rename to apps/scandic-web/hooks/useInitializeFiltersFromUrl.ts diff --git a/hooks/useLang.ts b/apps/scandic-web/hooks/useLang.ts similarity index 100% rename from hooks/useLang.ts rename to apps/scandic-web/hooks/useLang.ts diff --git a/hooks/useLazyPathname.ts b/apps/scandic-web/hooks/useLazyPathname.ts similarity index 100% rename from hooks/useLazyPathname.ts rename to apps/scandic-web/hooks/useLazyPathname.ts diff --git a/hooks/useScrollShadows.ts b/apps/scandic-web/hooks/useScrollShadows.ts similarity index 100% rename from hooks/useScrollShadows.ts rename to apps/scandic-web/hooks/useScrollShadows.ts diff --git a/hooks/useScrollSpy.ts b/apps/scandic-web/hooks/useScrollSpy.ts similarity index 100% rename from hooks/useScrollSpy.ts rename to apps/scandic-web/hooks/useScrollSpy.ts diff --git a/hooks/useScrollToTop.ts b/apps/scandic-web/hooks/useScrollToTop.ts similarity index 100% rename from hooks/useScrollToTop.ts rename to apps/scandic-web/hooks/useScrollToTop.ts diff --git a/hooks/useSessionId.ts b/apps/scandic-web/hooks/useSessionId.ts similarity index 100% rename from hooks/useSessionId.ts rename to apps/scandic-web/hooks/useSessionId.ts diff --git a/hooks/useSetOverflowVisibleOnRA.ts b/apps/scandic-web/hooks/useSetOverflowVisibleOnRA.ts similarity index 100% rename from hooks/useSetOverflowVisibleOnRA.ts rename to apps/scandic-web/hooks/useSetOverflowVisibleOnRA.ts diff --git a/hooks/useStickyPosition.ts b/apps/scandic-web/hooks/useStickyPosition.ts similarity index 100% rename from hooks/useStickyPosition.ts rename to apps/scandic-web/hooks/useStickyPosition.ts diff --git a/hooks/useTrapFocus.ts b/apps/scandic-web/hooks/useTrapFocus.ts similarity index 100% rename from hooks/useTrapFocus.ts rename to apps/scandic-web/hooks/useTrapFocus.ts diff --git a/i18n/Provider.tsx b/apps/scandic-web/i18n/Provider.tsx similarity index 100% rename from i18n/Provider.tsx rename to apps/scandic-web/i18n/Provider.tsx diff --git a/i18n/dictionaries/da.json b/apps/scandic-web/i18n/dictionaries/da.json similarity index 100% rename from i18n/dictionaries/da.json rename to apps/scandic-web/i18n/dictionaries/da.json diff --git a/i18n/dictionaries/de.json b/apps/scandic-web/i18n/dictionaries/de.json similarity index 100% rename from i18n/dictionaries/de.json rename to apps/scandic-web/i18n/dictionaries/de.json diff --git a/i18n/dictionaries/en.json b/apps/scandic-web/i18n/dictionaries/en.json similarity index 100% rename from i18n/dictionaries/en.json rename to apps/scandic-web/i18n/dictionaries/en.json diff --git a/i18n/dictionaries/fi.json b/apps/scandic-web/i18n/dictionaries/fi.json similarity index 100% rename from i18n/dictionaries/fi.json rename to apps/scandic-web/i18n/dictionaries/fi.json diff --git a/i18n/dictionaries/no.json b/apps/scandic-web/i18n/dictionaries/no.json similarity index 100% rename from i18n/dictionaries/no.json rename to apps/scandic-web/i18n/dictionaries/no.json diff --git a/i18n/dictionaries/sv.json b/apps/scandic-web/i18n/dictionaries/sv.json similarity index 100% rename from i18n/dictionaries/sv.json rename to apps/scandic-web/i18n/dictionaries/sv.json diff --git a/i18n/i18n.md b/apps/scandic-web/i18n/i18n.md similarity index 100% rename from i18n/i18n.md rename to apps/scandic-web/i18n/i18n.md diff --git a/i18n/index.ts b/apps/scandic-web/i18n/index.ts similarity index 100% rename from i18n/index.ts rename to apps/scandic-web/i18n/index.ts diff --git a/i18n/serverContext.ts b/apps/scandic-web/i18n/serverContext.ts similarity index 100% rename from i18n/serverContext.ts rename to apps/scandic-web/i18n/serverContext.ts diff --git a/instrumentation.ts b/apps/scandic-web/instrumentation.ts similarity index 100% rename from instrumentation.ts rename to apps/scandic-web/instrumentation.ts diff --git a/jest.config.ts b/apps/scandic-web/jest.config.ts similarity index 100% rename from jest.config.ts rename to apps/scandic-web/jest.config.ts diff --git a/jest.setup.ts b/apps/scandic-web/jest.setup.ts similarity index 100% rename from jest.setup.ts rename to apps/scandic-web/jest.setup.ts diff --git a/lib/api/endpoints.ts b/apps/scandic-web/lib/api/endpoints.ts similarity index 100% rename from lib/api/endpoints.ts rename to apps/scandic-web/lib/api/endpoints.ts diff --git a/lib/api/index.ts b/apps/scandic-web/lib/api/index.ts similarity index 100% rename from lib/api/index.ts rename to apps/scandic-web/lib/api/index.ts diff --git a/lib/discriminatedUnion.ts b/apps/scandic-web/lib/discriminatedUnion.ts similarity index 100% rename from lib/discriminatedUnion.ts rename to apps/scandic-web/lib/discriminatedUnion.ts diff --git a/lib/dt.ts b/apps/scandic-web/lib/dt.ts similarity index 100% rename from lib/dt.ts rename to apps/scandic-web/lib/dt.ts diff --git a/lib/graphql/Fragments/AccountPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/AccountPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/AccountPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/AccountPage/Ref.graphql diff --git a/lib/graphql/Fragments/Alert.graphql b/apps/scandic-web/lib/graphql/Fragments/Alert.graphql similarity index 100% rename from lib/graphql/Fragments/Alert.graphql rename to apps/scandic-web/lib/graphql/Fragments/Alert.graphql diff --git a/lib/graphql/Fragments/Aside/Contact.graphql b/apps/scandic-web/lib/graphql/Fragments/Aside/Contact.graphql similarity index 100% rename from lib/graphql/Fragments/Aside/Contact.graphql rename to apps/scandic-web/lib/graphql/Fragments/Aside/Contact.graphql diff --git a/lib/graphql/Fragments/Aside/Puff.graphql b/apps/scandic-web/lib/graphql/Fragments/Aside/Puff.graphql similarity index 100% rename from lib/graphql/Fragments/Aside/Puff.graphql rename to apps/scandic-web/lib/graphql/Fragments/Aside/Puff.graphql diff --git a/lib/graphql/Fragments/Blocks/Accordion.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Accordion.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Accordion.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Accordion.graphql diff --git a/lib/graphql/Fragments/Blocks/Card.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Card.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Card.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Card.graphql diff --git a/lib/graphql/Fragments/Blocks/CardGallery.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/CardGallery.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/CardGallery.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/CardGallery.graphql diff --git a/lib/graphql/Fragments/Blocks/CardsGrid.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/CardsGrid.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/CardsGrid.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/CardsGrid.graphql diff --git a/lib/graphql/Fragments/Blocks/CarouselCards.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/CarouselCards.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/CarouselCards.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/CarouselCards.graphql diff --git a/lib/graphql/Fragments/Blocks/Content.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Content.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Content.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Content.graphql diff --git a/lib/graphql/Fragments/Blocks/ContentCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/ContentCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/ContentCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/ContentCard.graphql diff --git a/lib/graphql/Fragments/Blocks/DynamicContent.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/DynamicContent.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/DynamicContent.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/DynamicContent.graphql diff --git a/lib/graphql/Fragments/Blocks/FullWidthCampaign.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/FullWidthCampaign.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/FullWidthCampaign.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/FullWidthCampaign.graphql diff --git a/lib/graphql/Fragments/Blocks/HotelListing.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/HotelListing.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/HotelListing.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/HotelListing.graphql diff --git a/lib/graphql/Fragments/Blocks/InfoCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/InfoCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/InfoCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/InfoCard.graphql diff --git a/lib/graphql/Fragments/Blocks/JoinScandicFriends.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/JoinScandicFriends.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/JoinScandicFriends.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/JoinScandicFriends.graphql diff --git a/lib/graphql/Fragments/Blocks/List.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/List.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/List.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/List.graphql diff --git a/lib/graphql/Fragments/Blocks/LoyaltyCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/LoyaltyCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/LoyaltyCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/LoyaltyCard.graphql diff --git a/lib/graphql/Fragments/Blocks/Puff.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Puff.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Puff.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Puff.graphql diff --git a/lib/graphql/Fragments/Blocks/Refs/Accordion.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/Accordion.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Refs/Accordion.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/Accordion.graphql diff --git a/lib/graphql/Fragments/Blocks/Refs/Card.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/Card.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Refs/Card.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/Card.graphql diff --git a/lib/graphql/Fragments/Blocks/Refs/InfoCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/InfoCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Refs/InfoCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/InfoCard.graphql diff --git a/lib/graphql/Fragments/Blocks/Refs/LoyaltyCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/LoyaltyCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Refs/LoyaltyCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/LoyaltyCard.graphql diff --git a/lib/graphql/Fragments/Blocks/Refs/TeaserCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/TeaserCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Refs/TeaserCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Refs/TeaserCard.graphql diff --git a/lib/graphql/Fragments/Blocks/Shortcuts.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Shortcuts.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Shortcuts.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Shortcuts.graphql diff --git a/lib/graphql/Fragments/Blocks/Table.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Table.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Table.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Table.graphql diff --git a/lib/graphql/Fragments/Blocks/TeaserCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/TeaserCard.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/TeaserCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/TeaserCard.graphql diff --git a/lib/graphql/Fragments/Blocks/Text.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/Text.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/Text.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/Text.graphql diff --git a/lib/graphql/Fragments/Blocks/TextCols.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/TextCols.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/TextCols.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/TextCols.graphql diff --git a/lib/graphql/Fragments/Blocks/TextContent.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/TextContent.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/TextContent.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/TextContent.graphql diff --git a/lib/graphql/Fragments/Blocks/UspGrid.graphql b/apps/scandic-web/lib/graphql/Fragments/Blocks/UspGrid.graphql similarity index 100% rename from lib/graphql/Fragments/Blocks/UspGrid.graphql rename to apps/scandic-web/lib/graphql/Fragments/Blocks/UspGrid.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/AccountPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/AccountPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/AccountPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/AccountPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/Breadcrumbs.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/Breadcrumbs.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/Breadcrumbs.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/Breadcrumbs.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/CollectionPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/CollectionPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/CollectionPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/CollectionPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/ContentPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/ContentPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/ContentPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/ContentPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/CurrentBlocksPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/CurrentBlocksPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/CurrentBlocksPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/CurrentBlocksPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/DestinationCityPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationCityPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/DestinationCityPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationCityPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/DestinationCountryPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationCountryPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/DestinationCountryPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationCountryPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/DestinationOverviewPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationOverviewPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/DestinationOverviewPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/DestinationOverviewPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/HotelPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/HotelPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/HotelPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/HotelPage.graphql diff --git a/lib/graphql/Fragments/Breadcrumbs/LoyaltyPage.graphql b/apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/LoyaltyPage.graphql similarity index 100% rename from lib/graphql/Fragments/Breadcrumbs/LoyaltyPage.graphql rename to apps/scandic-web/lib/graphql/Fragments/Breadcrumbs/LoyaltyPage.graphql diff --git a/lib/graphql/Fragments/CollectionPage/NavigationLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/CollectionPage/NavigationLinks.graphql similarity index 100% rename from lib/graphql/Fragments/CollectionPage/NavigationLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/CollectionPage/NavigationLinks.graphql diff --git a/lib/graphql/Fragments/CollectionPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/CollectionPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/CollectionPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/CollectionPage/Ref.graphql diff --git a/lib/graphql/Fragments/CollectionPage/TopPrimaryButton.graphql b/apps/scandic-web/lib/graphql/Fragments/CollectionPage/TopPrimaryButton.graphql similarity index 100% rename from lib/graphql/Fragments/CollectionPage/TopPrimaryButton.graphql rename to apps/scandic-web/lib/graphql/Fragments/CollectionPage/TopPrimaryButton.graphql diff --git a/lib/graphql/Fragments/Contact.graphql b/apps/scandic-web/lib/graphql/Fragments/Contact.graphql similarity index 100% rename from lib/graphql/Fragments/Contact.graphql rename to apps/scandic-web/lib/graphql/Fragments/Contact.graphql diff --git a/lib/graphql/Fragments/ContentPage/NavigationLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/ContentPage/NavigationLinks.graphql similarity index 100% rename from lib/graphql/Fragments/ContentPage/NavigationLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/ContentPage/NavigationLinks.graphql diff --git a/lib/graphql/Fragments/ContentPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/ContentPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/ContentPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/ContentPage/Ref.graphql diff --git a/lib/graphql/Fragments/ContentPage/TopPrimaryButton.graphql b/apps/scandic-web/lib/graphql/Fragments/ContentPage/TopPrimaryButton.graphql similarity index 100% rename from lib/graphql/Fragments/ContentPage/TopPrimaryButton.graphql rename to apps/scandic-web/lib/graphql/Fragments/ContentPage/TopPrimaryButton.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/AppDownloads.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/AppDownloads.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/AppDownloads.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/AppDownloads.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/Logo.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Logo.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/Logo.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Logo.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/MainLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/MainLinks.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/MainLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/MainLinks.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/Navigation.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Navigation.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/Navigation.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Navigation.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/Refs/MainLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Refs/MainLinks.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/Refs/MainLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Refs/MainLinks.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/Refs/SecondaryLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Refs/SecondaryLinks.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/Refs/SecondaryLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/Refs/SecondaryLinks.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/SecondaryLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/SecondaryLinks.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/SecondaryLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/SecondaryLinks.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/SocialMedia.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/SocialMedia.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/SocialMedia.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/SocialMedia.graphql diff --git a/lib/graphql/Fragments/CurrentFooter/TripAdvisor.graphql b/apps/scandic-web/lib/graphql/Fragments/CurrentFooter/TripAdvisor.graphql similarity index 100% rename from lib/graphql/Fragments/CurrentFooter/TripAdvisor.graphql rename to apps/scandic-web/lib/graphql/Fragments/CurrentFooter/TripAdvisor.graphql diff --git a/lib/graphql/Fragments/DestinationCityPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/DestinationCityPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/DestinationCityPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/DestinationCityPage/Ref.graphql diff --git a/lib/graphql/Fragments/DestinationCountryPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/DestinationCountryPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/DestinationCountryPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/DestinationCountryPage/Ref.graphql diff --git a/lib/graphql/Fragments/DestinationOverviewPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/DestinationOverviewPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/DestinationOverviewPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/DestinationOverviewPage/Ref.graphql diff --git a/lib/graphql/Fragments/Footer/AppDownloads.graphql b/apps/scandic-web/lib/graphql/Fragments/Footer/AppDownloads.graphql similarity index 100% rename from lib/graphql/Fragments/Footer/AppDownloads.graphql rename to apps/scandic-web/lib/graphql/Fragments/Footer/AppDownloads.graphql diff --git a/lib/graphql/Fragments/Footer/Refs/TertiaryLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/Footer/Refs/TertiaryLinks.graphql similarity index 100% rename from lib/graphql/Fragments/Footer/Refs/TertiaryLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/Footer/Refs/TertiaryLinks.graphql diff --git a/lib/graphql/Fragments/Footer/SocialMedia.graphql b/apps/scandic-web/lib/graphql/Fragments/Footer/SocialMedia.graphql similarity index 100% rename from lib/graphql/Fragments/Footer/SocialMedia.graphql rename to apps/scandic-web/lib/graphql/Fragments/Footer/SocialMedia.graphql diff --git a/lib/graphql/Fragments/Grid.graphql b/apps/scandic-web/lib/graphql/Fragments/Grid.graphql similarity index 100% rename from lib/graphql/Fragments/Grid.graphql rename to apps/scandic-web/lib/graphql/Fragments/Grid.graphql diff --git a/lib/graphql/Fragments/Hero.graphql b/apps/scandic-web/lib/graphql/Fragments/Hero.graphql similarity index 100% rename from lib/graphql/Fragments/Hero.graphql rename to apps/scandic-web/lib/graphql/Fragments/Hero.graphql diff --git a/lib/graphql/Fragments/HotelPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/HotelPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/HotelPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/HotelPage/Ref.graphql diff --git a/lib/graphql/Fragments/Image.graphql b/apps/scandic-web/lib/graphql/Fragments/Image.graphql similarity index 100% rename from lib/graphql/Fragments/Image.graphql rename to apps/scandic-web/lib/graphql/Fragments/Image.graphql diff --git a/lib/graphql/Fragments/ImageContainer.graphql b/apps/scandic-web/lib/graphql/Fragments/ImageContainer.graphql similarity index 100% rename from lib/graphql/Fragments/ImageContainer.graphql rename to apps/scandic-web/lib/graphql/Fragments/ImageContainer.graphql diff --git a/lib/graphql/Fragments/LoyaltyPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/LoyaltyPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/LoyaltyPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/LoyaltyPage/Ref.graphql diff --git a/lib/graphql/Fragments/Metadata.graphql b/apps/scandic-web/lib/graphql/Fragments/Metadata.graphql similarity index 100% rename from lib/graphql/Fragments/Metadata.graphql rename to apps/scandic-web/lib/graphql/Fragments/Metadata.graphql diff --git a/lib/graphql/Fragments/PageLink/AccountPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/AccountPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/AccountPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/AccountPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/CollectionPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/CollectionPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/CollectionPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/CollectionPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/ContentPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/ContentPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/ContentPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/ContentPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/CurrentBlocksPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/CurrentBlocksPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/CurrentBlocksPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/CurrentBlocksPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/CurrentContentPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/CurrentContentPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/CurrentContentPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/CurrentContentPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/DestinationCityPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationCityPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/DestinationCityPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationCityPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/DestinationCountryPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationCountryPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/DestinationCountryPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationCountryPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/DestinationOverviewPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationOverviewPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/DestinationOverviewPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/DestinationOverviewPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/HotelPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/HotelPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/HotelPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/HotelPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/LoyaltyPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/LoyaltyPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/LoyaltyPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/LoyaltyPageLink.graphql diff --git a/lib/graphql/Fragments/PageLink/StartPageLink.graphql b/apps/scandic-web/lib/graphql/Fragments/PageLink/StartPageLink.graphql similarity index 100% rename from lib/graphql/Fragments/PageLink/StartPageLink.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageLink/StartPageLink.graphql diff --git a/lib/graphql/Fragments/PageSettings.graphql b/apps/scandic-web/lib/graphql/Fragments/PageSettings.graphql similarity index 100% rename from lib/graphql/Fragments/PageSettings.graphql rename to apps/scandic-web/lib/graphql/Fragments/PageSettings.graphql diff --git a/lib/graphql/Fragments/Preamble.graphql b/apps/scandic-web/lib/graphql/Fragments/Preamble.graphql similarity index 100% rename from lib/graphql/Fragments/Preamble.graphql rename to apps/scandic-web/lib/graphql/Fragments/Preamble.graphql diff --git a/lib/graphql/Fragments/Puff.graphql b/apps/scandic-web/lib/graphql/Fragments/Puff.graphql similarity index 100% rename from lib/graphql/Fragments/Puff.graphql rename to apps/scandic-web/lib/graphql/Fragments/Puff.graphql diff --git a/lib/graphql/Fragments/Sidebar/Content.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/Content.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/Content.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/Content.graphql diff --git a/lib/graphql/Fragments/Sidebar/DynamicContent.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/DynamicContent.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/DynamicContent.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/DynamicContent.graphql diff --git a/lib/graphql/Fragments/Sidebar/JoinLoyaltyContact.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/JoinLoyaltyContact.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/JoinLoyaltyContact.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/JoinLoyaltyContact.graphql diff --git a/lib/graphql/Fragments/Sidebar/QuickLinks.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/QuickLinks.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/QuickLinks.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/QuickLinks.graphql diff --git a/lib/graphql/Fragments/Sidebar/ScriptedCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/ScriptedCard.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/ScriptedCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/ScriptedCard.graphql diff --git a/lib/graphql/Fragments/Sidebar/TeaserCard.graphql b/apps/scandic-web/lib/graphql/Fragments/Sidebar/TeaserCard.graphql similarity index 100% rename from lib/graphql/Fragments/Sidebar/TeaserCard.graphql rename to apps/scandic-web/lib/graphql/Fragments/Sidebar/TeaserCard.graphql diff --git a/lib/graphql/Fragments/StartPage/Ref.graphql b/apps/scandic-web/lib/graphql/Fragments/StartPage/Ref.graphql similarity index 100% rename from lib/graphql/Fragments/StartPage/Ref.graphql rename to apps/scandic-web/lib/graphql/Fragments/StartPage/Ref.graphql diff --git a/lib/graphql/Fragments/System.graphql b/apps/scandic-web/lib/graphql/Fragments/System.graphql similarity index 100% rename from lib/graphql/Fragments/System.graphql rename to apps/scandic-web/lib/graphql/Fragments/System.graphql diff --git a/lib/graphql/Query/AccountPage/AccountPage.graphql b/apps/scandic-web/lib/graphql/Query/AccountPage/AccountPage.graphql similarity index 100% rename from lib/graphql/Query/AccountPage/AccountPage.graphql rename to apps/scandic-web/lib/graphql/Query/AccountPage/AccountPage.graphql diff --git a/lib/graphql/Query/AccountPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/AccountPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/AccountPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/AccountPage/Metadata.graphql diff --git a/lib/graphql/Query/AccountPage/Navigation.graphql b/apps/scandic-web/lib/graphql/Query/AccountPage/Navigation.graphql similarity index 100% rename from lib/graphql/Query/AccountPage/Navigation.graphql rename to apps/scandic-web/lib/graphql/Query/AccountPage/Navigation.graphql diff --git a/lib/graphql/Query/Breadcrumbs/AccountPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/AccountPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/AccountPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/AccountPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/CollectionPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/CollectionPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/CollectionPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/CollectionPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/ContentPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/ContentPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/ContentPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/ContentPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/DestinationCityPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationCityPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/DestinationCityPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationCityPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/DestinationCountryPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationCountryPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/DestinationCountryPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationCountryPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/DestinationOverviewPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationOverviewPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/DestinationOverviewPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/DestinationOverviewPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/HotelPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/HotelPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/HotelPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/HotelPage.graphql diff --git a/lib/graphql/Query/Breadcrumbs/LoyaltyPage.graphql b/apps/scandic-web/lib/graphql/Query/Breadcrumbs/LoyaltyPage.graphql similarity index 100% rename from lib/graphql/Query/Breadcrumbs/LoyaltyPage.graphql rename to apps/scandic-web/lib/graphql/Query/Breadcrumbs/LoyaltyPage.graphql diff --git a/lib/graphql/Query/CollectionPage/CollectionPage.graphql b/apps/scandic-web/lib/graphql/Query/CollectionPage/CollectionPage.graphql similarity index 100% rename from lib/graphql/Query/CollectionPage/CollectionPage.graphql rename to apps/scandic-web/lib/graphql/Query/CollectionPage/CollectionPage.graphql diff --git a/lib/graphql/Query/CollectionPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/CollectionPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/CollectionPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/CollectionPage/Metadata.graphql diff --git a/lib/graphql/Query/ContactConfig.graphql b/apps/scandic-web/lib/graphql/Query/ContactConfig.graphql similarity index 100% rename from lib/graphql/Query/ContactConfig.graphql rename to apps/scandic-web/lib/graphql/Query/ContactConfig.graphql diff --git a/lib/graphql/Query/ContentPage/ContentPage.graphql b/apps/scandic-web/lib/graphql/Query/ContentPage/ContentPage.graphql similarity index 100% rename from lib/graphql/Query/ContentPage/ContentPage.graphql rename to apps/scandic-web/lib/graphql/Query/ContentPage/ContentPage.graphql diff --git a/lib/graphql/Query/ContentPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/ContentPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/ContentPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/ContentPage/Metadata.graphql diff --git a/lib/graphql/Query/Current/CurrentBlockPage.graphql b/apps/scandic-web/lib/graphql/Query/Current/CurrentBlockPage.graphql similarity index 100% rename from lib/graphql/Query/Current/CurrentBlockPage.graphql rename to apps/scandic-web/lib/graphql/Query/Current/CurrentBlockPage.graphql diff --git a/lib/graphql/Query/Current/CurrentBlockPageTrackingData.graphql b/apps/scandic-web/lib/graphql/Query/Current/CurrentBlockPageTrackingData.graphql similarity index 100% rename from lib/graphql/Query/Current/CurrentBlockPageTrackingData.graphql rename to apps/scandic-web/lib/graphql/Query/Current/CurrentBlockPageTrackingData.graphql diff --git a/lib/graphql/Query/Current/Footer.graphql b/apps/scandic-web/lib/graphql/Query/Current/Footer.graphql similarity index 100% rename from lib/graphql/Query/Current/Footer.graphql rename to apps/scandic-web/lib/graphql/Query/Current/Footer.graphql diff --git a/lib/graphql/Query/Current/Header.graphql b/apps/scandic-web/lib/graphql/Query/Current/Header.graphql similarity index 100% rename from lib/graphql/Query/Current/Header.graphql rename to apps/scandic-web/lib/graphql/Query/Current/Header.graphql diff --git a/lib/graphql/Query/Current/LanguageSwitcher.graphql b/apps/scandic-web/lib/graphql/Query/Current/LanguageSwitcher.graphql similarity index 100% rename from lib/graphql/Query/Current/LanguageSwitcher.graphql rename to apps/scandic-web/lib/graphql/Query/Current/LanguageSwitcher.graphql diff --git a/lib/graphql/Query/DestinationCityPage/DestinationCityListData.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityListData.graphql similarity index 100% rename from lib/graphql/Query/DestinationCityPage/DestinationCityListData.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityListData.graphql diff --git a/lib/graphql/Query/DestinationCityPage/DestinationCityPage.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityPage.graphql similarity index 100% rename from lib/graphql/Query/DestinationCityPage/DestinationCityPage.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityPage.graphql diff --git a/lib/graphql/Query/DestinationCityPage/DestinationCityPageUrl.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityPageUrl.graphql similarity index 100% rename from lib/graphql/Query/DestinationCityPage/DestinationCityPageUrl.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCityPage/DestinationCityPageUrl.graphql diff --git a/lib/graphql/Query/DestinationCityPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCityPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/DestinationCityPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCityPage/Metadata.graphql diff --git a/lib/graphql/Query/DestinationCountryPage/DestinationCountryPage.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCountryPage/DestinationCountryPage.graphql similarity index 100% rename from lib/graphql/Query/DestinationCountryPage/DestinationCountryPage.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCountryPage/DestinationCountryPage.graphql diff --git a/lib/graphql/Query/DestinationCountryPage/DestinationCountryPageUrl.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCountryPage/DestinationCountryPageUrl.graphql similarity index 100% rename from lib/graphql/Query/DestinationCountryPage/DestinationCountryPageUrl.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCountryPage/DestinationCountryPageUrl.graphql diff --git a/lib/graphql/Query/DestinationCountryPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/DestinationCountryPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/DestinationCountryPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationCountryPage/Metadata.graphql diff --git a/lib/graphql/Query/DestinationOverviewPage/DestinationOverviewPage.graphql b/apps/scandic-web/lib/graphql/Query/DestinationOverviewPage/DestinationOverviewPage.graphql similarity index 100% rename from lib/graphql/Query/DestinationOverviewPage/DestinationOverviewPage.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationOverviewPage/DestinationOverviewPage.graphql diff --git a/lib/graphql/Query/DestinationOverviewPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/DestinationOverviewPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/DestinationOverviewPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/DestinationOverviewPage/Metadata.graphql diff --git a/lib/graphql/Query/Footer.graphql b/apps/scandic-web/lib/graphql/Query/Footer.graphql similarity index 100% rename from lib/graphql/Query/Footer.graphql rename to apps/scandic-web/lib/graphql/Query/Footer.graphql diff --git a/lib/graphql/Query/Header.graphql b/apps/scandic-web/lib/graphql/Query/Header.graphql similarity index 100% rename from lib/graphql/Query/Header.graphql rename to apps/scandic-web/lib/graphql/Query/Header.graphql diff --git a/lib/graphql/Query/HotelPage/HotelPage.graphql b/apps/scandic-web/lib/graphql/Query/HotelPage/HotelPage.graphql similarity index 100% rename from lib/graphql/Query/HotelPage/HotelPage.graphql rename to apps/scandic-web/lib/graphql/Query/HotelPage/HotelPage.graphql diff --git a/lib/graphql/Query/HotelPage/HotelPageUrl.graphql b/apps/scandic-web/lib/graphql/Query/HotelPage/HotelPageUrl.graphql similarity index 100% rename from lib/graphql/Query/HotelPage/HotelPageUrl.graphql rename to apps/scandic-web/lib/graphql/Query/HotelPage/HotelPageUrl.graphql diff --git a/lib/graphql/Query/HotelPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/HotelPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/HotelPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/HotelPage/Metadata.graphql diff --git a/lib/graphql/Query/LoyaltyLevels.graphql b/apps/scandic-web/lib/graphql/Query/LoyaltyLevels.graphql similarity index 100% rename from lib/graphql/Query/LoyaltyLevels.graphql rename to apps/scandic-web/lib/graphql/Query/LoyaltyLevels.graphql diff --git a/lib/graphql/Query/LoyaltyPage/LoyaltyPage.graphql b/apps/scandic-web/lib/graphql/Query/LoyaltyPage/LoyaltyPage.graphql similarity index 100% rename from lib/graphql/Query/LoyaltyPage/LoyaltyPage.graphql rename to apps/scandic-web/lib/graphql/Query/LoyaltyPage/LoyaltyPage.graphql diff --git a/lib/graphql/Query/LoyaltyPage/Metadata.graphql b/apps/scandic-web/lib/graphql/Query/LoyaltyPage/Metadata.graphql similarity index 100% rename from lib/graphql/Query/LoyaltyPage/Metadata.graphql rename to apps/scandic-web/lib/graphql/Query/LoyaltyPage/Metadata.graphql diff --git a/lib/graphql/Query/PageSettings.graphql b/apps/scandic-web/lib/graphql/Query/PageSettings.graphql similarity index 100% rename from lib/graphql/Query/PageSettings.graphql rename to apps/scandic-web/lib/graphql/Query/PageSettings.graphql diff --git a/lib/graphql/Query/ResolveEntry.graphql b/apps/scandic-web/lib/graphql/Query/ResolveEntry.graphql similarity index 100% rename from lib/graphql/Query/ResolveEntry.graphql rename to apps/scandic-web/lib/graphql/Query/ResolveEntry.graphql diff --git a/lib/graphql/Query/Rewards.graphql b/apps/scandic-web/lib/graphql/Query/Rewards.graphql similarity index 100% rename from lib/graphql/Query/Rewards.graphql rename to apps/scandic-web/lib/graphql/Query/Rewards.graphql diff --git a/lib/graphql/Query/RewardsWithRedeem.graphql b/apps/scandic-web/lib/graphql/Query/RewardsWithRedeem.graphql similarity index 100% rename from lib/graphql/Query/RewardsWithRedeem.graphql rename to apps/scandic-web/lib/graphql/Query/RewardsWithRedeem.graphql diff --git a/lib/graphql/Query/SASTierComparison.graphql b/apps/scandic-web/lib/graphql/Query/SASTierComparison.graphql similarity index 100% rename from lib/graphql/Query/SASTierComparison.graphql rename to apps/scandic-web/lib/graphql/Query/SASTierComparison.graphql diff --git a/lib/graphql/Query/SiteConfig.graphql b/apps/scandic-web/lib/graphql/Query/SiteConfig.graphql similarity index 100% rename from lib/graphql/Query/SiteConfig.graphql rename to apps/scandic-web/lib/graphql/Query/SiteConfig.graphql diff --git a/lib/graphql/Query/StartPage/StartPage.graphql b/apps/scandic-web/lib/graphql/Query/StartPage/StartPage.graphql similarity index 100% rename from lib/graphql/Query/StartPage/StartPage.graphql rename to apps/scandic-web/lib/graphql/Query/StartPage/StartPage.graphql diff --git a/lib/graphql/_request.ts b/apps/scandic-web/lib/graphql/_request.ts similarity index 100% rename from lib/graphql/_request.ts rename to apps/scandic-web/lib/graphql/_request.ts diff --git a/lib/graphql/batchEdgeRequest.ts b/apps/scandic-web/lib/graphql/batchEdgeRequest.ts similarity index 100% rename from lib/graphql/batchEdgeRequest.ts rename to apps/scandic-web/lib/graphql/batchEdgeRequest.ts diff --git a/lib/graphql/batchRequest.ts b/apps/scandic-web/lib/graphql/batchRequest.ts similarity index 100% rename from lib/graphql/batchRequest.ts rename to apps/scandic-web/lib/graphql/batchRequest.ts diff --git a/lib/graphql/edgeRequest.ts b/apps/scandic-web/lib/graphql/edgeRequest.ts similarity index 100% rename from lib/graphql/edgeRequest.ts rename to apps/scandic-web/lib/graphql/edgeRequest.ts diff --git a/lib/graphql/request.ts b/apps/scandic-web/lib/graphql/request.ts similarity index 100% rename from lib/graphql/request.ts rename to apps/scandic-web/lib/graphql/request.ts diff --git a/lib/previewContext.ts b/apps/scandic-web/lib/previewContext.ts similarity index 100% rename from lib/previewContext.ts rename to apps/scandic-web/lib/previewContext.ts diff --git a/lib/trpc/Provider.tsx b/apps/scandic-web/lib/trpc/Provider.tsx similarity index 100% rename from lib/trpc/Provider.tsx rename to apps/scandic-web/lib/trpc/Provider.tsx diff --git a/lib/trpc/client.ts b/apps/scandic-web/lib/trpc/client.ts similarity index 100% rename from lib/trpc/client.ts rename to apps/scandic-web/lib/trpc/client.ts diff --git a/lib/trpc/memoizedRequests/index.ts b/apps/scandic-web/lib/trpc/memoizedRequests/index.ts similarity index 100% rename from lib/trpc/memoizedRequests/index.ts rename to apps/scandic-web/lib/trpc/memoizedRequests/index.ts diff --git a/lib/trpc/server.ts b/apps/scandic-web/lib/trpc/server.ts similarity index 100% rename from lib/trpc/server.ts rename to apps/scandic-web/lib/trpc/server.ts diff --git a/lint-staged.config.js b/apps/scandic-web/lint-staged.config.js similarity index 100% rename from lint-staged.config.js rename to apps/scandic-web/lint-staged.config.js diff --git a/middleware.ts b/apps/scandic-web/middleware.ts similarity index 100% rename from middleware.ts rename to apps/scandic-web/middleware.ts diff --git a/middlewares/authRequired.ts b/apps/scandic-web/middlewares/authRequired.ts similarity index 100% rename from middlewares/authRequired.ts rename to apps/scandic-web/middlewares/authRequired.ts diff --git a/middlewares/bookingFlow.ts b/apps/scandic-web/middlewares/bookingFlow.ts similarity index 100% rename from middlewares/bookingFlow.ts rename to apps/scandic-web/middlewares/bookingFlow.ts diff --git a/middlewares/cmsContent.ts b/apps/scandic-web/middlewares/cmsContent.ts similarity index 100% rename from middlewares/cmsContent.ts rename to apps/scandic-web/middlewares/cmsContent.ts diff --git a/middlewares/currentWebLogin.ts b/apps/scandic-web/middlewares/currentWebLogin.ts similarity index 100% rename from middlewares/currentWebLogin.ts rename to apps/scandic-web/middlewares/currentWebLogin.ts diff --git a/middlewares/currentWebLoginEmail.ts b/apps/scandic-web/middlewares/currentWebLoginEmail.ts similarity index 100% rename from middlewares/currentWebLoginEmail.ts rename to apps/scandic-web/middlewares/currentWebLoginEmail.ts diff --git a/middlewares/currentWebLogout.ts b/apps/scandic-web/middlewares/currentWebLogout.ts similarity index 100% rename from middlewares/currentWebLogout.ts rename to apps/scandic-web/middlewares/currentWebLogout.ts diff --git a/middlewares/dateFormat.ts b/apps/scandic-web/middlewares/dateFormat.ts similarity index 100% rename from middlewares/dateFormat.ts rename to apps/scandic-web/middlewares/dateFormat.ts diff --git a/middlewares/handleAuth.ts b/apps/scandic-web/middlewares/handleAuth.ts similarity index 100% rename from middlewares/handleAuth.ts rename to apps/scandic-web/middlewares/handleAuth.ts diff --git a/middlewares/myPages.ts b/apps/scandic-web/middlewares/myPages.ts similarity index 100% rename from middlewares/myPages.ts rename to apps/scandic-web/middlewares/myPages.ts diff --git a/middlewares/sasXScandic.ts b/apps/scandic-web/middlewares/sasXScandic.ts similarity index 100% rename from middlewares/sasXScandic.ts rename to apps/scandic-web/middlewares/sasXScandic.ts diff --git a/middlewares/utils.ts b/apps/scandic-web/middlewares/utils.ts similarity index 100% rename from middlewares/utils.ts rename to apps/scandic-web/middlewares/utils.ts diff --git a/middlewares/webView.ts b/apps/scandic-web/middlewares/webView.ts similarity index 100% rename from middlewares/webView.ts rename to apps/scandic-web/middlewares/webView.ts diff --git a/netlify.toml b/apps/scandic-web/netlify.toml similarity index 85% rename from netlify.toml rename to apps/scandic-web/netlify.toml index b52d131a2..94a97869f 100644 --- a/netlify.toml +++ b/apps/scandic-web/netlify.toml @@ -1,12 +1,12 @@ [build] -command = "npm run build" -publish = ".next" +command = "yarn build" +publish = "apps/scandic-web/.next" [context.branch-deploy] -command = "npm run lint && npm run build" +command = "yarn build" [context.deploy-preview] -command = "npm run lint && npm run build" +command = "yarn build" # [[plugins]] # package = "netlify-plugin-cypress" diff --git a/netlify/functions/sitemap/index.mts b/apps/scandic-web/netlify/functions/sitemap/index.mts similarity index 100% rename from netlify/functions/sitemap/index.mts rename to apps/scandic-web/netlify/functions/sitemap/index.mts diff --git a/next.config.js b/apps/scandic-web/next.config.js similarity index 100% rename from next.config.js rename to apps/scandic-web/next.config.js diff --git a/apps/scandic-web/package.json b/apps/scandic-web/package.json new file mode 100644 index 000000000..9407a6c12 --- /dev/null +++ b/apps/scandic-web/package.json @@ -0,0 +1,140 @@ +{ + "name": "@scandic-hotels/scandic-web", + "version": "0.1.0", + "private": true, + "type": "module", + "packageManager": "yarn@4.0.0", + "scripts": { + "prebuild": "yarn lint && yarn test:unit", + "build": "next build", + "predev": "rm -rf .next", + "dev": "PORT=3000 NEXT_PUBLIC_PORT=3000 next dev", + "prelint": "rm -rf .next", + "lint": "next lint --max-warnings 0 && tsc", + "prelint:fix": "rm -rf .next", + "lint:fix": "next lint --fix --max-warnings 0 && tsc", + "start": "node .next/standalone/server.js", + "test:component": "cypress open --component", + "test:component:headless": "cypress run --component", + "test:e2e": "start-server-and-test test:setup http://127.0.0.1:3000/en/sponsoring \"cypress open --e2e\"", + "test:e2e:headless": "start-server-and-test test:setup http://127.0.0.1:3000/en/sponsoring \"cypress run --e2e\"", + "test:setup": "yarn build && yarn start", + "preinstall": "/bin/sh -c \"export $(cat .env.local | grep -v '^#' | xargs)\"", + "test:unit": "jest", + "test:unit:watch": "jest --watch" + }, + "dependencies": { + "@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.27", + "@contentstack/live-preview-utils": "^3.0.0", + "@formatjs/intl": "^2.10.15", + "@hookform/error-message": "^2.0.1", + "@hookform/resolvers": "^3.3.4", + "@internationalized/date": "^3.6.0", + "@netlify/blobs": "^8.1.0", + "@netlify/functions": "^3.0.0", + "@netlify/plugin-nextjs": "^5.9.4", + "@opentelemetry/api": "^1.9.0", + "@opentelemetry/api-logs": "^0.56.0", + "@opentelemetry/instrumentation": "^0.56.0", + "@opentelemetry/resources": "^1.29.0", + "@opentelemetry/sdk-logs": "^0.56.0", + "@opentelemetry/sdk-metrics": "^1.25.1", + "@opentelemetry/sdk-trace-base": "^1.29.0", + "@preact/signals-core": "^1.7.0", + "@radix-ui/react-dialog": "^1.1.1", + "@radix-ui/react-slot": "^1.0.2", + "@radix-ui/react-visually-hidden": "^1.1.0", + "@react-aria/ssr": "^3.9.5", + "@scandic-hotels/design-system": "workspace:*", + "@sentry/nextjs": "^8.41.0", + "@t3-oss/env-nextjs": "^0.9.2", + "@tanstack/react-query": "^5.28.6", + "@tanstack/react-query-devtools": "^5.64.2", + "@tanstack/react-table": "^8.20.5", + "@testing-library/dom": "^10.0.0", + "@trpc/client": "^11.0.0-rc.467", + "@trpc/react-query": "^11.0.0-rc.467", + "@trpc/server": "^11.0.0-rc.467", + "@tsparticles/confetti": "^3.5.0", + "@types/geojson": "^7946.0.16", + "@types/supercluster": "^7.1.3", + "@vercel/otel": "^1.9.1", + "@vis.gl/react-google-maps": "^1.2.0", + "class-variance-authority": "^0.7.0", + "clean-deep": "^3.4.0", + "contentstack": "^3.23.0", + "date-fns": "^4.1.0", + "dayjs": "^1.11.10", + "deepmerge": "^4.3.1", + "downshift": "^9.0.8", + "embla-carousel": "^8.5.2", + "embla-carousel-react": "^8.5.2", + "fast-deep-equal": "^3.1.3", + "fetch-retry": "^6.0.0", + "framer-motion": "11.3.28", + "graphql": "^16.8.1", + "graphql-request": "^6.1.0", + "graphql-tag": "^2.12.6", + "html-react-parser": "^5.2.2", + "ics": "^3.8.1", + "immer": "10.1.1", + "input-otp": "^1.4.2", + "json-stable-stringify-without-jsonify": "^1.0.1", + "libphonenumber-js": "^1.10.60", + "nanoid": "^5.0.9", + "next": "^14.2.18", + "next-auth": "5.0.0-beta.19", + "react": "^18", + "react-aria-components": "^1.6.0", + "react-day-picker": "^9.0.8", + "react-dom": "^18", + "react-feather": "^2.0.10", + "react-hook-form": "^7.51.2", + "react-international-phone": "^4.2.6", + "react-intl": "^6.6.8", + "react-to-print": "^3.0.2", + "server-only": "^0.0.1", + "slugify": "^1.6.6", + "sonner": "^1.7.0", + "supercluster": "^8.0.1", + "superjson": "^2.2.1", + "usehooks-ts": "3.1.0", + "uuid": "^11.0.5", + "zod": "3.22.4", + "zustand": "^4.5.2" + }, + "devDependencies": { + "@svgr/webpack": "^8.1.0", + "@testing-library/jest-dom": "^6.4.6", + "@testing-library/react": "^16.0.0", + "@testing-library/user-event": "^14.5.2", + "@types/jest": "^29.5.12", + "@types/json-stable-stringify-without-jsonify": "^1.0.2", + "@types/node": "^20", + "@types/react": "^18", + "@types/react-dom": "^18", + "@typescript-eslint/eslint-plugin": "^8.17.0", + "@typescript-eslint/parser": "^8.17.0", + "cypress": "^13.6.6", + "dotenv": "^16.4.5", + "eslint": "^8", + "eslint-config-next": "^14.0.4", + "eslint-plugin-import": "^2.29.1", + "eslint-plugin-simple-import-sort": "^12.1.0", + "jest": "^29.7.0", + "jest-environment-jsdom": "^29.7.0", + "jiti": "^1.21.0", + "json-sort-cli": "^4.0.4", + "lint-staged": "^15.2.2", + "netlify-plugin-cypress": "^2.2.1", + "prettier": "^3.2.5", + "schema-dts": "^1.1.2", + "start-server-and-test": "^2.0.3", + "ts-node": "^10.9.2", + "typescript": "5.4.5", + "typescript-plugin-css-modules": "^5.1.0" + }, + "engines": { + "node": ">18" + } +} diff --git a/prettier.config.cjs b/apps/scandic-web/prettier.config.cjs similarity index 100% rename from prettier.config.cjs rename to apps/scandic-web/prettier.config.cjs diff --git a/providers/EnterDetailsProvider.tsx b/apps/scandic-web/providers/EnterDetailsProvider.tsx similarity index 100% rename from providers/EnterDetailsProvider.tsx rename to apps/scandic-web/providers/EnterDetailsProvider.tsx diff --git a/providers/HotelDataProvider.tsx b/apps/scandic-web/providers/HotelDataProvider.tsx similarity index 100% rename from providers/HotelDataProvider.tsx rename to apps/scandic-web/providers/HotelDataProvider.tsx diff --git a/providers/RatesProvider.tsx b/apps/scandic-web/providers/RatesProvider.tsx similarity index 100% rename from providers/RatesProvider.tsx rename to apps/scandic-web/providers/RatesProvider.tsx diff --git a/providers/RoomProvider.tsx b/apps/scandic-web/providers/RoomProvider.tsx similarity index 100% rename from providers/RoomProvider.tsx rename to apps/scandic-web/providers/RoomProvider.tsx diff --git a/public/_static/BestFriend.svg b/apps/scandic-web/public/_static/BestFriend.svg similarity index 100% rename from public/_static/BestFriend.svg rename to apps/scandic-web/public/_static/BestFriend.svg diff --git a/public/_static/CloseFriend.svg b/apps/scandic-web/public/_static/CloseFriend.svg similarity index 100% rename from public/_static/CloseFriend.svg rename to apps/scandic-web/public/_static/CloseFriend.svg diff --git a/public/_static/DearFriend.svg b/apps/scandic-web/public/_static/DearFriend.svg similarity index 100% rename from public/_static/DearFriend.svg rename to apps/scandic-web/public/_static/DearFriend.svg diff --git a/public/_static/GoodFriend.svg b/apps/scandic-web/public/_static/GoodFriend.svg similarity index 100% rename from public/_static/GoodFriend.svg rename to apps/scandic-web/public/_static/GoodFriend.svg diff --git a/public/_static/LoyalFriend.svg b/apps/scandic-web/public/_static/LoyalFriend.svg similarity index 100% rename from public/_static/LoyalFriend.svg rename to apps/scandic-web/public/_static/LoyalFriend.svg diff --git a/public/_static/NewFriend.svg b/apps/scandic-web/public/_static/NewFriend.svg similarity index 100% rename from public/_static/NewFriend.svg rename to apps/scandic-web/public/_static/NewFriend.svg diff --git a/public/_static/TrueFriend.svg b/apps/scandic-web/public/_static/TrueFriend.svg similarity index 100% rename from public/_static/TrueFriend.svg rename to apps/scandic-web/public/_static/TrueFriend.svg diff --git a/public/_static/css/cookie-bot.css b/apps/scandic-web/public/_static/css/cookie-bot.css similarity index 100% rename from public/_static/css/cookie-bot.css rename to apps/scandic-web/public/_static/css/cookie-bot.css diff --git a/public/_static/css/core.css b/apps/scandic-web/public/_static/css/core.css similarity index 100% rename from public/_static/css/core.css rename to apps/scandic-web/public/_static/css/core.css diff --git a/public/_static/css/scandic.css b/apps/scandic-web/public/_static/css/scandic.css similarity index 100% rename from public/_static/css/scandic.css rename to apps/scandic-web/public/_static/css/scandic.css diff --git a/public/_static/fonts/akkurat/akkurat-light-webfont.woff b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-light-webfont.woff similarity index 100% rename from public/_static/fonts/akkurat/akkurat-light-webfont.woff rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-light-webfont.woff diff --git a/public/_static/fonts/akkurat/akkurat-light-webfont.woff2 b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-light-webfont.woff2 similarity index 100% rename from public/_static/fonts/akkurat/akkurat-light-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-light-webfont.woff2 diff --git a/public/_static/fonts/akkurat/akkurat-light.woff b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-light.woff similarity index 100% rename from public/_static/fonts/akkurat/akkurat-light.woff rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-light.woff diff --git a/public/_static/fonts/akkurat/akkurat-regular-webfont.woff b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular-webfont.woff similarity index 100% rename from public/_static/fonts/akkurat/akkurat-regular-webfont.woff rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular-webfont.woff diff --git a/public/_static/fonts/akkurat/akkurat-regular-webfont.woff2 b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular-webfont.woff2 similarity index 100% rename from public/_static/fonts/akkurat/akkurat-regular-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular-webfont.woff2 diff --git a/public/_static/fonts/akkurat/akkurat-regular.woff b/apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular.woff similarity index 100% rename from public/_static/fonts/akkurat/akkurat-regular.woff rename to apps/scandic-web/public/_static/fonts/akkurat/akkurat-regular.woff diff --git a/public/_static/fonts/biro-script-plus/regular.woff2 b/apps/scandic-web/public/_static/fonts/biro-script-plus/regular.woff2 similarity index 100% rename from public/_static/fonts/biro-script-plus/regular.woff2 rename to apps/scandic-web/public/_static/fonts/biro-script-plus/regular.woff2 diff --git a/public/_static/fonts/boita/boita-regular-webfont.woff b/apps/scandic-web/public/_static/fonts/boita/boita-regular-webfont.woff similarity index 100% rename from public/_static/fonts/boita/boita-regular-webfont.woff rename to apps/scandic-web/public/_static/fonts/boita/boita-regular-webfont.woff diff --git a/public/_static/fonts/boita/boita-regular-webfont.woff2 b/apps/scandic-web/public/_static/fonts/boita/boita-regular-webfont.woff2 similarity index 100% rename from public/_static/fonts/boita/boita-regular-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/boita/boita-regular-webfont.woff2 diff --git a/public/_static/fonts/boita/boita-regular.woff b/apps/scandic-web/public/_static/fonts/boita/boita-regular.woff similarity index 100% rename from public/_static/fonts/boita/boita-regular.woff rename to apps/scandic-web/public/_static/fonts/boita/boita-regular.woff diff --git a/public/_static/fonts/brandon-text/black.woff b/apps/scandic-web/public/_static/fonts/brandon-text/black.woff similarity index 100% rename from public/_static/fonts/brandon-text/black.woff rename to apps/scandic-web/public/_static/fonts/brandon-text/black.woff diff --git a/public/_static/fonts/brandon-text/black.woff2 b/apps/scandic-web/public/_static/fonts/brandon-text/black.woff2 similarity index 100% rename from public/_static/fonts/brandon-text/black.woff2 rename to apps/scandic-web/public/_static/fonts/brandon-text/black.woff2 diff --git a/public/_static/fonts/brandon-text/bold.woff b/apps/scandic-web/public/_static/fonts/brandon-text/bold.woff similarity index 100% rename from public/_static/fonts/brandon-text/bold.woff rename to apps/scandic-web/public/_static/fonts/brandon-text/bold.woff diff --git a/public/_static/fonts/brandon-text/bold.woff2 b/apps/scandic-web/public/_static/fonts/brandon-text/bold.woff2 similarity index 100% rename from public/_static/fonts/brandon-text/bold.woff2 rename to apps/scandic-web/public/_static/fonts/brandon-text/bold.woff2 diff --git a/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff b/apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff similarity index 100% rename from public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff rename to apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff diff --git a/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff2 b/apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff2 similarity index 100% rename from public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold-webfont.woff2 diff --git a/public/_static/fonts/brown/brown-bold/lineto-brown-bold.woff b/apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold.woff similarity index 100% rename from public/_static/fonts/brown/brown-bold/lineto-brown-bold.woff rename to apps/scandic-web/public/_static/fonts/brown/brown-bold/lineto-brown-bold.woff diff --git a/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff b/apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff similarity index 100% rename from public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff rename to apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff diff --git a/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff2 b/apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff2 similarity index 100% rename from public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light-webfont.woff2 diff --git a/public/_static/fonts/brown/brown-light/lineto-brown-light.woff b/apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light.woff similarity index 100% rename from public/_static/fonts/brown/brown-light/lineto-brown-light.woff rename to apps/scandic-web/public/_static/fonts/brown/brown-light/lineto-brown-light.woff diff --git a/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff b/apps/scandic-web/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff similarity index 100% rename from public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff rename to apps/scandic-web/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff diff --git a/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff2 b/apps/scandic-web/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff2 similarity index 100% rename from public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/domaine/domainesanstextweb-light-webfont.woff2 diff --git a/public/_static/fonts/fira-mono/OFL.txt b/apps/scandic-web/public/_static/fonts/fira-mono/OFL.txt similarity index 100% rename from public/_static/fonts/fira-mono/OFL.txt rename to apps/scandic-web/public/_static/fonts/fira-mono/OFL.txt diff --git a/public/_static/fonts/fira-mono/bold.woff2 b/apps/scandic-web/public/_static/fonts/fira-mono/bold.woff2 similarity index 100% rename from public/_static/fonts/fira-mono/bold.woff2 rename to apps/scandic-web/public/_static/fonts/fira-mono/bold.woff2 diff --git a/public/_static/fonts/fira-mono/medium.woff2 b/apps/scandic-web/public/_static/fonts/fira-mono/medium.woff2 similarity index 100% rename from public/_static/fonts/fira-mono/medium.woff2 rename to apps/scandic-web/public/_static/fonts/fira-mono/medium.woff2 diff --git a/public/_static/fonts/fira-mono/regular.woff2 b/apps/scandic-web/public/_static/fonts/fira-mono/regular.woff2 similarity index 100% rename from public/_static/fonts/fira-mono/regular.woff2 rename to apps/scandic-web/public/_static/fonts/fira-mono/regular.woff2 diff --git a/public/_static/fonts/fira-sans/OFL.txt b/apps/scandic-web/public/_static/fonts/fira-sans/OFL.txt similarity index 100% rename from public/_static/fonts/fira-sans/OFL.txt rename to apps/scandic-web/public/_static/fonts/fira-sans/OFL.txt diff --git a/public/_static/fonts/fira-sans/black.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/black.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/black.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/black.woff2 diff --git a/public/_static/fonts/fira-sans/bold.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/bold.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/bold.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/bold.woff2 diff --git a/public/_static/fonts/fira-sans/light.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/light.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/light.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/light.woff2 diff --git a/public/_static/fonts/fira-sans/medium.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/medium.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/medium.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/medium.woff2 diff --git a/public/_static/fonts/fira-sans/regular.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/regular.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/regular.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/regular.woff2 diff --git a/public/_static/fonts/fira-sans/semibold.woff2 b/apps/scandic-web/public/_static/fonts/fira-sans/semibold.woff2 similarity index 100% rename from public/_static/fonts/fira-sans/semibold.woff2 rename to apps/scandic-web/public/_static/fonts/fira-sans/semibold.woff2 diff --git a/public/_static/fonts/gotham/gotham-black-webfont.woff b/apps/scandic-web/public/_static/fonts/gotham/gotham-black-webfont.woff similarity index 100% rename from public/_static/fonts/gotham/gotham-black-webfont.woff rename to apps/scandic-web/public/_static/fonts/gotham/gotham-black-webfont.woff diff --git a/public/_static/fonts/gotham/gotham-black-webfont.woff2 b/apps/scandic-web/public/_static/fonts/gotham/gotham-black-webfont.woff2 similarity index 100% rename from public/_static/fonts/gotham/gotham-black-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/gotham/gotham-black-webfont.woff2 diff --git a/public/_static/fonts/gotham/gotham-black.woff b/apps/scandic-web/public/_static/fonts/gotham/gotham-black.woff similarity index 100% rename from public/_static/fonts/gotham/gotham-black.woff rename to apps/scandic-web/public/_static/fonts/gotham/gotham-black.woff diff --git a/public/_static/fonts/gotham/gotham-bold-webfont.woff b/apps/scandic-web/public/_static/fonts/gotham/gotham-bold-webfont.woff similarity index 100% rename from public/_static/fonts/gotham/gotham-bold-webfont.woff rename to apps/scandic-web/public/_static/fonts/gotham/gotham-bold-webfont.woff diff --git a/public/_static/fonts/gotham/gotham-bold-webfont.woff2 b/apps/scandic-web/public/_static/fonts/gotham/gotham-bold-webfont.woff2 similarity index 100% rename from public/_static/fonts/gotham/gotham-bold-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/gotham/gotham-bold-webfont.woff2 diff --git a/public/_static/fonts/gotham/gotham-bold.woff b/apps/scandic-web/public/_static/fonts/gotham/gotham-bold.woff similarity index 100% rename from public/_static/fonts/gotham/gotham-bold.woff rename to apps/scandic-web/public/_static/fonts/gotham/gotham-bold.woff diff --git a/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff b/apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff similarity index 100% rename from public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff rename to apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff diff --git a/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff2 b/apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff2 similarity index 100% rename from public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff2 rename to apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay55Roman_normal_normal.woff2 diff --git a/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff b/apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff similarity index 100% rename from public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff rename to apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff diff --git a/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff2 b/apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff2 similarity index 100% rename from public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff2 rename to apps/scandic-web/public/_static/fonts/grotesk/NeueHaasGroteskDisplay65Medium_normal_normal.woff2 diff --git a/public/_static/fonts/interstate/interstate-black-compressed.woff b/apps/scandic-web/public/_static/fonts/interstate/interstate-black-compressed.woff similarity index 100% rename from public/_static/fonts/interstate/interstate-black-compressed.woff rename to apps/scandic-web/public/_static/fonts/interstate/interstate-black-compressed.woff diff --git a/public/_static/fonts/interstate/interstate-black-compressed.woff2 b/apps/scandic-web/public/_static/fonts/interstate/interstate-black-compressed.woff2 similarity index 100% rename from public/_static/fonts/interstate/interstate-black-compressed.woff2 rename to apps/scandic-web/public/_static/fonts/interstate/interstate-black-compressed.woff2 diff --git a/public/_static/fonts/interstate/interstate-regular-condensed-webfont.woff2 b/apps/scandic-web/public/_static/fonts/interstate/interstate-regular-condensed-webfont.woff2 similarity index 100% rename from public/_static/fonts/interstate/interstate-regular-condensed-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/interstate/interstate-regular-condensed-webfont.woff2 diff --git a/public/_static/fonts/interstate/interstate-regular-condensed.woff b/apps/scandic-web/public/_static/fonts/interstate/interstate-regular-condensed.woff similarity index 100% rename from public/_static/fonts/interstate/interstate-regular-condensed.woff rename to apps/scandic-web/public/_static/fonts/interstate/interstate-regular-condensed.woff diff --git a/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff b/apps/scandic-web/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff similarity index 100% rename from public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff rename to apps/scandic-web/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff diff --git a/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff2 b/apps/scandic-web/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff2 similarity index 100% rename from public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff2 rename to apps/scandic-web/public/_static/fonts/itcgaramond/ITCGaramondBookNarrow_normal_condensed.woff2 diff --git a/public/_static/fonts/prumo/PrumoText-Light.woff b/apps/scandic-web/public/_static/fonts/prumo/PrumoText-Light.woff similarity index 100% rename from public/_static/fonts/prumo/PrumoText-Light.woff rename to apps/scandic-web/public/_static/fonts/prumo/PrumoText-Light.woff diff --git a/public/_static/fonts/prumo/prumotext-light-webfont.woff2 b/apps/scandic-web/public/_static/fonts/prumo/prumotext-light-webfont.woff2 similarity index 100% rename from public/_static/fonts/prumo/prumotext-light-webfont.woff2 rename to apps/scandic-web/public/_static/fonts/prumo/prumotext-light-webfont.woff2 diff --git a/public/_static/fonts/roboto/roboto-v20-latin-300.woff b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-300.woff similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-300.woff rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-300.woff diff --git a/public/_static/fonts/roboto/roboto-v20-latin-300.woff2 b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-300.woff2 similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-300.woff2 rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-300.woff2 diff --git a/public/_static/fonts/roboto/roboto-v20-latin-500.woff b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-500.woff similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-500.woff rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-500.woff diff --git a/public/_static/fonts/roboto/roboto-v20-latin-500.woff2 b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-500.woff2 similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-500.woff2 rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-500.woff2 diff --git a/public/_static/fonts/roboto/roboto-v20-latin-700.woff b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-700.woff similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-700.woff rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-700.woff diff --git a/public/_static/fonts/roboto/roboto-v20-latin-700.woff2 b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-700.woff2 similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-700.woff2 rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-700.woff2 diff --git a/public/_static/fonts/roboto/roboto-v20-latin-regular.woff b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-regular.woff similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-regular.woff rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-regular.woff diff --git a/public/_static/fonts/roboto/roboto-v20-latin-regular.woff2 b/apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-regular.woff2 similarity index 100% rename from public/_static/fonts/roboto/roboto-v20-latin-regular.woff2 rename to apps/scandic-web/public/_static/fonts/roboto/roboto-v20-latin-regular.woff2 diff --git a/public/_static/icons/UI - Enter details/bed king.svg b/apps/scandic-web/public/_static/icons/UI - Enter details/bed king.svg similarity index 100% rename from public/_static/icons/UI - Enter details/bed king.svg rename to apps/scandic-web/public/_static/icons/UI - Enter details/bed king.svg diff --git a/public/_static/icons/account_circle.svg b/apps/scandic-web/public/_static/icons/account_circle.svg similarity index 100% rename from public/_static/icons/account_circle.svg rename to apps/scandic-web/public/_static/icons/account_circle.svg diff --git a/public/_static/icons/alternate_email.svg b/apps/scandic-web/public/_static/icons/alternate_email.svg similarity index 100% rename from public/_static/icons/alternate_email.svg rename to apps/scandic-web/public/_static/icons/alternate_email.svg diff --git a/public/_static/icons/arrow_right.svg b/apps/scandic-web/public/_static/icons/arrow_right.svg similarity index 100% rename from public/_static/icons/arrow_right.svg rename to apps/scandic-web/public/_static/icons/arrow_right.svg diff --git a/public/_static/icons/arrow_upward.svg b/apps/scandic-web/public/_static/icons/arrow_upward.svg similarity index 100% rename from public/_static/icons/arrow_upward.svg rename to apps/scandic-web/public/_static/icons/arrow_upward.svg diff --git a/public/_static/icons/calendar_month.svg b/apps/scandic-web/public/_static/icons/calendar_month.svg similarity index 100% rename from public/_static/icons/calendar_month.svg rename to apps/scandic-web/public/_static/icons/calendar_month.svg diff --git a/public/_static/icons/check-ring.svg b/apps/scandic-web/public/_static/icons/check-ring.svg similarity index 100% rename from public/_static/icons/check-ring.svg rename to apps/scandic-web/public/_static/icons/check-ring.svg diff --git a/public/_static/icons/check.svg b/apps/scandic-web/public/_static/icons/check.svg similarity index 100% rename from public/_static/icons/check.svg rename to apps/scandic-web/public/_static/icons/check.svg diff --git a/public/_static/icons/check_circle.svg b/apps/scandic-web/public/_static/icons/check_circle.svg similarity index 100% rename from public/_static/icons/check_circle.svg rename to apps/scandic-web/public/_static/icons/check_circle.svg diff --git a/public/_static/icons/chevron-down.svg b/apps/scandic-web/public/_static/icons/chevron-down.svg similarity index 100% rename from public/_static/icons/chevron-down.svg rename to apps/scandic-web/public/_static/icons/chevron-down.svg diff --git a/public/_static/icons/chevron.svg b/apps/scandic-web/public/_static/icons/chevron.svg similarity index 100% rename from public/_static/icons/chevron.svg rename to apps/scandic-web/public/_static/icons/chevron.svg diff --git a/public/_static/icons/chevron_right.svg b/apps/scandic-web/public/_static/icons/chevron_right.svg similarity index 100% rename from public/_static/icons/chevron_right.svg rename to apps/scandic-web/public/_static/icons/chevron_right.svg diff --git a/public/_static/icons/close.svg b/apps/scandic-web/public/_static/icons/close.svg similarity index 100% rename from public/_static/icons/close.svg rename to apps/scandic-web/public/_static/icons/close.svg diff --git a/public/_static/icons/copy.svg b/apps/scandic-web/public/_static/icons/copy.svg similarity index 100% rename from public/_static/icons/copy.svg rename to apps/scandic-web/public/_static/icons/copy.svg diff --git a/public/_static/icons/flower-image.svg b/apps/scandic-web/public/_static/icons/flower-image.svg similarity index 100% rename from public/_static/icons/flower-image.svg rename to apps/scandic-web/public/_static/icons/flower-image.svg diff --git a/public/_static/icons/globe.svg b/apps/scandic-web/public/_static/icons/globe.svg similarity index 100% rename from public/_static/icons/globe.svg rename to apps/scandic-web/public/_static/icons/globe.svg diff --git a/public/_static/icons/good-friend.svg b/apps/scandic-web/public/_static/icons/good-friend.svg similarity index 100% rename from public/_static/icons/good-friend.svg rename to apps/scandic-web/public/_static/icons/good-friend.svg diff --git a/public/_static/icons/heart.svg b/apps/scandic-web/public/_static/icons/heart.svg similarity index 100% rename from public/_static/icons/heart.svg rename to apps/scandic-web/public/_static/icons/heart.svg diff --git a/public/_static/icons/home.svg b/apps/scandic-web/public/_static/icons/home.svg similarity index 100% rename from public/_static/icons/home.svg rename to apps/scandic-web/public/_static/icons/home.svg diff --git a/public/_static/icons/location.svg b/apps/scandic-web/public/_static/icons/location.svg similarity index 100% rename from public/_static/icons/location.svg rename to apps/scandic-web/public/_static/icons/location.svg diff --git a/public/_static/icons/loyaltylevels/best-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/best-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/best-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/best-friend.svg diff --git a/public/_static/icons/loyaltylevels/best_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/best_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/best_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/best_friend.svg diff --git a/public/_static/icons/loyaltylevels/close-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/close-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/close-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/close-friend.svg diff --git a/public/_static/icons/loyaltylevels/close_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/close_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/close_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/close_friend.svg diff --git a/public/_static/icons/loyaltylevels/dear-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/dear-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/dear-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/dear-friend.svg diff --git a/public/_static/icons/loyaltylevels/dear_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/dear_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/dear_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/dear_friend.svg diff --git a/public/_static/icons/loyaltylevels/good-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/good-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/good-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/good-friend.svg diff --git a/public/_static/icons/loyaltylevels/good_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/good_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/good_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/good_friend.svg diff --git a/public/_static/icons/loyaltylevels/loyal-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/loyal-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/loyal-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/loyal-friend.svg diff --git a/public/_static/icons/loyaltylevels/loyal_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/loyal_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/loyal_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/loyal_friend.svg diff --git a/public/_static/icons/loyaltylevels/new-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/new-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/new-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/new-friend.svg diff --git a/public/_static/icons/loyaltylevels/new_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/new_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/new_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/new_friend.svg diff --git a/public/_static/icons/loyaltylevels/scandic-family.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/scandic-family.svg similarity index 100% rename from public/_static/icons/loyaltylevels/scandic-family.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/scandic-family.svg diff --git a/public/_static/icons/loyaltylevels/scandic-friends.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/scandic-friends.svg similarity index 100% rename from public/_static/icons/loyaltylevels/scandic-friends.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/scandic-friends.svg diff --git a/public/_static/icons/loyaltylevels/scandic_family.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/scandic_family.svg similarity index 100% rename from public/_static/icons/loyaltylevels/scandic_family.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/scandic_family.svg diff --git a/public/_static/icons/loyaltylevels/scandic_friends.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/scandic_friends.svg similarity index 100% rename from public/_static/icons/loyaltylevels/scandic_friends.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/scandic_friends.svg diff --git a/public/_static/icons/loyaltylevels/true-friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/true-friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/true-friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/true-friend.svg diff --git a/public/_static/icons/loyaltylevels/true_friend.svg b/apps/scandic-web/public/_static/icons/loyaltylevels/true_friend.svg similarity index 100% rename from public/_static/icons/loyaltylevels/true_friend.svg rename to apps/scandic-web/public/_static/icons/loyaltylevels/true_friend.svg diff --git a/public/_static/icons/new-friend.png b/apps/scandic-web/public/_static/icons/new-friend.png similarity index 100% rename from public/_static/icons/new-friend.png rename to apps/scandic-web/public/_static/icons/new-friend.png diff --git a/public/_static/icons/payment/american-express.svg b/apps/scandic-web/public/_static/icons/payment/american-express.svg similarity index 100% rename from public/_static/icons/payment/american-express.svg rename to apps/scandic-web/public/_static/icons/payment/american-express.svg diff --git a/public/_static/icons/payment/apple-pay.svg b/apps/scandic-web/public/_static/icons/payment/apple-pay.svg similarity index 100% rename from public/_static/icons/payment/apple-pay.svg rename to apps/scandic-web/public/_static/icons/payment/apple-pay.svg diff --git a/public/_static/icons/payment/card-generic.svg b/apps/scandic-web/public/_static/icons/payment/card-generic.svg similarity index 100% rename from public/_static/icons/payment/card-generic.svg rename to apps/scandic-web/public/_static/icons/payment/card-generic.svg diff --git a/public/_static/icons/payment/dankort.svg b/apps/scandic-web/public/_static/icons/payment/dankort.svg similarity index 100% rename from public/_static/icons/payment/dankort.svg rename to apps/scandic-web/public/_static/icons/payment/dankort.svg diff --git a/public/_static/icons/payment/diners-club.svg b/apps/scandic-web/public/_static/icons/payment/diners-club.svg similarity index 100% rename from public/_static/icons/payment/diners-club.svg rename to apps/scandic-web/public/_static/icons/payment/diners-club.svg diff --git a/public/_static/icons/payment/discover.svg b/apps/scandic-web/public/_static/icons/payment/discover.svg similarity index 100% rename from public/_static/icons/payment/discover.svg rename to apps/scandic-web/public/_static/icons/payment/discover.svg diff --git a/public/_static/icons/payment/google-pay.svg b/apps/scandic-web/public/_static/icons/payment/google-pay.svg similarity index 100% rename from public/_static/icons/payment/google-pay.svg rename to apps/scandic-web/public/_static/icons/payment/google-pay.svg diff --git a/public/_static/icons/payment/jcb.svg b/apps/scandic-web/public/_static/icons/payment/jcb.svg similarity index 100% rename from public/_static/icons/payment/jcb.svg rename to apps/scandic-web/public/_static/icons/payment/jcb.svg diff --git a/public/_static/icons/payment/klarna.svg b/apps/scandic-web/public/_static/icons/payment/klarna.svg similarity index 100% rename from public/_static/icons/payment/klarna.svg rename to apps/scandic-web/public/_static/icons/payment/klarna.svg diff --git a/public/_static/icons/payment/maestro.svg b/apps/scandic-web/public/_static/icons/payment/maestro.svg similarity index 100% rename from public/_static/icons/payment/maestro.svg rename to apps/scandic-web/public/_static/icons/payment/maestro.svg diff --git a/public/_static/icons/payment/mastercard.svg b/apps/scandic-web/public/_static/icons/payment/mastercard.svg similarity index 100% rename from public/_static/icons/payment/mastercard.svg rename to apps/scandic-web/public/_static/icons/payment/mastercard.svg diff --git a/public/_static/icons/payment/mobilepay.svg b/apps/scandic-web/public/_static/icons/payment/mobilepay.svg similarity index 100% rename from public/_static/icons/payment/mobilepay.svg rename to apps/scandic-web/public/_static/icons/payment/mobilepay.svg diff --git a/public/_static/icons/payment/paypal.svg b/apps/scandic-web/public/_static/icons/payment/paypal.svg similarity index 100% rename from public/_static/icons/payment/paypal.svg rename to apps/scandic-web/public/_static/icons/payment/paypal.svg diff --git a/public/_static/icons/payment/swish.svg b/apps/scandic-web/public/_static/icons/payment/swish.svg similarity index 100% rename from public/_static/icons/payment/swish.svg rename to apps/scandic-web/public/_static/icons/payment/swish.svg diff --git a/public/_static/icons/payment/unionpay.svg b/apps/scandic-web/public/_static/icons/payment/unionpay.svg similarity index 100% rename from public/_static/icons/payment/unionpay.svg rename to apps/scandic-web/public/_static/icons/payment/unionpay.svg diff --git a/public/_static/icons/payment/vipps.svg b/apps/scandic-web/public/_static/icons/payment/vipps.svg similarity index 100% rename from public/_static/icons/payment/vipps.svg rename to apps/scandic-web/public/_static/icons/payment/vipps.svg diff --git a/public/_static/icons/payment/visa.svg b/apps/scandic-web/public/_static/icons/payment/visa.svg similarity index 100% rename from public/_static/icons/payment/visa.svg rename to apps/scandic-web/public/_static/icons/payment/visa.svg diff --git a/public/_static/icons/person.svg b/apps/scandic-web/public/_static/icons/person.svg similarity index 100% rename from public/_static/icons/person.svg rename to apps/scandic-web/public/_static/icons/person.svg diff --git a/public/_static/icons/phone.svg b/apps/scandic-web/public/_static/icons/phone.svg similarity index 100% rename from public/_static/icons/phone.svg rename to apps/scandic-web/public/_static/icons/phone.svg diff --git a/public/_static/icons/qr.svg b/apps/scandic-web/public/_static/icons/qr.svg similarity index 100% rename from public/_static/icons/qr.svg rename to apps/scandic-web/public/_static/icons/qr.svg diff --git a/public/_static/icons/scandic-friends.png b/apps/scandic-web/public/_static/icons/scandic-friends.png similarity index 100% rename from public/_static/icons/scandic-friends.png rename to apps/scandic-web/public/_static/icons/scandic-friends.png diff --git a/public/_static/icons/sweden.svg b/apps/scandic-web/public/_static/icons/sweden.svg similarity index 100% rename from public/_static/icons/sweden.svg rename to apps/scandic-web/public/_static/icons/sweden.svg diff --git a/public/_static/img/Scandic_Family_Breakfast.jpg b/apps/scandic-web/public/_static/img/Scandic_Family_Breakfast.jpg similarity index 100% rename from public/_static/img/Scandic_Family_Breakfast.jpg rename to apps/scandic-web/public/_static/img/Scandic_Family_Breakfast.jpg diff --git a/public/_static/img/Scandic_Park_Party_Lipstick.jpg b/apps/scandic-web/public/_static/img/Scandic_Park_Party_Lipstick.jpg similarity index 100% rename from public/_static/img/Scandic_Park_Party_Lipstick.jpg rename to apps/scandic-web/public/_static/img/Scandic_Park_Party_Lipstick.jpg diff --git a/public/_static/img/best-price-guaranteed/best-price-guaranteed-badge-transparent.svg b/apps/scandic-web/public/_static/img/best-price-guaranteed/best-price-guaranteed-badge-transparent.svg similarity index 100% rename from public/_static/img/best-price-guaranteed/best-price-guaranteed-badge-transparent.svg rename to apps/scandic-web/public/_static/img/best-price-guaranteed/best-price-guaranteed-badge-transparent.svg diff --git a/public/_static/img/best-price-guaranteed/checkmark.svg b/apps/scandic-web/public/_static/img/best-price-guaranteed/checkmark.svg similarity index 100% rename from public/_static/img/best-price-guaranteed/checkmark.svg rename to apps/scandic-web/public/_static/img/best-price-guaranteed/checkmark.svg diff --git a/public/_static/img/bg-speech-bubble-corner-deemphasized.png b/apps/scandic-web/public/_static/img/bg-speech-bubble-corner-deemphasized.png similarity index 100% rename from public/_static/img/bg-speech-bubble-corner-deemphasized.png rename to apps/scandic-web/public/_static/img/bg-speech-bubble-corner-deemphasized.png diff --git a/public/_static/img/bg-speech-bubble-corner-failed.png b/apps/scandic-web/public/_static/img/bg-speech-bubble-corner-failed.png similarity index 100% rename from public/_static/img/bg-speech-bubble-corner-failed.png rename to apps/scandic-web/public/_static/img/bg-speech-bubble-corner-failed.png diff --git a/public/_static/img/bg-speech-bubble-corner-purple-border.png b/apps/scandic-web/public/_static/img/bg-speech-bubble-corner-purple-border.png similarity index 100% rename from public/_static/img/bg-speech-bubble-corner-purple-border.png rename to apps/scandic-web/public/_static/img/bg-speech-bubble-corner-purple-border.png diff --git a/public/_static/img/bg-speech-bubble-corner-success.png b/apps/scandic-web/public/_static/img/bg-speech-bubble-corner-success.png similarity index 100% rename from public/_static/img/bg-speech-bubble-corner-success.png rename to apps/scandic-web/public/_static/img/bg-speech-bubble-corner-success.png diff --git a/public/_static/img/bg-speech-bubble-corner.png b/apps/scandic-web/public/_static/img/bg-speech-bubble-corner.png similarity index 100% rename from public/_static/img/bg-speech-bubble-corner.png rename to apps/scandic-web/public/_static/img/bg-speech-bubble-corner.png diff --git a/public/_static/img/bullet-list-arrow-circle-dawn.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-circle-dawn.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-circle-dawn.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-circle-dawn.svg diff --git a/public/_static/img/bullet-list-arrow-circle-lightviolet.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-circle-lightviolet.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-circle-lightviolet.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-circle-lightviolet.svg diff --git a/public/_static/img/bullet-list-arrow-circle-nordicsea-v2.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-circle-nordicsea-v2.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-circle-nordicsea-v2.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-circle-nordicsea-v2.svg diff --git a/public/_static/img/bullet-list-arrow-circle-sandstone.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-circle-sandstone.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-circle-sandstone.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-circle-sandstone.svg diff --git a/public/_static/img/bullet-list-arrow-circle-white.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-circle-white.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-circle-white.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-circle-white.svg diff --git a/public/_static/img/bullet-list-arrow-double-nordicsea-v2.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-double-nordicsea-v2.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-double-nordicsea-v2.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-double-nordicsea-v2.svg diff --git a/public/_static/img/bullet-list-arrow-double-white.svg b/apps/scandic-web/public/_static/img/bullet-list-arrow-double-white.svg similarity index 100% rename from public/_static/img/bullet-list-arrow-double-white.svg rename to apps/scandic-web/public/_static/img/bullet-list-arrow-double-white.svg diff --git a/public/_static/img/bullet-list-close-circle-nordicsea-v2.svg b/apps/scandic-web/public/_static/img/bullet-list-close-circle-nordicsea-v2.svg similarity index 100% rename from public/_static/img/bullet-list-close-circle-nordicsea-v2.svg rename to apps/scandic-web/public/_static/img/bullet-list-close-circle-nordicsea-v2.svg diff --git a/public/_static/img/bullet-list-tick-birch-v2.svg b/apps/scandic-web/public/_static/img/bullet-list-tick-birch-v2.svg similarity index 100% rename from public/_static/img/bullet-list-tick-birch-v2.svg rename to apps/scandic-web/public/_static/img/bullet-list-tick-birch-v2.svg diff --git a/public/_static/img/close-ico.svg b/apps/scandic-web/public/_static/img/close-ico.svg similarity index 100% rename from public/_static/img/close-ico.svg rename to apps/scandic-web/public/_static/img/close-ico.svg diff --git a/public/_static/img/confetti.svg b/apps/scandic-web/public/_static/img/confetti.svg similarity index 100% rename from public/_static/img/confetti.svg rename to apps/scandic-web/public/_static/img/confetti.svg diff --git a/public/_static/img/enter-details/breakfast.png b/apps/scandic-web/public/_static/img/enter-details/breakfast.png similarity index 100% rename from public/_static/img/enter-details/breakfast.png rename to apps/scandic-web/public/_static/img/enter-details/breakfast.png diff --git a/public/_static/img/friends-stamp-black.svg b/apps/scandic-web/public/_static/img/friends-stamp-black.svg similarity index 100% rename from public/_static/img/friends-stamp-black.svg rename to apps/scandic-web/public/_static/img/friends-stamp-black.svg diff --git a/public/_static/img/friends-stamp.svg b/apps/scandic-web/public/_static/img/friends-stamp.svg similarity index 100% rename from public/_static/img/friends-stamp.svg rename to apps/scandic-web/public/_static/img/friends-stamp.svg diff --git a/public/_static/img/icon-scandic-friends.svg b/apps/scandic-web/public/_static/img/icon-scandic-friends.svg similarity index 100% rename from public/_static/img/icon-scandic-friends.svg rename to apps/scandic-web/public/_static/img/icon-scandic-friends.svg diff --git a/public/_static/img/icons/acute.svg b/apps/scandic-web/public/_static/img/icons/acute.svg similarity index 100% rename from public/_static/img/icons/acute.svg rename to apps/scandic-web/public/_static/img/icons/acute.svg diff --git a/public/_static/img/icons/add-to-calendar.svg b/apps/scandic-web/public/_static/img/icons/add-to-calendar.svg similarity index 100% rename from public/_static/img/icons/add-to-calendar.svg rename to apps/scandic-web/public/_static/img/icons/add-to-calendar.svg diff --git a/public/_static/img/icons/ajax-loader.gif b/apps/scandic-web/public/_static/img/icons/ajax-loader.gif similarity index 100% rename from public/_static/img/icons/ajax-loader.gif rename to apps/scandic-web/public/_static/img/icons/ajax-loader.gif diff --git a/public/_static/img/icons/arrow-with-outlined-circle-white.svg b/apps/scandic-web/public/_static/img/icons/arrow-with-outlined-circle-white.svg similarity index 100% rename from public/_static/img/icons/arrow-with-outlined-circle-white.svg rename to apps/scandic-web/public/_static/img/icons/arrow-with-outlined-circle-white.svg diff --git a/public/_static/img/icons/arrow-with-outlined-circle.svg b/apps/scandic-web/public/_static/img/icons/arrow-with-outlined-circle.svg similarity index 100% rename from public/_static/img/icons/arrow-with-outlined-circle.svg rename to apps/scandic-web/public/_static/img/icons/arrow-with-outlined-circle.svg diff --git a/public/_static/img/icons/arrows/arrow-down-body-color.svg b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-body-color.svg similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-body-color.svg rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-body-color.svg diff --git a/public/_static/img/icons/arrows/arrow-down-dark.svg b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-dark.svg similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-dark.svg rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-dark.svg diff --git a/public/_static/img/icons/arrows/arrow-down-grey.png b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-grey.png similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-grey.png rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-grey.png diff --git a/public/_static/img/icons/arrows/arrow-down-nordicsea-3px.svg b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-nordicsea-3px.svg similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-nordicsea-3px.svg rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-nordicsea-3px.svg diff --git a/public/_static/img/icons/arrows/arrow-down-nordicsea.svg b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-nordicsea.svg similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-nordicsea.svg rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-nordicsea.svg diff --git a/public/_static/img/icons/arrows/arrow-down-white.svg b/apps/scandic-web/public/_static/img/icons/arrows/arrow-down-white.svg similarity index 100% rename from public/_static/img/icons/arrows/arrow-down-white.svg rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-down-white.svg diff --git a/public/_static/img/icons/arrows/arrow-up-grey.png b/apps/scandic-web/public/_static/img/icons/arrows/arrow-up-grey.png similarity index 100% rename from public/_static/img/icons/arrows/arrow-up-grey.png rename to apps/scandic-web/public/_static/img/icons/arrows/arrow-up-grey.png diff --git a/public/_static/img/icons/arrows/downInCircle.svg b/apps/scandic-web/public/_static/img/icons/arrows/downInCircle.svg similarity index 100% rename from public/_static/img/icons/arrows/downInCircle.svg rename to apps/scandic-web/public/_static/img/icons/arrows/downInCircle.svg diff --git a/public/_static/img/icons/arrows/dropdown-expand-green-v2.png b/apps/scandic-web/public/_static/img/icons/arrows/dropdown-expand-green-v2.png similarity index 100% rename from public/_static/img/icons/arrows/dropdown-expand-green-v2.png rename to apps/scandic-web/public/_static/img/icons/arrows/dropdown-expand-green-v2.png diff --git a/public/_static/img/icons/arrows/form-select-arrow-black.svg b/apps/scandic-web/public/_static/img/icons/arrows/form-select-arrow-black.svg similarity index 100% rename from public/_static/img/icons/arrows/form-select-arrow-black.svg rename to apps/scandic-web/public/_static/img/icons/arrows/form-select-arrow-black.svg diff --git a/public/_static/img/icons/arrows/form-select-arrow-crocus.svg b/apps/scandic-web/public/_static/img/icons/arrows/form-select-arrow-crocus.svg similarity index 100% rename from public/_static/img/icons/arrows/form-select-arrow-crocus.svg rename to apps/scandic-web/public/_static/img/icons/arrows/form-select-arrow-crocus.svg diff --git a/public/_static/img/icons/carousel-arrow-right-v2-hover.svg b/apps/scandic-web/public/_static/img/icons/carousel-arrow-right-v2-hover.svg similarity index 100% rename from public/_static/img/icons/carousel-arrow-right-v2-hover.svg rename to apps/scandic-web/public/_static/img/icons/carousel-arrow-right-v2-hover.svg diff --git a/public/_static/img/icons/carousel-arrow-right-v2.svg b/apps/scandic-web/public/_static/img/icons/carousel-arrow-right-v2.svg similarity index 100% rename from public/_static/img/icons/carousel-arrow-right-v2.svg rename to apps/scandic-web/public/_static/img/icons/carousel-arrow-right-v2.svg diff --git a/public/_static/img/icons/checkmark-circle-green.svg b/apps/scandic-web/public/_static/img/icons/checkmark-circle-green.svg similarity index 100% rename from public/_static/img/icons/checkmark-circle-green.svg rename to apps/scandic-web/public/_static/img/icons/checkmark-circle-green.svg diff --git a/public/_static/img/icons/checkmark-circle.svg b/apps/scandic-web/public/_static/img/icons/checkmark-circle.svg similarity index 100% rename from public/_static/img/icons/checkmark-circle.svg rename to apps/scandic-web/public/_static/img/icons/checkmark-circle.svg diff --git a/public/_static/img/icons/checkmark-gray-v2.svg b/apps/scandic-web/public/_static/img/icons/checkmark-gray-v2.svg similarity index 100% rename from public/_static/img/icons/checkmark-gray-v2.svg rename to apps/scandic-web/public/_static/img/icons/checkmark-gray-v2.svg diff --git a/public/_static/img/icons/clear-input.png b/apps/scandic-web/public/_static/img/icons/clear-input.png similarity index 100% rename from public/_static/img/icons/clear-input.png rename to apps/scandic-web/public/_static/img/icons/clear-input.png diff --git a/public/_static/img/icons/close-button-white.svg b/apps/scandic-web/public/_static/img/icons/close-button-white.svg similarity index 100% rename from public/_static/img/icons/close-button-white.svg rename to apps/scandic-web/public/_static/img/icons/close-button-white.svg diff --git a/public/_static/img/icons/close-button.svg b/apps/scandic-web/public/_static/img/icons/close-button.svg similarity index 100% rename from public/_static/img/icons/close-button.svg rename to apps/scandic-web/public/_static/img/icons/close-button.svg diff --git a/public/_static/img/icons/close-circle-red.svg b/apps/scandic-web/public/_static/img/icons/close-circle-red.svg similarity index 100% rename from public/_static/img/icons/close-circle-red.svg rename to apps/scandic-web/public/_static/img/icons/close-circle-red.svg diff --git a/public/_static/img/icons/error.png b/apps/scandic-web/public/_static/img/icons/error.png similarity index 100% rename from public/_static/img/icons/error.png rename to apps/scandic-web/public/_static/img/icons/error.png diff --git a/public/_static/img/icons/eye-icon.svg b/apps/scandic-web/public/_static/img/icons/eye-icon.svg similarity index 100% rename from public/_static/img/icons/eye-icon.svg rename to apps/scandic-web/public/_static/img/icons/eye-icon.svg diff --git a/public/_static/img/icons/eye-show.svg b/apps/scandic-web/public/_static/img/icons/eye-show.svg similarity index 100% rename from public/_static/img/icons/eye-show.svg rename to apps/scandic-web/public/_static/img/icons/eye-show.svg diff --git a/public/_static/img/icons/eye-slash-icon.svg b/apps/scandic-web/public/_static/img/icons/eye-slash-icon.svg similarity index 100% rename from public/_static/img/icons/eye-slash-icon.svg rename to apps/scandic-web/public/_static/img/icons/eye-slash-icon.svg diff --git a/public/_static/img/icons/gallery/icon-close-active-v2.png b/apps/scandic-web/public/_static/img/icons/gallery/icon-close-active-v2.png similarity index 100% rename from public/_static/img/icons/gallery/icon-close-active-v2.png rename to apps/scandic-web/public/_static/img/icons/gallery/icon-close-active-v2.png diff --git a/public/_static/img/icons/gallery/icon-close-v2.png b/apps/scandic-web/public/_static/img/icons/gallery/icon-close-v2.png similarity index 100% rename from public/_static/img/icons/gallery/icon-close-v2.png rename to apps/scandic-web/public/_static/img/icons/gallery/icon-close-v2.png diff --git a/public/_static/img/icons/hotelpage/arrow-double-big-v2.svg b/apps/scandic-web/public/_static/img/icons/hotelpage/arrow-double-big-v2.svg similarity index 100% rename from public/_static/img/icons/hotelpage/arrow-double-big-v2.svg rename to apps/scandic-web/public/_static/img/icons/hotelpage/arrow-double-big-v2.svg diff --git a/public/_static/img/icons/hotelpage/dropdown-collapse.png b/apps/scandic-web/public/_static/img/icons/hotelpage/dropdown-collapse.png similarity index 100% rename from public/_static/img/icons/hotelpage/dropdown-collapse.png rename to apps/scandic-web/public/_static/img/icons/hotelpage/dropdown-collapse.png diff --git a/public/_static/img/icons/hotelpage/dropdown-expand.png b/apps/scandic-web/public/_static/img/icons/hotelpage/dropdown-expand.png similarity index 100% rename from public/_static/img/icons/hotelpage/dropdown-expand.png rename to apps/scandic-web/public/_static/img/icons/hotelpage/dropdown-expand.png diff --git a/public/_static/img/icons/hotelpage/filter.svg b/apps/scandic-web/public/_static/img/icons/hotelpage/filter.svg similarity index 100% rename from public/_static/img/icons/hotelpage/filter.svg rename to apps/scandic-web/public/_static/img/icons/hotelpage/filter.svg diff --git a/public/_static/img/icons/icon-question-white.svg b/apps/scandic-web/public/_static/img/icons/icon-question-white.svg similarity index 100% rename from public/_static/img/icons/icon-question-white.svg rename to apps/scandic-web/public/_static/img/icons/icon-question-white.svg diff --git a/public/_static/img/icons/info-circle.svg b/apps/scandic-web/public/_static/img/icons/info-circle.svg similarity index 100% rename from public/_static/img/icons/info-circle.svg rename to apps/scandic-web/public/_static/img/icons/info-circle.svg diff --git a/public/_static/img/icons/info-dark.svg b/apps/scandic-web/public/_static/img/icons/info-dark.svg similarity index 100% rename from public/_static/img/icons/info-dark.svg rename to apps/scandic-web/public/_static/img/icons/info-dark.svg diff --git a/public/_static/img/icons/info-white.svg b/apps/scandic-web/public/_static/img/icons/info-white.svg similarity index 100% rename from public/_static/img/icons/info-white.svg rename to apps/scandic-web/public/_static/img/icons/info-white.svg diff --git a/public/_static/img/icons/map/magnifying-ico-v2.svg b/apps/scandic-web/public/_static/img/icons/map/magnifying-ico-v2.svg similarity index 100% rename from public/_static/img/icons/map/magnifying-ico-v2.svg rename to apps/scandic-web/public/_static/img/icons/map/magnifying-ico-v2.svg diff --git a/public/_static/img/icons/map/magnifying-minus-ico-v2.svg b/apps/scandic-web/public/_static/img/icons/map/magnifying-minus-ico-v2.svg similarity index 100% rename from public/_static/img/icons/map/magnifying-minus-ico-v2.svg rename to apps/scandic-web/public/_static/img/icons/map/magnifying-minus-ico-v2.svg diff --git a/public/_static/img/icons/map/map-airport-v2.png b/apps/scandic-web/public/_static/img/icons/map/map-airport-v2.png similarity index 100% rename from public/_static/img/icons/map/map-airport-v2.png rename to apps/scandic-web/public/_static/img/icons/map/map-airport-v2.png diff --git a/public/_static/img/icons/map/map-attraction.png b/apps/scandic-web/public/_static/img/icons/map/map-attraction.png similarity index 100% rename from public/_static/img/icons/map/map-attraction.png rename to apps/scandic-web/public/_static/img/icons/map/map-attraction.png diff --git a/public/_static/img/icons/map/map-bar.png b/apps/scandic-web/public/_static/img/icons/map/map-bar.png similarity index 100% rename from public/_static/img/icons/map/map-bar.png rename to apps/scandic-web/public/_static/img/icons/map/map-bar.png diff --git a/public/_static/img/icons/map/map-busstation-v2.png b/apps/scandic-web/public/_static/img/icons/map/map-busstation-v2.png similarity index 100% rename from public/_static/img/icons/map/map-busstation-v2.png rename to apps/scandic-web/public/_static/img/icons/map/map-busstation-v2.png diff --git a/public/_static/img/icons/map/map-city-center.png b/apps/scandic-web/public/_static/img/icons/map/map-city-center.png similarity index 100% rename from public/_static/img/icons/map/map-city-center.png rename to apps/scandic-web/public/_static/img/icons/map/map-city-center.png diff --git a/public/_static/img/icons/map/map-company.png b/apps/scandic-web/public/_static/img/icons/map/map-company.png similarity index 100% rename from public/_static/img/icons/map/map-company.png rename to apps/scandic-web/public/_static/img/icons/map/map-company.png diff --git a/public/_static/img/icons/map/map-default.png b/apps/scandic-web/public/_static/img/icons/map/map-default.png similarity index 100% rename from public/_static/img/icons/map/map-default.png rename to apps/scandic-web/public/_static/img/icons/map/map-default.png diff --git a/public/_static/img/icons/map/map-entertainment.png b/apps/scandic-web/public/_static/img/icons/map/map-entertainment.png similarity index 100% rename from public/_static/img/icons/map/map-entertainment.png rename to apps/scandic-web/public/_static/img/icons/map/map-entertainment.png diff --git a/public/_static/img/icons/map/map-museum.png b/apps/scandic-web/public/_static/img/icons/map/map-museum.png similarity index 100% rename from public/_static/img/icons/map/map-museum.png rename to apps/scandic-web/public/_static/img/icons/map/map-museum.png diff --git a/public/_static/img/icons/map/map-music.png b/apps/scandic-web/public/_static/img/icons/map/map-music.png similarity index 100% rename from public/_static/img/icons/map/map-music.png rename to apps/scandic-web/public/_static/img/icons/map/map-music.png diff --git a/public/_static/img/icons/map/map-pin-dd-blue.png b/apps/scandic-web/public/_static/img/icons/map/map-pin-dd-blue.png similarity index 100% rename from public/_static/img/icons/map/map-pin-dd-blue.png rename to apps/scandic-web/public/_static/img/icons/map/map-pin-dd-blue.png diff --git a/public/_static/img/icons/map/map-pin-dd-gray.png b/apps/scandic-web/public/_static/img/icons/map/map-pin-dd-gray.png similarity index 100% rename from public/_static/img/icons/map/map-pin-dd-gray.png rename to apps/scandic-web/public/_static/img/icons/map/map-pin-dd-gray.png diff --git a/public/_static/img/icons/map/map-pin-dd-lightgray.png b/apps/scandic-web/public/_static/img/icons/map/map-pin-dd-lightgray.png similarity index 100% rename from public/_static/img/icons/map/map-pin-dd-lightgray.png rename to apps/scandic-web/public/_static/img/icons/map/map-pin-dd-lightgray.png diff --git a/public/_static/img/icons/map/map-pin.png b/apps/scandic-web/public/_static/img/icons/map/map-pin.png similarity index 100% rename from public/_static/img/icons/map/map-pin.png rename to apps/scandic-web/public/_static/img/icons/map/map-pin.png diff --git a/public/_static/img/icons/map/map-restaurant.png b/apps/scandic-web/public/_static/img/icons/map/map-restaurant.png similarity index 100% rename from public/_static/img/icons/map/map-restaurant.png rename to apps/scandic-web/public/_static/img/icons/map/map-restaurant.png diff --git a/public/_static/img/icons/map/map-shopping.png b/apps/scandic-web/public/_static/img/icons/map/map-shopping.png similarity index 100% rename from public/_static/img/icons/map/map-shopping.png rename to apps/scandic-web/public/_static/img/icons/map/map-shopping.png diff --git a/public/_static/img/icons/map/map-star.png b/apps/scandic-web/public/_static/img/icons/map/map-star.png similarity index 100% rename from public/_static/img/icons/map/map-star.png rename to apps/scandic-web/public/_static/img/icons/map/map-star.png diff --git a/public/_static/img/icons/map/map-taxi-v2.png b/apps/scandic-web/public/_static/img/icons/map/map-taxi-v2.png similarity index 100% rename from public/_static/img/icons/map/map-taxi-v2.png rename to apps/scandic-web/public/_static/img/icons/map/map-taxi-v2.png diff --git a/public/_static/img/icons/map/map-theatre.png b/apps/scandic-web/public/_static/img/icons/map/map-theatre.png similarity index 100% rename from public/_static/img/icons/map/map-theatre.png rename to apps/scandic-web/public/_static/img/icons/map/map-theatre.png diff --git a/public/_static/img/icons/map/map-trains-v2.png b/apps/scandic-web/public/_static/img/icons/map/map-trains-v2.png similarity index 100% rename from public/_static/img/icons/map/map-trains-v2.png rename to apps/scandic-web/public/_static/img/icons/map/map-trains-v2.png diff --git a/public/_static/img/icons/map/map-transportation-v2.png b/apps/scandic-web/public/_static/img/icons/map/map-transportation-v2.png similarity index 100% rename from public/_static/img/icons/map/map-transportation-v2.png rename to apps/scandic-web/public/_static/img/icons/map/map-transportation-v2.png diff --git a/public/_static/img/icons/map/pin_shadow.png b/apps/scandic-web/public/_static/img/icons/map/pin_shadow.png similarity index 100% rename from public/_static/img/icons/map/pin_shadow.png rename to apps/scandic-web/public/_static/img/icons/map/pin_shadow.png diff --git a/public/_static/img/icons/map/zoom-in-v2.png b/apps/scandic-web/public/_static/img/icons/map/zoom-in-v2.png similarity index 100% rename from public/_static/img/icons/map/zoom-in-v2.png rename to apps/scandic-web/public/_static/img/icons/map/zoom-in-v2.png diff --git a/public/_static/img/icons/map/zoom-out-v2.png b/apps/scandic-web/public/_static/img/icons/map/zoom-out-v2.png similarity index 100% rename from public/_static/img/icons/map/zoom-out-v2.png rename to apps/scandic-web/public/_static/img/icons/map/zoom-out-v2.png diff --git a/public/_static/img/icons/not-allowed-cursor.png b/apps/scandic-web/public/_static/img/icons/not-allowed-cursor.png similarity index 100% rename from public/_static/img/icons/not-allowed-cursor.png rename to apps/scandic-web/public/_static/img/icons/not-allowed-cursor.png diff --git a/public/_static/img/icons/payment/Amex.svg b/apps/scandic-web/public/_static/img/icons/payment/Amex.svg similarity index 100% rename from public/_static/img/icons/payment/Amex.svg rename to apps/scandic-web/public/_static/img/icons/payment/Amex.svg diff --git a/public/_static/img/icons/payment/ChinaUnionPay.svg b/apps/scandic-web/public/_static/img/icons/payment/ChinaUnionPay.svg similarity index 100% rename from public/_static/img/icons/payment/ChinaUnionPay.svg rename to apps/scandic-web/public/_static/img/icons/payment/ChinaUnionPay.svg diff --git a/public/_static/img/icons/payment/Dankort.svg b/apps/scandic-web/public/_static/img/icons/payment/Dankort.svg similarity index 100% rename from public/_static/img/icons/payment/Dankort.svg rename to apps/scandic-web/public/_static/img/icons/payment/Dankort.svg diff --git a/public/_static/img/icons/payment/DinersClub.svg b/apps/scandic-web/public/_static/img/icons/payment/DinersClub.svg similarity index 100% rename from public/_static/img/icons/payment/DinersClub.svg rename to apps/scandic-web/public/_static/img/icons/payment/DinersClub.svg diff --git a/public/_static/img/icons/payment/Discover.svg b/apps/scandic-web/public/_static/img/icons/payment/Discover.svg similarity index 100% rename from public/_static/img/icons/payment/Discover.svg rename to apps/scandic-web/public/_static/img/icons/payment/Discover.svg diff --git a/public/_static/img/icons/payment/GenericCard.svg b/apps/scandic-web/public/_static/img/icons/payment/GenericCard.svg similarity index 100% rename from public/_static/img/icons/payment/GenericCard.svg rename to apps/scandic-web/public/_static/img/icons/payment/GenericCard.svg diff --git a/public/_static/img/icons/payment/JCB.svg b/apps/scandic-web/public/_static/img/icons/payment/JCB.svg similarity index 100% rename from public/_static/img/icons/payment/JCB.svg rename to apps/scandic-web/public/_static/img/icons/payment/JCB.svg diff --git a/public/_static/img/icons/payment/Maestro.svg b/apps/scandic-web/public/_static/img/icons/payment/Maestro.svg similarity index 100% rename from public/_static/img/icons/payment/Maestro.svg rename to apps/scandic-web/public/_static/img/icons/payment/Maestro.svg diff --git a/public/_static/img/icons/payment/MasterCard.svg b/apps/scandic-web/public/_static/img/icons/payment/MasterCard.svg similarity index 100% rename from public/_static/img/icons/payment/MasterCard.svg rename to apps/scandic-web/public/_static/img/icons/payment/MasterCard.svg diff --git a/public/_static/img/icons/payment/Visa.svg b/apps/scandic-web/public/_static/img/icons/payment/Visa.svg similarity index 100% rename from public/_static/img/icons/payment/Visa.svg rename to apps/scandic-web/public/_static/img/icons/payment/Visa.svg diff --git a/public/_static/img/icons/printer-v2.png b/apps/scandic-web/public/_static/img/icons/printer-v2.png similarity index 100% rename from public/_static/img/icons/printer-v2.png rename to apps/scandic-web/public/_static/img/icons/printer-v2.png diff --git a/public/_static/img/icons/profile-icon.png b/apps/scandic-web/public/_static/img/icons/profile-icon.png similarity index 100% rename from public/_static/img/icons/profile-icon.png rename to apps/scandic-web/public/_static/img/icons/profile-icon.png diff --git a/public/_static/img/icons/scandic-friends/icon-scandic-friends.svg b/apps/scandic-web/public/_static/img/icons/scandic-friends/icon-scandic-friends.svg similarity index 100% rename from public/_static/img/icons/scandic-friends/icon-scandic-friends.svg rename to apps/scandic-web/public/_static/img/icons/scandic-friends/icon-scandic-friends.svg diff --git a/public/_static/img/icons/search/arrow-collapse.png b/apps/scandic-web/public/_static/img/icons/search/arrow-collapse.png similarity index 100% rename from public/_static/img/icons/search/arrow-collapse.png rename to apps/scandic-web/public/_static/img/icons/search/arrow-collapse.png diff --git a/public/_static/img/icons/search/arrow-expand.png b/apps/scandic-web/public/_static/img/icons/search/arrow-expand.png similarity index 100% rename from public/_static/img/icons/search/arrow-expand.png rename to apps/scandic-web/public/_static/img/icons/search/arrow-expand.png diff --git a/public/_static/img/icons/search/search.svg b/apps/scandic-web/public/_static/img/icons/search/search.svg similarity index 100% rename from public/_static/img/icons/search/search.svg rename to apps/scandic-web/public/_static/img/icons/search/search.svg diff --git a/public/_static/img/icons/shared/arrow-double-big-crocus-v2.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-big-crocus-v2.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-big-crocus-v2.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-big-crocus-v2.svg diff --git a/public/_static/img/icons/shared/arrow-double-nordicsea-dark-right.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-dark-right.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-nordicsea-dark-right.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-dark-right.svg diff --git a/public/_static/img/icons/shared/arrow-double-nordicsea-left-v2.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-left-v2.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-nordicsea-left-v2.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-left-v2.svg diff --git a/public/_static/img/icons/shared/arrow-double-nordicsea-right-v2.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-right-v2.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-nordicsea-right-v2.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-right-v2.svg diff --git a/public/_static/img/icons/shared/arrow-double-nordicsea-right-white.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-right-white.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-nordicsea-right-white.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-nordicsea-right-white.svg diff --git a/public/_static/img/icons/shared/arrow-double-white-left.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-double-white-left.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-double-white-left.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-double-white-left.svg diff --git a/public/_static/img/icons/shared/arrow-down-grey.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-down-grey.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-down-grey.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-down-grey.svg diff --git a/public/_static/img/icons/shared/arrow-down-v2.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-down-v2.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-down-v2.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-down-v2.svg diff --git a/public/_static/img/icons/shared/arrow-down-white.svg b/apps/scandic-web/public/_static/img/icons/shared/arrow-down-white.svg similarity index 100% rename from public/_static/img/icons/shared/arrow-down-white.svg rename to apps/scandic-web/public/_static/img/icons/shared/arrow-down-white.svg diff --git a/public/_static/img/icons/shared/cancel-close.svg b/apps/scandic-web/public/_static/img/icons/shared/cancel-close.svg similarity index 100% rename from public/_static/img/icons/shared/cancel-close.svg rename to apps/scandic-web/public/_static/img/icons/shared/cancel-close.svg diff --git a/public/_static/img/icons/shared/checkBox.svg b/apps/scandic-web/public/_static/img/icons/shared/checkBox.svg similarity index 100% rename from public/_static/img/icons/shared/checkBox.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkBox.svg diff --git a/public/_static/img/icons/shared/checkBoxFilled.svg b/apps/scandic-web/public/_static/img/icons/shared/checkBoxFilled.svg similarity index 100% rename from public/_static/img/icons/shared/checkBoxFilled.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkBoxFilled.svg diff --git a/public/_static/img/icons/shared/checkbox_brown.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_brown.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_brown.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_brown.svg diff --git a/public/_static/img/icons/shared/checkbox_brown_selected.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_brown_selected.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_brown_selected.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_brown_selected.svg diff --git a/public/_static/img/icons/shared/checkbox_disabled.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_disabled.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_disabled.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_disabled.svg diff --git a/public/_static/img/icons/shared/checkbox_selected.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_selected.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_selected.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_selected.svg diff --git a/public/_static/img/icons/shared/checkbox_unselected-disabled.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_unselected-disabled.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_unselected-disabled.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_unselected-disabled.svg diff --git a/public/_static/img/icons/shared/checkbox_unselected.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_unselected.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_unselected.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_unselected.svg diff --git a/public/_static/img/icons/shared/checkbox_white_border.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_white_border.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_white_border.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_white_border.svg diff --git a/public/_static/img/icons/shared/checkbox_white_selected.svg b/apps/scandic-web/public/_static/img/icons/shared/checkbox_white_selected.svg similarity index 100% rename from public/_static/img/icons/shared/checkbox_white_selected.svg rename to apps/scandic-web/public/_static/img/icons/shared/checkbox_white_selected.svg diff --git a/public/_static/img/icons/shared/close-button.svg b/apps/scandic-web/public/_static/img/icons/shared/close-button.svg similarity index 100% rename from public/_static/img/icons/shared/close-button.svg rename to apps/scandic-web/public/_static/img/icons/shared/close-button.svg diff --git a/public/_static/img/icons/shared/price-tag.svg b/apps/scandic-web/public/_static/img/icons/shared/price-tag.svg similarity index 100% rename from public/_static/img/icons/shared/price-tag.svg rename to apps/scandic-web/public/_static/img/icons/shared/price-tag.svg diff --git a/public/_static/img/icons/shared/video-icon.png b/apps/scandic-web/public/_static/img/icons/shared/video-icon.png similarity index 100% rename from public/_static/img/icons/shared/video-icon.png rename to apps/scandic-web/public/_static/img/icons/shared/video-icon.png diff --git a/public/_static/img/icons/splash/blue-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/blue-v2.svg similarity index 100% rename from public/_static/img/icons/splash/blue-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/blue-v2.svg diff --git a/public/_static/img/icons/splash/brown-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/brown-v2.svg similarity index 100% rename from public/_static/img/icons/splash/brown-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/brown-v2.svg diff --git a/public/_static/img/icons/splash/green-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/green-v2.svg similarity index 100% rename from public/_static/img/icons/splash/green-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/green-v2.svg diff --git a/public/_static/img/icons/splash/grey-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/grey-v2.svg similarity index 100% rename from public/_static/img/icons/splash/grey-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/grey-v2.svg diff --git a/public/_static/img/icons/splash/light-green.svg b/apps/scandic-web/public/_static/img/icons/splash/light-green.svg similarity index 100% rename from public/_static/img/icons/splash/light-green.svg rename to apps/scandic-web/public/_static/img/icons/splash/light-green.svg diff --git a/public/_static/img/icons/splash/orange-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/orange-v2.svg similarity index 100% rename from public/_static/img/icons/splash/orange-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/orange-v2.svg diff --git a/public/_static/img/icons/splash/purple-v2.svg b/apps/scandic-web/public/_static/img/icons/splash/purple-v2.svg similarity index 100% rename from public/_static/img/icons/splash/purple-v2.svg rename to apps/scandic-web/public/_static/img/icons/splash/purple-v2.svg diff --git a/public/_static/img/icons/splash/red.svg b/apps/scandic-web/public/_static/img/icons/splash/red.svg similarity index 100% rename from public/_static/img/icons/splash/red.svg rename to apps/scandic-web/public/_static/img/icons/splash/red.svg diff --git a/public/_static/img/icons/sprites.svg b/apps/scandic-web/public/_static/img/icons/sprites.svg similarity index 100% rename from public/_static/img/icons/sprites.svg rename to apps/scandic-web/public/_static/img/icons/sprites.svg diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_da.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_da.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_da.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_da.png diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_de.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_de.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_de.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_de.png diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_en.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_en.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_en.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_en.png diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_fi.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_fi.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_fi.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_fi.png diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_no.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_no.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_no.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_no.png diff --git a/public/_static/img/icons/swan-eco/swan_eco_dark_sv.png b/apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_sv.png similarity index 100% rename from public/_static/img/icons/swan-eco/swan_eco_dark_sv.png rename to apps/scandic-web/public/_static/img/icons/swan-eco/swan_eco_dark_sv.png diff --git a/public/_static/img/icons/warning-alert-gray.svg b/apps/scandic-web/public/_static/img/icons/warning-alert-gray.svg similarity index 100% rename from public/_static/img/icons/warning-alert-gray.svg rename to apps/scandic-web/public/_static/img/icons/warning-alert-gray.svg diff --git a/public/_static/img/icons/warning-alert-red.svg b/apps/scandic-web/public/_static/img/icons/warning-alert-red.svg similarity index 100% rename from public/_static/img/icons/warning-alert-red.svg rename to apps/scandic-web/public/_static/img/icons/warning-alert-red.svg diff --git a/public/_static/img/icons/warning.svg b/apps/scandic-web/public/_static/img/icons/warning.svg similarity index 100% rename from public/_static/img/icons/warning.svg rename to apps/scandic-web/public/_static/img/icons/warning.svg diff --git a/public/_static/img/icons/x-icon.svg b/apps/scandic-web/public/_static/img/icons/x-icon.svg similarity index 100% rename from public/_static/img/icons/x-icon.svg rename to apps/scandic-web/public/_static/img/icons/x-icon.svg diff --git a/public/_static/img/member-banner-pattern.svg b/apps/scandic-web/public/_static/img/member-banner-pattern.svg similarity index 100% rename from public/_static/img/member-banner-pattern.svg rename to apps/scandic-web/public/_static/img/member-banner-pattern.svg diff --git a/public/_static/img/partner/sas/sas-campaign-logo.png b/apps/scandic-web/public/_static/img/partner/sas/sas-campaign-logo.png similarity index 100% rename from public/_static/img/partner/sas/sas-campaign-logo.png rename to apps/scandic-web/public/_static/img/partner/sas/sas-campaign-logo.png diff --git a/public/_static/img/partner/sas/sas_x_scandic_airplane_window_background.jpg b/apps/scandic-web/public/_static/img/partner/sas/sas_x_scandic_airplane_window_background.jpg similarity index 100% rename from public/_static/img/partner/sas/sas_x_scandic_airplane_window_background.jpg rename to apps/scandic-web/public/_static/img/partner/sas/sas_x_scandic_airplane_window_background.jpg diff --git a/public/_static/img/rewards/loyalty-award.png b/apps/scandic-web/public/_static/img/rewards/loyalty-award.png similarity index 100% rename from public/_static/img/rewards/loyalty-award.png rename to apps/scandic-web/public/_static/img/rewards/loyalty-award.png diff --git a/public/_static/img/royalslider/custom/arrow-right-hover.svg b/apps/scandic-web/public/_static/img/royalslider/custom/arrow-right-hover.svg similarity index 100% rename from public/_static/img/royalslider/custom/arrow-right-hover.svg rename to apps/scandic-web/public/_static/img/royalslider/custom/arrow-right-hover.svg diff --git a/public/_static/img/royalslider/custom/arrow-right.svg b/apps/scandic-web/public/_static/img/royalslider/custom/arrow-right.svg similarity index 100% rename from public/_static/img/royalslider/custom/arrow-right.svg rename to apps/scandic-web/public/_static/img/royalslider/custom/arrow-right.svg diff --git a/public/_static/img/royalslider/grab.png b/apps/scandic-web/public/_static/img/royalslider/grab.png similarity index 100% rename from public/_static/img/royalslider/grab.png rename to apps/scandic-web/public/_static/img/royalslider/grab.png diff --git a/public/_static/img/royalslider/grabbing.png b/apps/scandic-web/public/_static/img/royalslider/grabbing.png similarity index 100% rename from public/_static/img/royalslider/grabbing.png rename to apps/scandic-web/public/_static/img/royalslider/grabbing.png diff --git a/public/_static/img/royalslider/preloader-white.gif b/apps/scandic-web/public/_static/img/royalslider/preloader-white.gif similarity index 100% rename from public/_static/img/royalslider/preloader-white.gif rename to apps/scandic-web/public/_static/img/royalslider/preloader-white.gif diff --git a/public/_static/img/royalslider/preloader.gif b/apps/scandic-web/public/_static/img/royalslider/preloader.gif similarity index 100% rename from public/_static/img/royalslider/preloader.gif rename to apps/scandic-web/public/_static/img/royalslider/preloader.gif diff --git a/public/_static/img/royalslider/rs-default.png b/apps/scandic-web/public/_static/img/royalslider/rs-default.png similarity index 100% rename from public/_static/img/royalslider/rs-default.png rename to apps/scandic-web/public/_static/img/royalslider/rs-default.png diff --git a/public/_static/img/sas/sas-logotype.svg b/apps/scandic-web/public/_static/img/sas/sas-logotype.svg similarity index 100% rename from public/_static/img/sas/sas-logotype.svg rename to apps/scandic-web/public/_static/img/sas/sas-logotype.svg diff --git a/public/_static/img/scandic-coin.svg b/apps/scandic-web/public/_static/img/scandic-coin.svg similarity index 100% rename from public/_static/img/scandic-coin.svg rename to apps/scandic-web/public/_static/img/scandic-coin.svg diff --git a/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.png b/apps/scandic-web/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.png similarity index 100% rename from public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.png rename to apps/scandic-web/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.png diff --git a/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.svg b/apps/scandic-web/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.svg similarity index 100% rename from public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.svg rename to apps/scandic-web/public/_static/img/scandic-friends-pattern/bg-scandic-friends-pattern.svg diff --git a/public/_static/img/scandic-logotype-white.png b/apps/scandic-web/public/_static/img/scandic-logotype-white.png similarity index 100% rename from public/_static/img/scandic-logotype-white.png rename to apps/scandic-web/public/_static/img/scandic-logotype-white.png diff --git a/public/_static/img/scandic-logotype-white.svg b/apps/scandic-web/public/_static/img/scandic-logotype-white.svg similarity index 100% rename from public/_static/img/scandic-logotype-white.svg rename to apps/scandic-web/public/_static/img/scandic-logotype-white.svg diff --git a/public/_static/img/scandic-logotype.png b/apps/scandic-web/public/_static/img/scandic-logotype.png similarity index 100% rename from public/_static/img/scandic-logotype.png rename to apps/scandic-web/public/_static/img/scandic-logotype.png diff --git a/public/_static/img/scandic-logotype.svg b/apps/scandic-web/public/_static/img/scandic-logotype.svg similarity index 100% rename from public/_static/img/scandic-logotype.svg rename to apps/scandic-web/public/_static/img/scandic-logotype.svg diff --git a/public/_static/img/scandic-loyalty-time.svg b/apps/scandic-web/public/_static/img/scandic-loyalty-time.svg similarity index 100% rename from public/_static/img/scandic-loyalty-time.svg rename to apps/scandic-web/public/_static/img/scandic-loyalty-time.svg diff --git a/public/_static/img/scandic-service.svg b/apps/scandic-web/public/_static/img/scandic-service.svg similarity index 100% rename from public/_static/img/scandic-service.svg rename to apps/scandic-web/public/_static/img/scandic-service.svg diff --git a/public/_static/img/signaturehotels/carousel-arrow-gray-right-hover.svg b/apps/scandic-web/public/_static/img/signaturehotels/carousel-arrow-gray-right-hover.svg similarity index 100% rename from public/_static/img/signaturehotels/carousel-arrow-gray-right-hover.svg rename to apps/scandic-web/public/_static/img/signaturehotels/carousel-arrow-gray-right-hover.svg diff --git a/public/_static/img/signaturehotels/carousel-arrow-gray-right.svg b/apps/scandic-web/public/_static/img/signaturehotels/carousel-arrow-gray-right.svg similarity index 100% rename from public/_static/img/signaturehotels/carousel-arrow-gray-right.svg rename to apps/scandic-web/public/_static/img/signaturehotels/carousel-arrow-gray-right.svg diff --git a/public/_static/img/signaturehotels/dc/arrow-double-big-black.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-big-black.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/arrow-double-big-black.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-big-black.svg diff --git a/public/_static/img/signaturehotels/dc/arrow-double-big-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-big-white.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/arrow-double-big-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-big-white.svg diff --git a/public/_static/img/signaturehotels/dc/arrow-double-rust-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-rust-left.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/arrow-double-rust-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-double-rust-left.svg diff --git a/public/_static/img/signaturehotels/dc/arrow-down-gray.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-down-gray.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/arrow-down-gray.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-down-gray.svg diff --git a/public/_static/img/signaturehotels/dc/arrow-down-rust.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-down-rust.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/arrow-down-rust.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/arrow-down-rust.svg diff --git a/public/_static/img/signaturehotels/dc/bullet-list-arrow-icon-gray-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/bullet-list-arrow-icon-gray-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/bullet-list-arrow-icon-gray-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/bullet-list-arrow-icon-gray-dark.svg diff --git a/public/_static/img/signaturehotels/dc/downtown-camper-logotype.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/downtown-camper-logotype.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/downtown-camper-logotype.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/downtown-camper-logotype.svg diff --git a/public/_static/img/signaturehotels/dc/hotelpage-menu-close-gray-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/hotelpage-menu-close-gray-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/hotelpage-menu-close-gray-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/hotelpage-menu-close-gray-dark.svg diff --git a/public/_static/img/signaturehotels/dc/hotelpage-menu-gray-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/hotelpage-menu-gray-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/hotelpage-menu-gray-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/hotelpage-menu-gray-dark.svg diff --git a/public/_static/img/signaturehotels/dc/icon-google-directions.svg b/apps/scandic-web/public/_static/img/signaturehotels/dc/icon-google-directions.svg similarity index 100% rename from public/_static/img/signaturehotels/dc/icon-google-directions.svg rename to apps/scandic-web/public/_static/img/signaturehotels/dc/icon-google-directions.svg diff --git a/public/_static/img/signaturehotels/gc/arrow-double-big-gray.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-double-big-gray.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/arrow-double-big-gray.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-double-big-gray.svg diff --git a/public/_static/img/signaturehotels/gc/arrow-double-gray-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-double-gray-left.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/arrow-double-gray-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-double-gray-left.svg diff --git a/public/_static/img/signaturehotels/gc/arrow-down-gray-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-down-gray-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/arrow-down-gray-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-down-gray-dark.svg diff --git a/public/_static/img/signaturehotels/gc/arrow-down-white-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-down-white-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/arrow-down-white-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/arrow-down-white-dark.svg diff --git a/public/_static/img/signaturehotels/gc/bag.png b/apps/scandic-web/public/_static/img/signaturehotels/gc/bag.png similarity index 100% rename from public/_static/img/signaturehotels/gc/bag.png rename to apps/scandic-web/public/_static/img/signaturehotels/gc/bag.png diff --git a/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-black.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-black.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-black.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-black.svg diff --git a/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-white-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-white-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-white-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/bullet-list-arrow-circle-white-dark.svg diff --git a/public/_static/img/signaturehotels/gc/checkbox-black.png b/apps/scandic-web/public/_static/img/signaturehotels/gc/checkbox-black.png similarity index 100% rename from public/_static/img/signaturehotels/gc/checkbox-black.png rename to apps/scandic-web/public/_static/img/signaturehotels/gc/checkbox-black.png diff --git a/public/_static/img/signaturehotels/gc/grandcentral-logotype.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/grandcentral-logotype.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/grandcentral-logotype.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/grandcentral-logotype.svg diff --git a/public/_static/img/signaturehotels/gc/hotelpage-menu-black.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-black.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/hotelpage-menu-black.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-black.svg diff --git a/public/_static/img/signaturehotels/gc/hotelpage-menu-close-black.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-close-black.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/hotelpage-menu-close-black.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-close-black.svg diff --git a/public/_static/img/signaturehotels/gc/hotelpage-menu-close-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-close-white.svg similarity index 100% rename from public/_static/img/signaturehotels/gc/hotelpage-menu-close-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gc/hotelpage-menu-close-white.svg diff --git a/public/_static/img/signaturehotels/gho/arrow-double-big-dark-grey.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-double-big-dark-grey.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/arrow-double-big-dark-grey.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-double-big-dark-grey.svg diff --git a/public/_static/img/signaturehotels/gho/arrow-double-dark-grey-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-double-dark-grey-left.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/arrow-double-dark-grey-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-double-dark-grey-left.svg diff --git a/public/_static/img/signaturehotels/gho/arrow-down-dark-grey.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-down-dark-grey.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/arrow-down-dark-grey.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-down-dark-grey.svg diff --git a/public/_static/img/signaturehotels/gho/arrow-down-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-down-white.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/arrow-down-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/arrow-down-white.svg diff --git a/public/_static/img/signaturehotels/gho/grandhoteloslo-logotype-horizontal-3.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/grandhoteloslo-logotype-horizontal-3.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/grandhoteloslo-logotype-horizontal-3.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/grandhoteloslo-logotype-horizontal-3.svg diff --git a/public/_static/img/signaturehotels/gho/hotelpage-menu-dark-grey.svg b/apps/scandic-web/public/_static/img/signaturehotels/gho/hotelpage-menu-dark-grey.svg similarity index 100% rename from public/_static/img/signaturehotels/gho/hotelpage-menu-dark-grey.svg rename to apps/scandic-web/public/_static/img/signaturehotels/gho/hotelpage-menu-dark-grey.svg diff --git a/public/_static/img/signaturehotels/gho/icon-close-dark-grey-active.png b/apps/scandic-web/public/_static/img/signaturehotels/gho/icon-close-dark-grey-active.png similarity index 100% rename from public/_static/img/signaturehotels/gho/icon-close-dark-grey-active.png rename to apps/scandic-web/public/_static/img/signaturehotels/gho/icon-close-dark-grey-active.png diff --git a/public/_static/img/signaturehotels/gho/icon-close-dark-grey.png b/apps/scandic-web/public/_static/img/signaturehotels/gho/icon-close-dark-grey.png similarity index 100% rename from public/_static/img/signaturehotels/gho/icon-close-dark-grey.png rename to apps/scandic-web/public/_static/img/signaturehotels/gho/icon-close-dark-grey.png diff --git a/public/_static/img/signaturehotels/haymarket/arrow-double-big-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-double-big-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/arrow-double-big-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-double-big-blue.svg diff --git a/public/_static/img/signaturehotels/haymarket/arrow-double-blue-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-double-blue-left.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/arrow-double-blue-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-double-blue-left.svg diff --git a/public/_static/img/signaturehotels/haymarket/arrow-down-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-down-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/arrow-down-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-down-blue.svg diff --git a/public/_static/img/signaturehotels/haymarket/arrow-down-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-down-white.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/arrow-down-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/arrow-down-white.svg diff --git a/public/_static/img/signaturehotels/haymarket/haymarket-logotype-horizontal.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/haymarket-logotype-horizontal.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/haymarket-logotype-horizontal.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/haymarket-logotype-horizontal.svg diff --git a/public/_static/img/signaturehotels/haymarket/hotelpage-menu-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/hotelpage-menu-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/haymarket/hotelpage-menu-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/hotelpage-menu-blue.svg diff --git a/public/_static/img/signaturehotels/haymarket/icon-close-blue-active.png b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/icon-close-blue-active.png similarity index 100% rename from public/_static/img/signaturehotels/haymarket/icon-close-blue-active.png rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/icon-close-blue-active.png diff --git a/public/_static/img/signaturehotels/haymarket/icon-close-blue.png b/apps/scandic-web/public/_static/img/signaturehotels/haymarket/icon-close-blue.png similarity index 100% rename from public/_static/img/signaturehotels/haymarket/icon-close-blue.png rename to apps/scandic-web/public/_static/img/signaturehotels/haymarket/icon-close-blue.png diff --git a/public/_static/img/signaturehotels/hn/arrow-double-blue-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-double-blue-left.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/arrow-double-blue-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-double-blue-left.svg diff --git a/public/_static/img/signaturehotels/hn/arrow-down-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/arrow-down-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-blue.svg diff --git a/public/_static/img/signaturehotels/hn/arrow-down-red.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-red.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/arrow-down-red.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-red.svg diff --git a/public/_static/img/signaturehotels/hn/arrow-down-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-white.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/arrow-down-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/arrow-down-white.svg diff --git a/public/_static/img/signaturehotels/hn/hotel-norge-horisontal-logo.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/hotel-norge-horisontal-logo.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/hotel-norge-horisontal-logo.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/hotel-norge-horisontal-logo.svg diff --git a/public/_static/img/signaturehotels/hn/hotelpage-menu-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/hotelpage-menu-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/hotelpage-menu-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/hotelpage-menu-blue.svg diff --git a/public/_static/img/signaturehotels/hn/icon-close-blue-active.png b/apps/scandic-web/public/_static/img/signaturehotels/hn/icon-close-blue-active.png similarity index 100% rename from public/_static/img/signaturehotels/hn/icon-close-blue-active.png rename to apps/scandic-web/public/_static/img/signaturehotels/hn/icon-close-blue-active.png diff --git a/public/_static/img/signaturehotels/hn/icon-close-blue.png b/apps/scandic-web/public/_static/img/signaturehotels/hn/icon-close-blue.png similarity index 100% rename from public/_static/img/signaturehotels/hn/icon-close-blue.png rename to apps/scandic-web/public/_static/img/signaturehotels/hn/icon-close-blue.png diff --git a/public/_static/img/signaturehotels/hn/icon-google-directions.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/icon-google-directions.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/icon-google-directions.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/icon-google-directions.svg diff --git a/public/_static/img/signaturehotels/hn/icon-location.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/icon-location.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/icon-location.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/icon-location.svg diff --git a/public/_static/img/signaturehotels/hn/icon-phone.svg b/apps/scandic-web/public/_static/img/signaturehotels/hn/icon-phone.svg similarity index 100% rename from public/_static/img/signaturehotels/hn/icon-phone.svg rename to apps/scandic-web/public/_static/img/signaturehotels/hn/icon-phone.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-down-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-down-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-blue.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-down-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-down-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-dark.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-down-gray.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-gray.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-down-gray.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down-gray.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-down.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-down.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-down.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-right-blue.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-blue.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-right-blue.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-blue.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-right-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-right-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-dark.svg diff --git a/public/_static/img/signaturehotels/marski/arrow-right-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-white.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/arrow-right-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/arrow-right-white.svg diff --git a/public/_static/img/signaturehotels/marski/hotelpage-menu-close-gray-dark.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/hotelpage-menu-close-gray-dark.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/hotelpage-menu-close-gray-dark.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/hotelpage-menu-close-gray-dark.svg diff --git a/public/_static/img/signaturehotels/marski/hotelpage-menu-close-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/hotelpage-menu-close-white.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/hotelpage-menu-close-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/hotelpage-menu-close-white.svg diff --git a/public/_static/img/signaturehotels/marski/icon-google-directions.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/icon-google-directions.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/icon-google-directions.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/icon-google-directions.svg diff --git a/public/_static/img/signaturehotels/marski/icon-location-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/icon-location-white.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/icon-location-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/icon-location-white.svg diff --git a/public/_static/img/signaturehotels/marski/icon-location.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/icon-location.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/icon-location.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/icon-location.svg diff --git a/public/_static/img/signaturehotels/marski/icon-mail.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/icon-mail.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/icon-mail.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/icon-mail.svg diff --git a/public/_static/img/signaturehotels/marski/icon-phone-white.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/icon-phone-white.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/icon-phone-white.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/icon-phone-white.svg diff --git a/public/_static/img/signaturehotels/marski/map/magnifying-ico.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/magnifying-ico.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/map/magnifying-ico.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/magnifying-ico.svg diff --git a/public/_static/img/signaturehotels/marski/map/magnifying-minus-ico.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/magnifying-minus-ico.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/map/magnifying-minus-ico.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/magnifying-minus-ico.svg diff --git a/public/_static/img/signaturehotels/marski/map/map-airport.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-airport.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-airport.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-airport.png diff --git a/public/_static/img/signaturehotels/marski/map/map-attraction.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-attraction.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-attraction.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-attraction.png diff --git a/public/_static/img/signaturehotels/marski/map/map-bar.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-bar.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-bar.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-bar.png diff --git a/public/_static/img/signaturehotels/marski/map/map-busstation.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-busstation.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-busstation.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-busstation.png diff --git a/public/_static/img/signaturehotels/marski/map/map-city-center.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-city-center.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-city-center.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-city-center.png diff --git a/public/_static/img/signaturehotels/marski/map/map-company.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-company.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-company.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-company.png diff --git a/public/_static/img/signaturehotels/marski/map/map-default.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-default.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-default.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-default.png diff --git a/public/_static/img/signaturehotels/marski/map/map-entertainment.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-entertainment.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-entertainment.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-entertainment.png diff --git a/public/_static/img/signaturehotels/marski/map/map-museum.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-museum.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-museum.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-museum.png diff --git a/public/_static/img/signaturehotels/marski/map/map-music.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-music.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-music.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-music.png diff --git a/public/_static/img/signaturehotels/marski/map/map-pin.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-pin.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-pin.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-pin.png diff --git a/public/_static/img/signaturehotels/marski/map/map-restaurant.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-restaurant.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-restaurant.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-restaurant.png diff --git a/public/_static/img/signaturehotels/marski/map/map-shopping.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-shopping.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-shopping.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-shopping.png diff --git a/public/_static/img/signaturehotels/marski/map/map-star.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-star.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-star.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-star.png diff --git a/public/_static/img/signaturehotels/marski/map/map-taxi.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-taxi.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-taxi.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-taxi.png diff --git a/public/_static/img/signaturehotels/marski/map/map-theatre.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-theatre.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-theatre.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-theatre.png diff --git a/public/_static/img/signaturehotels/marski/map/map-trains.png b/apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-trains.png similarity index 100% rename from public/_static/img/signaturehotels/marski/map/map-trains.png rename to apps/scandic-web/public/_static/img/signaturehotels/marski/map/map-trains.png diff --git a/public/_static/img/signaturehotels/marski/marski-logotype.svg b/apps/scandic-web/public/_static/img/signaturehotels/marski/marski-logotype.svg similarity index 100% rename from public/_static/img/signaturehotels/marski/marski-logotype.svg rename to apps/scandic-web/public/_static/img/signaturehotels/marski/marski-logotype.svg diff --git a/public/_static/img/signaturehotels/sc-go/add-circle-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/add-circle-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/add-circle-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/add-circle-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/arrow-double-dark-purple-left.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-double-dark-purple-left.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/arrow-double-dark-purple-left.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-double-dark-purple-left.svg diff --git a/public/_static/img/signaturehotels/sc-go/arrow-down-dark-purple.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-dark-purple.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/arrow-down-dark-purple.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-dark-purple.svg diff --git a/public/_static/img/signaturehotels/sc-go/arrow-down-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/arrow-down-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/arrow-down-light-purple.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-light-purple.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/arrow-down-light-purple.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/arrow-down-light-purple.svg diff --git a/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-dark-purple.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-dark-purple.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-dark-purple.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-dark-purple.svg diff --git a/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/bullet-list-arrow-circle-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/checkbox-light-green-checked.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/checkbox-light-green-checked.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/checkbox-light-green-checked.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/checkbox-light-green-checked.svg diff --git a/public/_static/img/signaturehotels/sc-go/checkbox-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/checkbox-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/checkbox-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/checkbox-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/cloud.png b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/cloud.png similarity index 100% rename from public/_static/img/signaturehotels/sc-go/cloud.png rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/cloud.png diff --git a/public/_static/img/signaturehotels/sc-go/directions-v2.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/directions-v2.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/directions-v2.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/directions-v2.svg diff --git a/public/_static/img/signaturehotels/sc-go/info-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/info-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/info-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/info-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/logo-v2.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/logo-v2.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/logo-v2.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/logo-v2.svg diff --git a/public/_static/img/signaturehotels/sc-go/remove-circle-light-green.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/remove-circle-light-green.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/remove-circle-light-green.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/remove-circle-light-green.svg diff --git a/public/_static/img/signaturehotels/sc-go/trajectory-bg.svg b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/trajectory-bg.svg similarity index 100% rename from public/_static/img/signaturehotels/sc-go/trajectory-bg.svg rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/trajectory-bg.svg diff --git a/public/_static/img/signaturehotels/sc-go/trajectory.png b/apps/scandic-web/public/_static/img/signaturehotels/sc-go/trajectory.png similarity index 100% rename from public/_static/img/signaturehotels/sc-go/trajectory.png rename to apps/scandic-web/public/_static/img/signaturehotels/sc-go/trajectory.png diff --git a/public/_static/img/slider/arrow.svg b/apps/scandic-web/public/_static/img/slider/arrow.svg similarity index 100% rename from public/_static/img/slider/arrow.svg rename to apps/scandic-web/public/_static/img/slider/arrow.svg diff --git a/public/_static/img/store-badges/app-store-badge-de.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-de.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-de.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-de.svg diff --git a/public/_static/img/store-badges/app-store-badge-dk.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-dk.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-dk.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-dk.svg diff --git a/public/_static/img/store-badges/app-store-badge-en.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-en.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-en.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-en.svg diff --git a/public/_static/img/store-badges/app-store-badge-fi.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-fi.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-fi.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-fi.svg diff --git a/public/_static/img/store-badges/app-store-badge-no.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-no.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-no.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-no.svg diff --git a/public/_static/img/store-badges/app-store-badge-se.svg b/apps/scandic-web/public/_static/img/store-badges/app-store-badge-se.svg similarity index 100% rename from public/_static/img/store-badges/app-store-badge-se.svg rename to apps/scandic-web/public/_static/img/store-badges/app-store-badge-se.svg diff --git a/public/_static/img/store-badges/google-play-badge-de.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-de.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-de.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-de.svg diff --git a/public/_static/img/store-badges/google-play-badge-dk.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-dk.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-dk.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-dk.svg diff --git a/public/_static/img/store-badges/google-play-badge-en.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-en.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-en.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-en.svg diff --git a/public/_static/img/store-badges/google-play-badge-fi.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-fi.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-fi.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-fi.svg diff --git a/public/_static/img/store-badges/google-play-badge-no.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-no.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-no.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-no.svg diff --git a/public/_static/img/store-badges/google-play-badge-se.svg b/apps/scandic-web/public/_static/img/store-badges/google-play-badge-se.svg similarity index 100% rename from public/_static/img/store-badges/google-play-badge-se.svg rename to apps/scandic-web/public/_static/img/store-badges/google-play-badge-se.svg diff --git a/public/_static/img/tripadvisor_logo_white_160x24.png b/apps/scandic-web/public/_static/img/tripadvisor_logo_white_160x24.png similarity index 100% rename from public/_static/img/tripadvisor_logo_white_160x24.png rename to apps/scandic-web/public/_static/img/tripadvisor_logo_white_160x24.png diff --git a/sentry.client.config.ts b/apps/scandic-web/sentry.client.config.ts similarity index 100% rename from sentry.client.config.ts rename to apps/scandic-web/sentry.client.config.ts diff --git a/sentry.edge.config.ts b/apps/scandic-web/sentry.edge.config.ts similarity index 100% rename from sentry.edge.config.ts rename to apps/scandic-web/sentry.edge.config.ts diff --git a/sentry.server.config.ts b/apps/scandic-web/sentry.server.config.ts similarity index 100% rename from sentry.server.config.ts rename to apps/scandic-web/sentry.server.config.ts diff --git a/sentry.shared.config.ts b/apps/scandic-web/sentry.shared.config.ts similarity index 100% rename from sentry.shared.config.ts rename to apps/scandic-web/sentry.shared.config.ts diff --git a/server/context.ts b/apps/scandic-web/server/context.ts similarity index 100% rename from server/context.ts rename to apps/scandic-web/server/context.ts diff --git a/server/errors/next.ts b/apps/scandic-web/server/errors/next.ts similarity index 100% rename from server/errors/next.ts rename to apps/scandic-web/server/errors/next.ts diff --git a/server/errors/trpc.ts b/apps/scandic-web/server/errors/trpc.ts similarity index 100% rename from server/errors/trpc.ts rename to apps/scandic-web/server/errors/trpc.ts diff --git a/server/index.ts b/apps/scandic-web/server/index.ts similarity index 100% rename from server/index.ts rename to apps/scandic-web/server/index.ts diff --git a/server/routers/booking/index.ts b/apps/scandic-web/server/routers/booking/index.ts similarity index 100% rename from server/routers/booking/index.ts rename to apps/scandic-web/server/routers/booking/index.ts diff --git a/server/routers/booking/input.ts b/apps/scandic-web/server/routers/booking/input.ts similarity index 100% rename from server/routers/booking/input.ts rename to apps/scandic-web/server/routers/booking/input.ts diff --git a/server/routers/booking/mutation.ts b/apps/scandic-web/server/routers/booking/mutation.ts similarity index 100% rename from server/routers/booking/mutation.ts rename to apps/scandic-web/server/routers/booking/mutation.ts diff --git a/server/routers/booking/output.ts b/apps/scandic-web/server/routers/booking/output.ts similarity index 100% rename from server/routers/booking/output.ts rename to apps/scandic-web/server/routers/booking/output.ts diff --git a/server/routers/booking/query.ts b/apps/scandic-web/server/routers/booking/query.ts similarity index 100% rename from server/routers/booking/query.ts rename to apps/scandic-web/server/routers/booking/query.ts diff --git a/server/routers/booking/utils.ts b/apps/scandic-web/server/routers/booking/utils.ts similarity index 100% rename from server/routers/booking/utils.ts rename to apps/scandic-web/server/routers/booking/utils.ts diff --git a/server/routers/contentstack/accountPage/index.ts b/apps/scandic-web/server/routers/contentstack/accountPage/index.ts similarity index 100% rename from server/routers/contentstack/accountPage/index.ts rename to apps/scandic-web/server/routers/contentstack/accountPage/index.ts diff --git a/server/routers/contentstack/accountPage/output.ts b/apps/scandic-web/server/routers/contentstack/accountPage/output.ts similarity index 100% rename from server/routers/contentstack/accountPage/output.ts rename to apps/scandic-web/server/routers/contentstack/accountPage/output.ts diff --git a/server/routers/contentstack/accountPage/query.ts b/apps/scandic-web/server/routers/contentstack/accountPage/query.ts similarity index 100% rename from server/routers/contentstack/accountPage/query.ts rename to apps/scandic-web/server/routers/contentstack/accountPage/query.ts diff --git a/server/routers/contentstack/accountPage/utils.ts b/apps/scandic-web/server/routers/contentstack/accountPage/utils.ts similarity index 100% rename from server/routers/contentstack/accountPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/accountPage/utils.ts diff --git a/server/routers/contentstack/base/index.ts b/apps/scandic-web/server/routers/contentstack/base/index.ts similarity index 100% rename from server/routers/contentstack/base/index.ts rename to apps/scandic-web/server/routers/contentstack/base/index.ts diff --git a/server/routers/contentstack/base/output.ts b/apps/scandic-web/server/routers/contentstack/base/output.ts similarity index 100% rename from server/routers/contentstack/base/output.ts rename to apps/scandic-web/server/routers/contentstack/base/output.ts diff --git a/server/routers/contentstack/base/query.ts b/apps/scandic-web/server/routers/contentstack/base/query.ts similarity index 100% rename from server/routers/contentstack/base/query.ts rename to apps/scandic-web/server/routers/contentstack/base/query.ts diff --git a/server/routers/contentstack/base/telemetry.ts b/apps/scandic-web/server/routers/contentstack/base/telemetry.ts similarity index 100% rename from server/routers/contentstack/base/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/base/telemetry.ts diff --git a/server/routers/contentstack/base/utils.ts b/apps/scandic-web/server/routers/contentstack/base/utils.ts similarity index 100% rename from server/routers/contentstack/base/utils.ts rename to apps/scandic-web/server/routers/contentstack/base/utils.ts diff --git a/server/routers/contentstack/breadcrumbs/index.ts b/apps/scandic-web/server/routers/contentstack/breadcrumbs/index.ts similarity index 100% rename from server/routers/contentstack/breadcrumbs/index.ts rename to apps/scandic-web/server/routers/contentstack/breadcrumbs/index.ts diff --git a/server/routers/contentstack/breadcrumbs/output.ts b/apps/scandic-web/server/routers/contentstack/breadcrumbs/output.ts similarity index 100% rename from server/routers/contentstack/breadcrumbs/output.ts rename to apps/scandic-web/server/routers/contentstack/breadcrumbs/output.ts diff --git a/server/routers/contentstack/breadcrumbs/query.ts b/apps/scandic-web/server/routers/contentstack/breadcrumbs/query.ts similarity index 100% rename from server/routers/contentstack/breadcrumbs/query.ts rename to apps/scandic-web/server/routers/contentstack/breadcrumbs/query.ts diff --git a/server/routers/contentstack/breadcrumbs/utils.ts b/apps/scandic-web/server/routers/contentstack/breadcrumbs/utils.ts similarity index 100% rename from server/routers/contentstack/breadcrumbs/utils.ts rename to apps/scandic-web/server/routers/contentstack/breadcrumbs/utils.ts diff --git a/server/routers/contentstack/collectionPage/index.ts b/apps/scandic-web/server/routers/contentstack/collectionPage/index.ts similarity index 100% rename from server/routers/contentstack/collectionPage/index.ts rename to apps/scandic-web/server/routers/contentstack/collectionPage/index.ts diff --git a/server/routers/contentstack/collectionPage/output.ts b/apps/scandic-web/server/routers/contentstack/collectionPage/output.ts similarity index 100% rename from server/routers/contentstack/collectionPage/output.ts rename to apps/scandic-web/server/routers/contentstack/collectionPage/output.ts diff --git a/server/routers/contentstack/collectionPage/query.ts b/apps/scandic-web/server/routers/contentstack/collectionPage/query.ts similarity index 100% rename from server/routers/contentstack/collectionPage/query.ts rename to apps/scandic-web/server/routers/contentstack/collectionPage/query.ts diff --git a/server/routers/contentstack/collectionPage/utils.ts b/apps/scandic-web/server/routers/contentstack/collectionPage/utils.ts similarity index 100% rename from server/routers/contentstack/collectionPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/collectionPage/utils.ts diff --git a/server/routers/contentstack/contentPage/index.ts b/apps/scandic-web/server/routers/contentstack/contentPage/index.ts similarity index 100% rename from server/routers/contentstack/contentPage/index.ts rename to apps/scandic-web/server/routers/contentstack/contentPage/index.ts diff --git a/server/routers/contentstack/contentPage/output.ts b/apps/scandic-web/server/routers/contentstack/contentPage/output.ts similarity index 100% rename from server/routers/contentstack/contentPage/output.ts rename to apps/scandic-web/server/routers/contentstack/contentPage/output.ts diff --git a/server/routers/contentstack/contentPage/query.ts b/apps/scandic-web/server/routers/contentstack/contentPage/query.ts similarity index 100% rename from server/routers/contentstack/contentPage/query.ts rename to apps/scandic-web/server/routers/contentstack/contentPage/query.ts diff --git a/server/routers/contentstack/contentPage/utils.ts b/apps/scandic-web/server/routers/contentstack/contentPage/utils.ts similarity index 100% rename from server/routers/contentstack/contentPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/contentPage/utils.ts diff --git a/server/routers/contentstack/destinationCityPage/index.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/index.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/index.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/index.ts diff --git a/server/routers/contentstack/destinationCityPage/input.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/input.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/input.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/input.ts diff --git a/server/routers/contentstack/destinationCityPage/output.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/output.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/output.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/output.ts diff --git a/server/routers/contentstack/destinationCityPage/query.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/query.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/query.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/query.ts diff --git a/server/routers/contentstack/destinationCityPage/telemetry.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/telemetry.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/telemetry.ts diff --git a/server/routers/contentstack/destinationCityPage/utils.ts b/apps/scandic-web/server/routers/contentstack/destinationCityPage/utils.ts similarity index 100% rename from server/routers/contentstack/destinationCityPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/destinationCityPage/utils.ts diff --git a/server/routers/contentstack/destinationCountryPage/index.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/index.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/index.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/index.ts diff --git a/server/routers/contentstack/destinationCountryPage/input.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/input.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/input.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/input.ts diff --git a/server/routers/contentstack/destinationCountryPage/output.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/output.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/output.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/output.ts diff --git a/server/routers/contentstack/destinationCountryPage/query.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/query.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/query.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/query.ts diff --git a/server/routers/contentstack/destinationCountryPage/telemetry.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/telemetry.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/telemetry.ts diff --git a/server/routers/contentstack/destinationCountryPage/utils.ts b/apps/scandic-web/server/routers/contentstack/destinationCountryPage/utils.ts similarity index 100% rename from server/routers/contentstack/destinationCountryPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/destinationCountryPage/utils.ts diff --git a/server/routers/contentstack/destinationOverviewPage/index.ts b/apps/scandic-web/server/routers/contentstack/destinationOverviewPage/index.ts similarity index 100% rename from server/routers/contentstack/destinationOverviewPage/index.ts rename to apps/scandic-web/server/routers/contentstack/destinationOverviewPage/index.ts diff --git a/server/routers/contentstack/destinationOverviewPage/output.ts b/apps/scandic-web/server/routers/contentstack/destinationOverviewPage/output.ts similarity index 100% rename from server/routers/contentstack/destinationOverviewPage/output.ts rename to apps/scandic-web/server/routers/contentstack/destinationOverviewPage/output.ts diff --git a/server/routers/contentstack/destinationOverviewPage/query.ts b/apps/scandic-web/server/routers/contentstack/destinationOverviewPage/query.ts similarity index 100% rename from server/routers/contentstack/destinationOverviewPage/query.ts rename to apps/scandic-web/server/routers/contentstack/destinationOverviewPage/query.ts diff --git a/server/routers/contentstack/destinationOverviewPage/telemetry.ts b/apps/scandic-web/server/routers/contentstack/destinationOverviewPage/telemetry.ts similarity index 100% rename from server/routers/contentstack/destinationOverviewPage/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/destinationOverviewPage/telemetry.ts diff --git a/server/routers/contentstack/hotelPage/index.ts b/apps/scandic-web/server/routers/contentstack/hotelPage/index.ts similarity index 100% rename from server/routers/contentstack/hotelPage/index.ts rename to apps/scandic-web/server/routers/contentstack/hotelPage/index.ts diff --git a/server/routers/contentstack/hotelPage/output.ts b/apps/scandic-web/server/routers/contentstack/hotelPage/output.ts similarity index 100% rename from server/routers/contentstack/hotelPage/output.ts rename to apps/scandic-web/server/routers/contentstack/hotelPage/output.ts diff --git a/server/routers/contentstack/hotelPage/query.ts b/apps/scandic-web/server/routers/contentstack/hotelPage/query.ts similarity index 100% rename from server/routers/contentstack/hotelPage/query.ts rename to apps/scandic-web/server/routers/contentstack/hotelPage/query.ts diff --git a/server/routers/contentstack/hotelPage/telemetry.ts b/apps/scandic-web/server/routers/contentstack/hotelPage/telemetry.ts similarity index 100% rename from server/routers/contentstack/hotelPage/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/hotelPage/telemetry.ts diff --git a/server/routers/contentstack/hotelPage/utils.ts b/apps/scandic-web/server/routers/contentstack/hotelPage/utils.ts similarity index 100% rename from server/routers/contentstack/hotelPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/hotelPage/utils.ts diff --git a/server/routers/contentstack/index.ts b/apps/scandic-web/server/routers/contentstack/index.ts similarity index 100% rename from server/routers/contentstack/index.ts rename to apps/scandic-web/server/routers/contentstack/index.ts diff --git a/server/routers/contentstack/languageSwitcher/index.ts b/apps/scandic-web/server/routers/contentstack/languageSwitcher/index.ts similarity index 100% rename from server/routers/contentstack/languageSwitcher/index.ts rename to apps/scandic-web/server/routers/contentstack/languageSwitcher/index.ts diff --git a/server/routers/contentstack/languageSwitcher/input.ts b/apps/scandic-web/server/routers/contentstack/languageSwitcher/input.ts similarity index 100% rename from server/routers/contentstack/languageSwitcher/input.ts rename to apps/scandic-web/server/routers/contentstack/languageSwitcher/input.ts diff --git a/server/routers/contentstack/languageSwitcher/output.ts b/apps/scandic-web/server/routers/contentstack/languageSwitcher/output.ts similarity index 100% rename from server/routers/contentstack/languageSwitcher/output.ts rename to apps/scandic-web/server/routers/contentstack/languageSwitcher/output.ts diff --git a/server/routers/contentstack/languageSwitcher/query.ts b/apps/scandic-web/server/routers/contentstack/languageSwitcher/query.ts similarity index 100% rename from server/routers/contentstack/languageSwitcher/query.ts rename to apps/scandic-web/server/routers/contentstack/languageSwitcher/query.ts diff --git a/server/routers/contentstack/languageSwitcher/utils.ts b/apps/scandic-web/server/routers/contentstack/languageSwitcher/utils.ts similarity index 100% rename from server/routers/contentstack/languageSwitcher/utils.ts rename to apps/scandic-web/server/routers/contentstack/languageSwitcher/utils.ts diff --git a/server/routers/contentstack/loyaltyLevel/index.ts b/apps/scandic-web/server/routers/contentstack/loyaltyLevel/index.ts similarity index 100% rename from server/routers/contentstack/loyaltyLevel/index.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyLevel/index.ts diff --git a/server/routers/contentstack/loyaltyLevel/input.ts b/apps/scandic-web/server/routers/contentstack/loyaltyLevel/input.ts similarity index 100% rename from server/routers/contentstack/loyaltyLevel/input.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyLevel/input.ts diff --git a/server/routers/contentstack/loyaltyLevel/output.ts b/apps/scandic-web/server/routers/contentstack/loyaltyLevel/output.ts similarity index 100% rename from server/routers/contentstack/loyaltyLevel/output.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyLevel/output.ts diff --git a/server/routers/contentstack/loyaltyLevel/query.ts b/apps/scandic-web/server/routers/contentstack/loyaltyLevel/query.ts similarity index 100% rename from server/routers/contentstack/loyaltyLevel/query.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyLevel/query.ts diff --git a/server/routers/contentstack/loyaltyPage/index.ts b/apps/scandic-web/server/routers/contentstack/loyaltyPage/index.ts similarity index 100% rename from server/routers/contentstack/loyaltyPage/index.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyPage/index.ts diff --git a/server/routers/contentstack/loyaltyPage/output.ts b/apps/scandic-web/server/routers/contentstack/loyaltyPage/output.ts similarity index 100% rename from server/routers/contentstack/loyaltyPage/output.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyPage/output.ts diff --git a/server/routers/contentstack/loyaltyPage/query.ts b/apps/scandic-web/server/routers/contentstack/loyaltyPage/query.ts similarity index 100% rename from server/routers/contentstack/loyaltyPage/query.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyPage/query.ts diff --git a/server/routers/contentstack/loyaltyPage/utils.ts b/apps/scandic-web/server/routers/contentstack/loyaltyPage/utils.ts similarity index 100% rename from server/routers/contentstack/loyaltyPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/loyaltyPage/utils.ts diff --git a/server/routers/contentstack/metadata/index.ts b/apps/scandic-web/server/routers/contentstack/metadata/index.ts similarity index 100% rename from server/routers/contentstack/metadata/index.ts rename to apps/scandic-web/server/routers/contentstack/metadata/index.ts diff --git a/server/routers/contentstack/metadata/input.ts b/apps/scandic-web/server/routers/contentstack/metadata/input.ts similarity index 100% rename from server/routers/contentstack/metadata/input.ts rename to apps/scandic-web/server/routers/contentstack/metadata/input.ts diff --git a/server/routers/contentstack/metadata/output.ts b/apps/scandic-web/server/routers/contentstack/metadata/output.ts similarity index 100% rename from server/routers/contentstack/metadata/output.ts rename to apps/scandic-web/server/routers/contentstack/metadata/output.ts diff --git a/server/routers/contentstack/metadata/query.ts b/apps/scandic-web/server/routers/contentstack/metadata/query.ts similarity index 100% rename from server/routers/contentstack/metadata/query.ts rename to apps/scandic-web/server/routers/contentstack/metadata/query.ts diff --git a/server/routers/contentstack/metadata/utils.ts b/apps/scandic-web/server/routers/contentstack/metadata/utils.ts similarity index 100% rename from server/routers/contentstack/metadata/utils.ts rename to apps/scandic-web/server/routers/contentstack/metadata/utils.ts diff --git a/server/routers/contentstack/pageSettings/index.ts b/apps/scandic-web/server/routers/contentstack/pageSettings/index.ts similarity index 100% rename from server/routers/contentstack/pageSettings/index.ts rename to apps/scandic-web/server/routers/contentstack/pageSettings/index.ts diff --git a/server/routers/contentstack/pageSettings/output.ts b/apps/scandic-web/server/routers/contentstack/pageSettings/output.ts similarity index 100% rename from server/routers/contentstack/pageSettings/output.ts rename to apps/scandic-web/server/routers/contentstack/pageSettings/output.ts diff --git a/server/routers/contentstack/pageSettings/query.ts b/apps/scandic-web/server/routers/contentstack/pageSettings/query.ts similarity index 100% rename from server/routers/contentstack/pageSettings/query.ts rename to apps/scandic-web/server/routers/contentstack/pageSettings/query.ts diff --git a/server/routers/contentstack/pageSettings/utils.ts b/apps/scandic-web/server/routers/contentstack/pageSettings/utils.ts similarity index 100% rename from server/routers/contentstack/pageSettings/utils.ts rename to apps/scandic-web/server/routers/contentstack/pageSettings/utils.ts diff --git a/server/routers/contentstack/partner/index.ts b/apps/scandic-web/server/routers/contentstack/partner/index.ts similarity index 100% rename from server/routers/contentstack/partner/index.ts rename to apps/scandic-web/server/routers/contentstack/partner/index.ts diff --git a/server/routers/contentstack/partner/output.ts b/apps/scandic-web/server/routers/contentstack/partner/output.ts similarity index 100% rename from server/routers/contentstack/partner/output.ts rename to apps/scandic-web/server/routers/contentstack/partner/output.ts diff --git a/server/routers/contentstack/partner/query.ts b/apps/scandic-web/server/routers/contentstack/partner/query.ts similarity index 100% rename from server/routers/contentstack/partner/query.ts rename to apps/scandic-web/server/routers/contentstack/partner/query.ts diff --git a/server/routers/contentstack/reward/index.ts b/apps/scandic-web/server/routers/contentstack/reward/index.ts similarity index 100% rename from server/routers/contentstack/reward/index.ts rename to apps/scandic-web/server/routers/contentstack/reward/index.ts diff --git a/server/routers/contentstack/reward/input.ts b/apps/scandic-web/server/routers/contentstack/reward/input.ts similarity index 100% rename from server/routers/contentstack/reward/input.ts rename to apps/scandic-web/server/routers/contentstack/reward/input.ts diff --git a/server/routers/contentstack/reward/output.ts b/apps/scandic-web/server/routers/contentstack/reward/output.ts similarity index 100% rename from server/routers/contentstack/reward/output.ts rename to apps/scandic-web/server/routers/contentstack/reward/output.ts diff --git a/server/routers/contentstack/reward/query.ts b/apps/scandic-web/server/routers/contentstack/reward/query.ts similarity index 100% rename from server/routers/contentstack/reward/query.ts rename to apps/scandic-web/server/routers/contentstack/reward/query.ts diff --git a/server/routers/contentstack/reward/utils.ts b/apps/scandic-web/server/routers/contentstack/reward/utils.ts similarity index 100% rename from server/routers/contentstack/reward/utils.ts rename to apps/scandic-web/server/routers/contentstack/reward/utils.ts diff --git a/server/routers/contentstack/schemas/blocks/accordion.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/accordion.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/accordion.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/accordion.ts diff --git a/server/routers/contentstack/schemas/blocks/activitiesCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/activitiesCard.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/activitiesCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/activitiesCard.ts diff --git a/server/routers/contentstack/schemas/blocks/cardGallery.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cardGallery.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cardGallery.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cardGallery.ts diff --git a/server/routers/contentstack/schemas/blocks/cards/contentCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/contentCard.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cards/contentCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/contentCard.ts diff --git a/server/routers/contentstack/schemas/blocks/cards/infoCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/infoCard.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cards/infoCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/infoCard.ts diff --git a/server/routers/contentstack/schemas/blocks/cards/loyaltyCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/loyaltyCard.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cards/loyaltyCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/loyaltyCard.ts diff --git a/server/routers/contentstack/schemas/blocks/cards/teaserCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/teaserCard.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cards/teaserCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cards/teaserCard.ts diff --git a/server/routers/contentstack/schemas/blocks/cardsGrid.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/cardsGrid.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/cardsGrid.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/cardsGrid.ts diff --git a/server/routers/contentstack/schemas/blocks/carouselCards.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/carouselCards.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/carouselCards.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/carouselCards.ts diff --git a/server/routers/contentstack/schemas/blocks/content.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/content.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/content.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/content.ts diff --git a/server/routers/contentstack/schemas/blocks/contentEmbeds.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/contentEmbeds.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/contentEmbeds.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/contentEmbeds.ts diff --git a/server/routers/contentstack/schemas/blocks/dynamicContent.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/dynamicContent.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/dynamicContent.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/dynamicContent.ts diff --git a/server/routers/contentstack/schemas/blocks/fullWidthCampaign.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/fullWidthCampaign.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/fullWidthCampaign.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/fullWidthCampaign.ts diff --git a/server/routers/contentstack/schemas/blocks/hotelFaq.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/hotelFaq.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/hotelFaq.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/hotelFaq.ts diff --git a/server/routers/contentstack/schemas/blocks/hotelListing.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/hotelListing.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/hotelListing.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/hotelListing.ts diff --git a/server/routers/contentstack/schemas/blocks/image.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/image.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/image.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/image.ts diff --git a/server/routers/contentstack/schemas/blocks/imageContainer.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/imageContainer.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/imageContainer.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/imageContainer.ts diff --git a/server/routers/contentstack/schemas/blocks/joinScandicFriends.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/joinScandicFriends.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/joinScandicFriends.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/joinScandicFriends.ts diff --git a/server/routers/contentstack/schemas/blocks/shortcuts.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/shortcuts.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/shortcuts.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/shortcuts.ts diff --git a/server/routers/contentstack/schemas/blocks/spaPage.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/spaPage.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/spaPage.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/spaPage.ts diff --git a/server/routers/contentstack/schemas/blocks/table.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/table.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/table.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/table.ts diff --git a/server/routers/contentstack/schemas/blocks/textCols.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/textCols.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/textCols.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/textCols.ts diff --git a/server/routers/contentstack/schemas/blocks/textContent.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/textContent.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/textContent.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/textContent.ts diff --git a/server/routers/contentstack/schemas/blocks/uspGrid.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/uspGrid.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/uspGrid.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/uspGrid.ts diff --git a/server/routers/contentstack/schemas/blocks/utils/buttonLinkSchema.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/utils/buttonLinkSchema.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/utils/buttonLinkSchema.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/utils/buttonLinkSchema.ts diff --git a/server/routers/contentstack/schemas/blocks/utils/linkConnection.ts b/apps/scandic-web/server/routers/contentstack/schemas/blocks/utils/linkConnection.ts similarity index 100% rename from server/routers/contentstack/schemas/blocks/utils/linkConnection.ts rename to apps/scandic-web/server/routers/contentstack/schemas/blocks/utils/linkConnection.ts diff --git a/server/routers/contentstack/schemas/imageVault.ts b/apps/scandic-web/server/routers/contentstack/schemas/imageVault.ts similarity index 100% rename from server/routers/contentstack/schemas/imageVault.ts rename to apps/scandic-web/server/routers/contentstack/schemas/imageVault.ts diff --git a/server/routers/contentstack/schemas/linkConnection.ts b/apps/scandic-web/server/routers/contentstack/schemas/linkConnection.ts similarity index 100% rename from server/routers/contentstack/schemas/linkConnection.ts rename to apps/scandic-web/server/routers/contentstack/schemas/linkConnection.ts diff --git a/server/routers/contentstack/schemas/pageLinks.ts b/apps/scandic-web/server/routers/contentstack/schemas/pageLinks.ts similarity index 100% rename from server/routers/contentstack/schemas/pageLinks.ts rename to apps/scandic-web/server/routers/contentstack/schemas/pageLinks.ts diff --git a/server/routers/contentstack/schemas/sidebar/content.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/content.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/content.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/content.ts diff --git a/server/routers/contentstack/schemas/sidebar/dynamicContent.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/dynamicContent.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/dynamicContent.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/dynamicContent.ts diff --git a/server/routers/contentstack/schemas/sidebar/joinLoyaltyContact.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/joinLoyaltyContact.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/joinLoyaltyContact.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/joinLoyaltyContact.ts diff --git a/server/routers/contentstack/schemas/sidebar/quickLinks.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/quickLinks.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/quickLinks.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/quickLinks.ts diff --git a/server/routers/contentstack/schemas/sidebar/scriptedCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/scriptedCard.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/scriptedCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/scriptedCard.ts diff --git a/server/routers/contentstack/schemas/sidebar/teaserCard.ts b/apps/scandic-web/server/routers/contentstack/schemas/sidebar/teaserCard.ts similarity index 100% rename from server/routers/contentstack/schemas/sidebar/teaserCard.ts rename to apps/scandic-web/server/routers/contentstack/schemas/sidebar/teaserCard.ts diff --git a/server/routers/contentstack/schemas/system.ts b/apps/scandic-web/server/routers/contentstack/schemas/system.ts similarity index 100% rename from server/routers/contentstack/schemas/system.ts rename to apps/scandic-web/server/routers/contentstack/schemas/system.ts diff --git a/server/routers/contentstack/startPage/index.ts b/apps/scandic-web/server/routers/contentstack/startPage/index.ts similarity index 100% rename from server/routers/contentstack/startPage/index.ts rename to apps/scandic-web/server/routers/contentstack/startPage/index.ts diff --git a/server/routers/contentstack/startPage/output.ts b/apps/scandic-web/server/routers/contentstack/startPage/output.ts similarity index 100% rename from server/routers/contentstack/startPage/output.ts rename to apps/scandic-web/server/routers/contentstack/startPage/output.ts diff --git a/server/routers/contentstack/startPage/query.ts b/apps/scandic-web/server/routers/contentstack/startPage/query.ts similarity index 100% rename from server/routers/contentstack/startPage/query.ts rename to apps/scandic-web/server/routers/contentstack/startPage/query.ts diff --git a/server/routers/contentstack/startPage/telemetry.ts b/apps/scandic-web/server/routers/contentstack/startPage/telemetry.ts similarity index 100% rename from server/routers/contentstack/startPage/telemetry.ts rename to apps/scandic-web/server/routers/contentstack/startPage/telemetry.ts diff --git a/server/routers/contentstack/startPage/utils.ts b/apps/scandic-web/server/routers/contentstack/startPage/utils.ts similarity index 100% rename from server/routers/contentstack/startPage/utils.ts rename to apps/scandic-web/server/routers/contentstack/startPage/utils.ts diff --git a/server/routers/hotels/index.ts b/apps/scandic-web/server/routers/hotels/index.ts similarity index 100% rename from server/routers/hotels/index.ts rename to apps/scandic-web/server/routers/hotels/index.ts diff --git a/server/routers/hotels/input.ts b/apps/scandic-web/server/routers/hotels/input.ts similarity index 100% rename from server/routers/hotels/input.ts rename to apps/scandic-web/server/routers/hotels/input.ts diff --git a/server/routers/hotels/metrics.ts b/apps/scandic-web/server/routers/hotels/metrics.ts similarity index 100% rename from server/routers/hotels/metrics.ts rename to apps/scandic-web/server/routers/hotels/metrics.ts diff --git a/server/routers/hotels/output.ts b/apps/scandic-web/server/routers/hotels/output.ts similarity index 100% rename from server/routers/hotels/output.ts rename to apps/scandic-web/server/routers/hotels/output.ts diff --git a/server/routers/hotels/query.ts b/apps/scandic-web/server/routers/hotels/query.ts similarity index 100% rename from server/routers/hotels/query.ts rename to apps/scandic-web/server/routers/hotels/query.ts diff --git a/server/routers/hotels/schemas/availability/occupancy.ts b/apps/scandic-web/server/routers/hotels/schemas/availability/occupancy.ts similarity index 100% rename from server/routers/hotels/schemas/availability/occupancy.ts rename to apps/scandic-web/server/routers/hotels/schemas/availability/occupancy.ts diff --git a/server/routers/hotels/schemas/availability/productType.ts b/apps/scandic-web/server/routers/hotels/schemas/availability/productType.ts similarity index 100% rename from server/routers/hotels/schemas/availability/productType.ts rename to apps/scandic-web/server/routers/hotels/schemas/availability/productType.ts diff --git a/server/routers/hotels/schemas/city.ts b/apps/scandic-web/server/routers/hotels/schemas/city.ts similarity index 100% rename from server/routers/hotels/schemas/city.ts rename to apps/scandic-web/server/routers/hotels/schemas/city.ts diff --git a/server/routers/hotels/schemas/hotel.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel.ts similarity index 100% rename from server/routers/hotels/schemas/hotel.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel.ts diff --git a/server/routers/hotels/schemas/hotel/address.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/address.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/address.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/address.ts diff --git a/server/routers/hotels/schemas/hotel/contactInformation.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/contactInformation.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/contactInformation.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/contactInformation.ts diff --git a/server/routers/hotels/schemas/hotel/content.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/content.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/content.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/content.ts diff --git a/server/routers/hotels/schemas/hotel/detailedFacility.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/detailedFacility.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/detailedFacility.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/detailedFacility.ts diff --git a/server/routers/hotels/schemas/hotel/facts.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/facts.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/facts.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/facts.ts diff --git a/server/routers/hotels/schemas/hotel/healthFacilities.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/healthFacilities.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/healthFacilities.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/healthFacilities.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData/displayWebPage.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/displayWebPage.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData/displayWebPage.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/displayWebPage.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData/facility.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/facility.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData/facility.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/facility.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData/gallery.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/gallery.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData/gallery.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/gallery.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData/restaurantsOverviewPage.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/restaurantsOverviewPage.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData/restaurantsOverviewPage.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/restaurantsOverviewPage.ts diff --git a/server/routers/hotels/schemas/hotel/include/additionalData/specialNeedGroups.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/specialNeedGroups.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/additionalData/specialNeedGroups.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/additionalData/specialNeedGroups.ts diff --git a/server/routers/hotels/schemas/hotel/include/include.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/include.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/include.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/include.ts diff --git a/server/routers/hotels/schemas/hotel/include/nearbyHotels.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/nearbyHotels.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/nearbyHotels.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/nearbyHotels.ts diff --git a/server/routers/hotels/schemas/hotel/include/restaurants.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/restaurants.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/restaurants.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/restaurants.ts diff --git a/server/routers/hotels/schemas/hotel/include/roomCategories.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/include/roomCategories.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/include/roomCategories.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/include/roomCategories.ts diff --git a/server/routers/hotels/schemas/hotel/location.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/location.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/location.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/location.ts diff --git a/server/routers/hotels/schemas/hotel/merchantInformation.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/merchantInformation.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/merchantInformation.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/merchantInformation.ts diff --git a/server/routers/hotels/schemas/hotel/parking.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/parking.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/parking.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/parking.ts diff --git a/server/routers/hotels/schemas/hotel/poi.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/poi.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/poi.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/poi.ts diff --git a/server/routers/hotels/schemas/hotel/rating.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/rating.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/rating.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/rating.ts diff --git a/server/routers/hotels/schemas/hotel/rewardNight.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/rewardNight.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/rewardNight.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/rewardNight.ts diff --git a/server/routers/hotels/schemas/hotel/socialMedia.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/socialMedia.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/socialMedia.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/socialMedia.ts diff --git a/server/routers/hotels/schemas/hotel/specialAlerts.ts b/apps/scandic-web/server/routers/hotels/schemas/hotel/specialAlerts.ts similarity index 100% rename from server/routers/hotels/schemas/hotel/specialAlerts.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotel/specialAlerts.ts diff --git a/server/routers/hotels/schemas/hotelFilter.ts b/apps/scandic-web/server/routers/hotels/schemas/hotelFilter.ts similarity index 100% rename from server/routers/hotels/schemas/hotelFilter.ts rename to apps/scandic-web/server/routers/hotels/schemas/hotelFilter.ts diff --git a/server/routers/hotels/schemas/image.ts b/apps/scandic-web/server/routers/hotels/schemas/image.ts similarity index 100% rename from server/routers/hotels/schemas/image.ts rename to apps/scandic-web/server/routers/hotels/schemas/image.ts diff --git a/server/routers/hotels/schemas/location/city.ts b/apps/scandic-web/server/routers/hotels/schemas/location/city.ts similarity index 100% rename from server/routers/hotels/schemas/location/city.ts rename to apps/scandic-web/server/routers/hotels/schemas/location/city.ts diff --git a/server/routers/hotels/schemas/location/hotel.ts b/apps/scandic-web/server/routers/hotels/schemas/location/hotel.ts similarity index 100% rename from server/routers/hotels/schemas/location/hotel.ts rename to apps/scandic-web/server/routers/hotels/schemas/location/hotel.ts diff --git a/server/routers/hotels/schemas/meetingRoom.ts b/apps/scandic-web/server/routers/hotels/schemas/meetingRoom.ts similarity index 100% rename from server/routers/hotels/schemas/meetingRoom.ts rename to apps/scandic-web/server/routers/hotels/schemas/meetingRoom.ts diff --git a/server/routers/hotels/schemas/packages.ts b/apps/scandic-web/server/routers/hotels/schemas/packages.ts similarity index 100% rename from server/routers/hotels/schemas/packages.ts rename to apps/scandic-web/server/routers/hotels/schemas/packages.ts diff --git a/server/routers/hotels/schemas/productTypePrice.ts b/apps/scandic-web/server/routers/hotels/schemas/productTypePrice.ts similarity index 100% rename from server/routers/hotels/schemas/productTypePrice.ts rename to apps/scandic-web/server/routers/hotels/schemas/productTypePrice.ts diff --git a/server/routers/hotels/schemas/rate.ts b/apps/scandic-web/server/routers/hotels/schemas/rate.ts similarity index 100% rename from server/routers/hotels/schemas/rate.ts rename to apps/scandic-web/server/routers/hotels/schemas/rate.ts diff --git a/server/routers/hotels/schemas/relationships.ts b/apps/scandic-web/server/routers/hotels/schemas/relationships.ts similarity index 100% rename from server/routers/hotels/schemas/relationships.ts rename to apps/scandic-web/server/routers/hotels/schemas/relationships.ts diff --git a/server/routers/hotels/schemas/restaurants.ts b/apps/scandic-web/server/routers/hotels/schemas/restaurants.ts similarity index 100% rename from server/routers/hotels/schemas/restaurants.ts rename to apps/scandic-web/server/routers/hotels/schemas/restaurants.ts diff --git a/server/routers/hotels/schemas/room.ts b/apps/scandic-web/server/routers/hotels/schemas/room.ts similarity index 100% rename from server/routers/hotels/schemas/room.ts rename to apps/scandic-web/server/routers/hotels/schemas/room.ts diff --git a/server/routers/hotels/schemas/roomAvailability/configuration.ts b/apps/scandic-web/server/routers/hotels/schemas/roomAvailability/configuration.ts similarity index 100% rename from server/routers/hotels/schemas/roomAvailability/configuration.ts rename to apps/scandic-web/server/routers/hotels/schemas/roomAvailability/configuration.ts diff --git a/server/routers/hotels/schemas/roomAvailability/product.ts b/apps/scandic-web/server/routers/hotels/schemas/roomAvailability/product.ts similarity index 100% rename from server/routers/hotels/schemas/roomAvailability/product.ts rename to apps/scandic-web/server/routers/hotels/schemas/roomAvailability/product.ts diff --git a/server/routers/hotels/schemas/roomAvailability/rateDefinition.ts b/apps/scandic-web/server/routers/hotels/schemas/roomAvailability/rateDefinition.ts similarity index 100% rename from server/routers/hotels/schemas/roomAvailability/rateDefinition.ts rename to apps/scandic-web/server/routers/hotels/schemas/roomAvailability/rateDefinition.ts diff --git a/server/routers/hotels/schemas/specialAlerts.ts b/apps/scandic-web/server/routers/hotels/schemas/specialAlerts.ts similarity index 100% rename from server/routers/hotels/schemas/specialAlerts.ts rename to apps/scandic-web/server/routers/hotels/schemas/specialAlerts.ts diff --git a/server/routers/hotels/telemetry.ts b/apps/scandic-web/server/routers/hotels/telemetry.ts similarity index 100% rename from server/routers/hotels/telemetry.ts rename to apps/scandic-web/server/routers/hotels/telemetry.ts diff --git a/server/routers/hotels/tempHotelData.json b/apps/scandic-web/server/routers/hotels/tempHotelData.json similarity index 100% rename from server/routers/hotels/tempHotelData.json rename to apps/scandic-web/server/routers/hotels/tempHotelData.json diff --git a/server/routers/hotels/tempRatesData.json b/apps/scandic-web/server/routers/hotels/tempRatesData.json similarity index 100% rename from server/routers/hotels/tempRatesData.json rename to apps/scandic-web/server/routers/hotels/tempRatesData.json diff --git a/server/routers/hotels/utils.ts b/apps/scandic-web/server/routers/hotels/utils.ts similarity index 100% rename from server/routers/hotels/utils.ts rename to apps/scandic-web/server/routers/hotels/utils.ts diff --git a/server/routers/navigation/index.ts b/apps/scandic-web/server/routers/navigation/index.ts similarity index 100% rename from server/routers/navigation/index.ts rename to apps/scandic-web/server/routers/navigation/index.ts diff --git a/server/routers/navigation/mypages/MyPagesLink.ts b/apps/scandic-web/server/routers/navigation/mypages/MyPagesLink.ts similarity index 100% rename from server/routers/navigation/mypages/MyPagesLink.ts rename to apps/scandic-web/server/routers/navigation/mypages/MyPagesLink.ts diff --git a/server/routers/navigation/mypages/getPrimaryLinks.ts b/apps/scandic-web/server/routers/navigation/mypages/getPrimaryLinks.ts similarity index 100% rename from server/routers/navigation/mypages/getPrimaryLinks.ts rename to apps/scandic-web/server/routers/navigation/mypages/getPrimaryLinks.ts diff --git a/server/routers/navigation/mypages/getSecondaryLinks.ts b/apps/scandic-web/server/routers/navigation/mypages/getSecondaryLinks.ts similarity index 100% rename from server/routers/navigation/mypages/getSecondaryLinks.ts rename to apps/scandic-web/server/routers/navigation/mypages/getSecondaryLinks.ts diff --git a/server/routers/navigation/mypages/index.ts b/apps/scandic-web/server/routers/navigation/mypages/index.ts similarity index 100% rename from server/routers/navigation/mypages/index.ts rename to apps/scandic-web/server/routers/navigation/mypages/index.ts diff --git a/server/routers/partners/index.ts b/apps/scandic-web/server/routers/partners/index.ts similarity index 100% rename from server/routers/partners/index.ts rename to apps/scandic-web/server/routers/partners/index.ts diff --git a/server/routers/partners/sas/getSasToken.ts b/apps/scandic-web/server/routers/partners/sas/getSasToken.ts similarity index 100% rename from server/routers/partners/sas/getSasToken.ts rename to apps/scandic-web/server/routers/partners/sas/getSasToken.ts diff --git a/server/routers/partners/sas/index.ts b/apps/scandic-web/server/routers/partners/sas/index.ts similarity index 100% rename from server/routers/partners/sas/index.ts rename to apps/scandic-web/server/routers/partners/sas/index.ts diff --git a/server/routers/partners/sas/linkAccount.ts b/apps/scandic-web/server/routers/partners/sas/linkAccount.ts similarity index 100% rename from server/routers/partners/sas/linkAccount.ts rename to apps/scandic-web/server/routers/partners/sas/linkAccount.ts diff --git a/server/routers/partners/sas/otp/constants.ts b/apps/scandic-web/server/routers/partners/sas/otp/constants.ts similarity index 100% rename from server/routers/partners/sas/otp/constants.ts rename to apps/scandic-web/server/routers/partners/sas/otp/constants.ts diff --git a/server/routers/partners/sas/otp/getOTPState.ts b/apps/scandic-web/server/routers/partners/sas/otp/getOTPState.ts similarity index 100% rename from server/routers/partners/sas/otp/getOTPState.ts rename to apps/scandic-web/server/routers/partners/sas/otp/getOTPState.ts diff --git a/server/routers/partners/sas/otp/request/requestOtp.ts b/apps/scandic-web/server/routers/partners/sas/otp/request/requestOtp.ts similarity index 100% rename from server/routers/partners/sas/otp/request/requestOtp.ts rename to apps/scandic-web/server/routers/partners/sas/otp/request/requestOtp.ts diff --git a/server/routers/partners/sas/otp/request/requestOtpError.test.ts b/apps/scandic-web/server/routers/partners/sas/otp/request/requestOtpError.test.ts similarity index 100% rename from server/routers/partners/sas/otp/request/requestOtpError.test.ts rename to apps/scandic-web/server/routers/partners/sas/otp/request/requestOtpError.test.ts diff --git a/server/routers/partners/sas/otp/request/requestOtpError.ts b/apps/scandic-web/server/routers/partners/sas/otp/request/requestOtpError.ts similarity index 100% rename from server/routers/partners/sas/otp/request/requestOtpError.ts rename to apps/scandic-web/server/routers/partners/sas/otp/request/requestOtpError.ts diff --git a/server/routers/partners/sas/otp/verify/verifyOtp.ts b/apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtp.ts similarity index 100% rename from server/routers/partners/sas/otp/verify/verifyOtp.ts rename to apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtp.ts diff --git a/server/routers/partners/sas/otp/verify/verifyOtpError.test.ts b/apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtpError.test.ts similarity index 100% rename from server/routers/partners/sas/otp/verify/verifyOtpError.test.ts rename to apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtpError.test.ts diff --git a/server/routers/partners/sas/otp/verify/verifyOtpError.ts b/apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtpError.ts similarity index 100% rename from server/routers/partners/sas/otp/verify/verifyOtpError.ts rename to apps/scandic-web/server/routers/partners/sas/otp/verify/verifyOtpError.ts diff --git a/server/routers/partners/sas/performLevelUpgrade.ts b/apps/scandic-web/server/routers/partners/sas/performLevelUpgrade.ts similarity index 100% rename from server/routers/partners/sas/performLevelUpgrade.ts rename to apps/scandic-web/server/routers/partners/sas/performLevelUpgrade.ts diff --git a/server/routers/partners/sas/unlinkAccount.ts b/apps/scandic-web/server/routers/partners/sas/unlinkAccount.ts similarity index 100% rename from server/routers/partners/sas/unlinkAccount.ts rename to apps/scandic-web/server/routers/partners/sas/unlinkAccount.ts diff --git a/server/routers/user/index.ts b/apps/scandic-web/server/routers/user/index.ts similarity index 100% rename from server/routers/user/index.ts rename to apps/scandic-web/server/routers/user/index.ts diff --git a/server/routers/user/input.ts b/apps/scandic-web/server/routers/user/input.ts similarity index 100% rename from server/routers/user/input.ts rename to apps/scandic-web/server/routers/user/input.ts diff --git a/server/routers/user/mutation.ts b/apps/scandic-web/server/routers/user/mutation.ts similarity index 100% rename from server/routers/user/mutation.ts rename to apps/scandic-web/server/routers/user/mutation.ts diff --git a/server/routers/user/output.ts b/apps/scandic-web/server/routers/user/output.ts similarity index 100% rename from server/routers/user/output.ts rename to apps/scandic-web/server/routers/user/output.ts diff --git a/server/routers/user/query.ts b/apps/scandic-web/server/routers/user/query.ts similarity index 100% rename from server/routers/user/query.ts rename to apps/scandic-web/server/routers/user/query.ts diff --git a/server/routers/user/tempFriendTransactions.json b/apps/scandic-web/server/routers/user/tempFriendTransactions.json similarity index 100% rename from server/routers/user/tempFriendTransactions.json rename to apps/scandic-web/server/routers/user/tempFriendTransactions.json diff --git a/server/routers/user/utils.ts b/apps/scandic-web/server/routers/user/utils.ts similarity index 100% rename from server/routers/user/utils.ts rename to apps/scandic-web/server/routers/user/utils.ts diff --git a/server/routers/utils/encryptValue.ts b/apps/scandic-web/server/routers/utils/encryptValue.ts similarity index 100% rename from server/routers/utils/encryptValue.ts rename to apps/scandic-web/server/routers/utils/encryptValue.ts diff --git a/server/routers/utils/index.ts b/apps/scandic-web/server/routers/utils/index.ts similarity index 100% rename from server/routers/utils/index.ts rename to apps/scandic-web/server/routers/utils/index.ts diff --git a/server/tokenManager.ts b/apps/scandic-web/server/tokenManager.ts similarity index 100% rename from server/tokenManager.ts rename to apps/scandic-web/server/tokenManager.ts diff --git a/server/transformer.ts b/apps/scandic-web/server/transformer.ts similarity index 100% rename from server/transformer.ts rename to apps/scandic-web/server/transformer.ts diff --git a/server/trpc.ts b/apps/scandic-web/server/trpc.ts similarity index 100% rename from server/trpc.ts rename to apps/scandic-web/server/trpc.ts diff --git a/server/utils.ts b/apps/scandic-web/server/utils.ts similarity index 100% rename from server/utils.ts rename to apps/scandic-web/server/utils.ts diff --git a/services/cms/fetchAndCacheEntry.ts b/apps/scandic-web/services/cms/fetchAndCacheEntry.ts similarity index 100% rename from services/cms/fetchAndCacheEntry.ts rename to apps/scandic-web/services/cms/fetchAndCacheEntry.ts diff --git a/services/cms/getUidAndContentTypeByPath.ts b/apps/scandic-web/services/cms/getUidAndContentTypeByPath.ts similarity index 100% rename from services/cms/getUidAndContentTypeByPath.ts rename to apps/scandic-web/services/cms/getUidAndContentTypeByPath.ts diff --git a/stores/bookingCode-filter.ts b/apps/scandic-web/stores/bookingCode-filter.ts similarity index 100% rename from stores/bookingCode-filter.ts rename to apps/scandic-web/stores/bookingCode-filter.ts diff --git a/stores/enter-details/helpers.ts b/apps/scandic-web/stores/enter-details/helpers.ts similarity index 100% rename from stores/enter-details/helpers.ts rename to apps/scandic-web/stores/enter-details/helpers.ts diff --git a/stores/enter-details/index.ts b/apps/scandic-web/stores/enter-details/index.ts similarity index 100% rename from stores/enter-details/index.ts rename to apps/scandic-web/stores/enter-details/index.ts diff --git a/stores/enter-details/useEnterDetailsStore.test.tsx b/apps/scandic-web/stores/enter-details/useEnterDetailsStore.test.tsx similarity index 100% rename from stores/enter-details/useEnterDetailsStore.test.tsx rename to apps/scandic-web/stores/enter-details/useEnterDetailsStore.test.tsx diff --git a/stores/hotel-data/helper.ts b/apps/scandic-web/stores/hotel-data/helper.ts similarity index 100% rename from stores/hotel-data/helper.ts rename to apps/scandic-web/stores/hotel-data/helper.ts diff --git a/stores/hotel-data/index.ts b/apps/scandic-web/stores/hotel-data/index.ts similarity index 100% rename from stores/hotel-data/index.ts rename to apps/scandic-web/stores/hotel-data/index.ts diff --git a/stores/hotel-filters.ts b/apps/scandic-web/stores/hotel-filters.ts similarity index 100% rename from stores/hotel-filters.ts rename to apps/scandic-web/stores/hotel-filters.ts diff --git a/stores/hotel-page.ts b/apps/scandic-web/stores/hotel-page.ts similarity index 100% rename from stores/hotel-page.ts rename to apps/scandic-web/stores/hotel-page.ts diff --git a/stores/hotels-map.ts b/apps/scandic-web/stores/hotels-map.ts similarity index 100% rename from stores/hotels-map.ts rename to apps/scandic-web/stores/hotels-map.ts diff --git a/stores/main-menu.ts b/apps/scandic-web/stores/main-menu.ts similarity index 100% rename from stores/main-menu.ts rename to apps/scandic-web/stores/main-menu.ts diff --git a/stores/my-stay/add-ancillary-flow.ts b/apps/scandic-web/stores/my-stay/add-ancillary-flow.ts similarity index 100% rename from stores/my-stay/add-ancillary-flow.ts rename to apps/scandic-web/stores/my-stay/add-ancillary-flow.ts diff --git a/stores/router-transition.ts b/apps/scandic-web/stores/router-transition.ts similarity index 100% rename from stores/router-transition.ts rename to apps/scandic-web/stores/router-transition.ts diff --git a/stores/select-rate/helper.ts b/apps/scandic-web/stores/select-rate/helper.ts similarity index 100% rename from stores/select-rate/helper.ts rename to apps/scandic-web/stores/select-rate/helper.ts diff --git a/stores/select-rate/index.ts b/apps/scandic-web/stores/select-rate/index.ts similarity index 100% rename from stores/select-rate/index.ts rename to apps/scandic-web/stores/select-rate/index.ts diff --git a/stores/select-rate/rate-selection.ts b/apps/scandic-web/stores/select-rate/rate-selection.ts similarity index 100% rename from stores/select-rate/rate-selection.ts rename to apps/scandic-web/stores/select-rate/rate-selection.ts diff --git a/stores/sidepeek.ts b/apps/scandic-web/stores/sidepeek.ts similarity index 100% rename from stores/sidepeek.ts rename to apps/scandic-web/stores/sidepeek.ts diff --git a/stores/sticky-position.ts b/apps/scandic-web/stores/sticky-position.ts similarity index 100% rename from stores/sticky-position.ts rename to apps/scandic-web/stores/sticky-position.ts diff --git a/stores/tracking.ts b/apps/scandic-web/stores/tracking.ts similarity index 100% rename from stores/tracking.ts rename to apps/scandic-web/stores/tracking.ts diff --git a/tsconfig.json b/apps/scandic-web/tsconfig.json similarity index 100% rename from tsconfig.json rename to apps/scandic-web/tsconfig.json diff --git a/types/auth.d.ts b/apps/scandic-web/types/auth.d.ts similarity index 100% rename from types/auth.d.ts rename to apps/scandic-web/types/auth.d.ts diff --git a/types/authError.ts b/apps/scandic-web/types/authError.ts similarity index 100% rename from types/authError.ts rename to apps/scandic-web/types/authError.ts diff --git a/types/components/ancillaryCard.ts b/apps/scandic-web/types/components/ancillaryCard.ts similarity index 100% rename from types/components/ancillaryCard.ts rename to apps/scandic-web/types/components/ancillaryCard.ts diff --git a/types/components/blocks/Accordion.ts b/apps/scandic-web/types/components/blocks/Accordion.ts similarity index 100% rename from types/components/blocks/Accordion.ts rename to apps/scandic-web/types/components/blocks/Accordion.ts diff --git a/types/components/blocks/cardGallery.ts b/apps/scandic-web/types/components/blocks/cardGallery.ts similarity index 100% rename from types/components/blocks/cardGallery.ts rename to apps/scandic-web/types/components/blocks/cardGallery.ts diff --git a/types/components/blocks/cardsGrid.ts b/apps/scandic-web/types/components/blocks/cardsGrid.ts similarity index 100% rename from types/components/blocks/cardsGrid.ts rename to apps/scandic-web/types/components/blocks/cardsGrid.ts diff --git a/types/components/blocks/carouselCards.ts b/apps/scandic-web/types/components/blocks/carouselCards.ts similarity index 100% rename from types/components/blocks/carouselCards.ts rename to apps/scandic-web/types/components/blocks/carouselCards.ts diff --git a/types/components/blocks/dynamicContent.ts b/apps/scandic-web/types/components/blocks/dynamicContent.ts similarity index 100% rename from types/components/blocks/dynamicContent.ts rename to apps/scandic-web/types/components/blocks/dynamicContent.ts diff --git a/types/components/blocks/hotelListing.ts b/apps/scandic-web/types/components/blocks/hotelListing.ts similarity index 100% rename from types/components/blocks/hotelListing.ts rename to apps/scandic-web/types/components/blocks/hotelListing.ts diff --git a/types/components/blocks/index.ts b/apps/scandic-web/types/components/blocks/index.ts similarity index 100% rename from types/components/blocks/index.ts rename to apps/scandic-web/types/components/blocks/index.ts diff --git a/types/components/blocks/infoCard.ts b/apps/scandic-web/types/components/blocks/infoCard.ts similarity index 100% rename from types/components/blocks/infoCard.ts rename to apps/scandic-web/types/components/blocks/infoCard.ts diff --git a/types/components/blocks/shortcuts.ts b/apps/scandic-web/types/components/blocks/shortcuts.ts similarity index 100% rename from types/components/blocks/shortcuts.ts rename to apps/scandic-web/types/components/blocks/shortcuts.ts diff --git a/types/components/blocks/surprises.ts b/apps/scandic-web/types/components/blocks/surprises.ts similarity index 100% rename from types/components/blocks/surprises.ts rename to apps/scandic-web/types/components/blocks/surprises.ts diff --git a/types/components/blocks/table.ts b/apps/scandic-web/types/components/blocks/table.ts similarity index 100% rename from types/components/blocks/table.ts rename to apps/scandic-web/types/components/blocks/table.ts diff --git a/types/components/blocks/textCols.ts b/apps/scandic-web/types/components/blocks/textCols.ts similarity index 100% rename from types/components/blocks/textCols.ts rename to apps/scandic-web/types/components/blocks/textCols.ts diff --git a/types/components/blocks/uspGrid.ts b/apps/scandic-web/types/components/blocks/uspGrid.ts similarity index 100% rename from types/components/blocks/uspGrid.ts rename to apps/scandic-web/types/components/blocks/uspGrid.ts diff --git a/types/components/bookingWidget/enums.ts b/apps/scandic-web/types/components/bookingWidget/enums.ts similarity index 100% rename from types/components/bookingWidget/enums.ts rename to apps/scandic-web/types/components/bookingWidget/enums.ts diff --git a/types/components/bookingWidget/guestsRoomsPicker.ts b/apps/scandic-web/types/components/bookingWidget/guestsRoomsPicker.ts similarity index 100% rename from types/components/bookingWidget/guestsRoomsPicker.ts rename to apps/scandic-web/types/components/bookingWidget/guestsRoomsPicker.ts diff --git a/types/components/bookingWidget/index.ts b/apps/scandic-web/types/components/bookingWidget/index.ts similarity index 100% rename from types/components/bookingWidget/index.ts rename to apps/scandic-web/types/components/bookingWidget/index.ts diff --git a/types/components/buttonLink.ts b/apps/scandic-web/types/components/buttonLink.ts similarity index 100% rename from types/components/buttonLink.ts rename to apps/scandic-web/types/components/buttonLink.ts diff --git a/types/components/cardImage.ts b/apps/scandic-web/types/components/cardImage.ts similarity index 100% rename from types/components/cardImage.ts rename to apps/scandic-web/types/components/cardImage.ts diff --git a/types/components/checkbox/index.ts b/apps/scandic-web/types/components/checkbox/index.ts similarity index 100% rename from types/components/checkbox/index.ts rename to apps/scandic-web/types/components/checkbox/index.ts diff --git a/types/components/contentPage/hotelListingItem.ts b/apps/scandic-web/types/components/contentPage/hotelListingItem.ts similarity index 100% rename from types/components/contentPage/hotelListingItem.ts rename to apps/scandic-web/types/components/contentPage/hotelListingItem.ts diff --git a/types/components/countdown/index.ts b/apps/scandic-web/types/components/countdown/index.ts similarity index 100% rename from types/components/countdown/index.ts rename to apps/scandic-web/types/components/countdown/index.ts diff --git a/types/components/current/aside.ts b/apps/scandic-web/types/components/current/aside.ts similarity index 100% rename from types/components/current/aside.ts rename to apps/scandic-web/types/components/current/aside.ts diff --git a/types/components/current/asides/contact.ts b/apps/scandic-web/types/components/current/asides/contact.ts similarity index 100% rename from types/components/current/asides/contact.ts rename to apps/scandic-web/types/components/current/asides/contact.ts diff --git a/types/components/current/asides/puff.ts b/apps/scandic-web/types/components/current/asides/puff.ts similarity index 100% rename from types/components/current/asides/puff.ts rename to apps/scandic-web/types/components/current/asides/puff.ts diff --git a/types/components/current/asides/puffs.ts b/apps/scandic-web/types/components/current/asides/puffs.ts similarity index 100% rename from types/components/current/asides/puffs.ts rename to apps/scandic-web/types/components/current/asides/puffs.ts diff --git a/types/components/current/blocks.ts b/apps/scandic-web/types/components/current/blocks.ts similarity index 100% rename from types/components/current/blocks.ts rename to apps/scandic-web/types/components/current/blocks.ts diff --git a/types/components/current/blocks/text.ts b/apps/scandic-web/types/components/current/blocks/text.ts similarity index 100% rename from types/components/current/blocks/text.ts rename to apps/scandic-web/types/components/current/blocks/text.ts diff --git a/types/components/current/breadcrumbs.ts b/apps/scandic-web/types/components/current/breadcrumbs.ts similarity index 100% rename from types/components/current/breadcrumbs.ts rename to apps/scandic-web/types/components/current/breadcrumbs.ts diff --git a/types/components/current/contentPage.ts b/apps/scandic-web/types/components/current/contentPage.ts similarity index 100% rename from types/components/current/contentPage.ts rename to apps/scandic-web/types/components/current/contentPage.ts diff --git a/types/components/current/footer.ts b/apps/scandic-web/types/components/current/footer.ts similarity index 100% rename from types/components/current/footer.ts rename to apps/scandic-web/types/components/current/footer.ts diff --git a/types/components/current/header.ts b/apps/scandic-web/types/components/current/header.ts similarity index 100% rename from types/components/current/header.ts rename to apps/scandic-web/types/components/current/header.ts diff --git a/types/components/current/header/mainMenu.ts b/apps/scandic-web/types/components/current/header/mainMenu.ts similarity index 100% rename from types/components/current/header/mainMenu.ts rename to apps/scandic-web/types/components/current/header/mainMenu.ts diff --git a/types/components/current/header/topMenu.ts b/apps/scandic-web/types/components/current/header/topMenu.ts similarity index 100% rename from types/components/current/header/topMenu.ts rename to apps/scandic-web/types/components/current/header/topMenu.ts diff --git a/types/components/current/hero.ts b/apps/scandic-web/types/components/current/hero.ts similarity index 100% rename from types/components/current/hero.ts rename to apps/scandic-web/types/components/current/hero.ts diff --git a/types/components/current/languageSwitcher.ts b/apps/scandic-web/types/components/current/languageSwitcher.ts similarity index 100% rename from types/components/current/languageSwitcher.ts rename to apps/scandic-web/types/components/current/languageSwitcher.ts diff --git a/types/components/current/preamble.ts b/apps/scandic-web/types/components/current/preamble.ts similarity index 100% rename from types/components/current/preamble.ts rename to apps/scandic-web/types/components/current/preamble.ts diff --git a/types/components/current/subnavMobile.ts b/apps/scandic-web/types/components/current/subnavMobile.ts similarity index 100% rename from types/components/current/subnavMobile.ts rename to apps/scandic-web/types/components/current/subnavMobile.ts diff --git a/types/components/datepicker.ts b/apps/scandic-web/types/components/datepicker.ts similarity index 100% rename from types/components/datepicker.ts rename to apps/scandic-web/types/components/datepicker.ts diff --git a/types/components/deprecatedjsontohtml.ts b/apps/scandic-web/types/components/deprecatedjsontohtml.ts similarity index 100% rename from types/components/deprecatedjsontohtml.ts rename to apps/scandic-web/types/components/deprecatedjsontohtml.ts diff --git a/types/components/destinationOverviewPage/destinationsList/destinationsData.ts b/apps/scandic-web/types/components/destinationOverviewPage/destinationsList/destinationsData.ts similarity index 100% rename from types/components/destinationOverviewPage/destinationsList/destinationsData.ts rename to apps/scandic-web/types/components/destinationOverviewPage/destinationsList/destinationsData.ts diff --git a/types/components/dialog.ts b/apps/scandic-web/types/components/dialog.ts similarity index 100% rename from types/components/dialog.ts rename to apps/scandic-web/types/components/dialog.ts diff --git a/types/components/dropdown/dropdown.ts b/apps/scandic-web/types/components/dropdown/dropdown.ts similarity index 100% rename from types/components/dropdown/dropdown.ts rename to apps/scandic-web/types/components/dropdown/dropdown.ts diff --git a/types/components/footer/appDownloadIcons.ts b/apps/scandic-web/types/components/footer/appDownloadIcons.ts similarity index 100% rename from types/components/footer/appDownloadIcons.ts rename to apps/scandic-web/types/components/footer/appDownloadIcons.ts diff --git a/types/components/footer/footer.ts b/apps/scandic-web/types/components/footer/footer.ts similarity index 100% rename from types/components/footer/footer.ts rename to apps/scandic-web/types/components/footer/footer.ts diff --git a/types/components/footer/navigation.ts b/apps/scandic-web/types/components/footer/navigation.ts similarity index 100% rename from types/components/footer/navigation.ts rename to apps/scandic-web/types/components/footer/navigation.ts diff --git a/types/components/footer/socialIcons.ts b/apps/scandic-web/types/components/footer/socialIcons.ts similarity index 100% rename from types/components/footer/socialIcons.ts rename to apps/scandic-web/types/components/footer/socialIcons.ts diff --git a/types/components/footer/socialLink.ts b/apps/scandic-web/types/components/footer/socialLink.ts similarity index 100% rename from types/components/footer/socialLink.ts rename to apps/scandic-web/types/components/footer/socialLink.ts diff --git a/types/components/form/bookingwidget.ts b/apps/scandic-web/types/components/form/bookingwidget.ts similarity index 100% rename from types/components/form/bookingwidget.ts rename to apps/scandic-web/types/components/form/bookingwidget.ts diff --git a/types/components/form/filterChip.ts b/apps/scandic-web/types/components/form/filterChip.ts similarity index 100% rename from types/components/form/filterChip.ts rename to apps/scandic-web/types/components/form/filterChip.ts diff --git a/types/components/form/newPassword.ts b/apps/scandic-web/types/components/form/newPassword.ts similarity index 100% rename from types/components/form/newPassword.ts rename to apps/scandic-web/types/components/form/newPassword.ts diff --git a/types/components/form/phone.ts b/apps/scandic-web/types/components/form/phone.ts similarity index 100% rename from types/components/form/phone.ts rename to apps/scandic-web/types/components/form/phone.ts diff --git a/types/components/form/signupForm.ts b/apps/scandic-web/types/components/form/signupForm.ts similarity index 100% rename from types/components/form/signupForm.ts rename to apps/scandic-web/types/components/form/signupForm.ts diff --git a/types/components/header/avatar.ts b/apps/scandic-web/types/components/header/avatar.ts similarity index 100% rename from types/components/header/avatar.ts rename to apps/scandic-web/types/components/header/avatar.ts diff --git a/types/components/header/headerLink.ts b/apps/scandic-web/types/components/header/headerLink.ts similarity index 100% rename from types/components/header/headerLink.ts rename to apps/scandic-web/types/components/header/headerLink.ts diff --git a/types/components/header/logo.ts b/apps/scandic-web/types/components/header/logo.ts similarity index 100% rename from types/components/header/logo.ts rename to apps/scandic-web/types/components/header/logo.ts diff --git a/types/components/header/mainMenuButton.ts b/apps/scandic-web/types/components/header/mainMenuButton.ts similarity index 100% rename from types/components/header/mainMenuButton.ts rename to apps/scandic-web/types/components/header/mainMenuButton.ts diff --git a/types/components/header/megaMenu.ts b/apps/scandic-web/types/components/header/megaMenu.ts similarity index 100% rename from types/components/header/megaMenu.ts rename to apps/scandic-web/types/components/header/megaMenu.ts diff --git a/types/components/header/mobileMenu.ts b/apps/scandic-web/types/components/header/mobileMenu.ts similarity index 100% rename from types/components/header/mobileMenu.ts rename to apps/scandic-web/types/components/header/mobileMenu.ts diff --git a/types/components/header/navigationMenu.ts b/apps/scandic-web/types/components/header/navigationMenu.ts similarity index 100% rename from types/components/header/navigationMenu.ts rename to apps/scandic-web/types/components/header/navigationMenu.ts diff --git a/types/components/header/navigationMenuItem.ts b/apps/scandic-web/types/components/header/navigationMenuItem.ts similarity index 100% rename from types/components/header/navigationMenuItem.ts rename to apps/scandic-web/types/components/header/navigationMenuItem.ts diff --git a/types/components/header/navigationMenuList.ts b/apps/scandic-web/types/components/header/navigationMenuList.ts similarity index 100% rename from types/components/header/navigationMenuList.ts rename to apps/scandic-web/types/components/header/navigationMenuList.ts diff --git a/types/components/header/topLink.ts b/apps/scandic-web/types/components/header/topLink.ts similarity index 100% rename from types/components/header/topLink.ts rename to apps/scandic-web/types/components/header/topLink.ts diff --git a/types/components/header/topMenuButton.ts b/apps/scandic-web/types/components/header/topMenuButton.ts similarity index 100% rename from types/components/header/topMenuButton.ts rename to apps/scandic-web/types/components/header/topMenuButton.ts diff --git a/types/components/hotelFilterAndSort.ts b/apps/scandic-web/types/components/hotelFilterAndSort.ts similarity index 100% rename from types/components/hotelFilterAndSort.ts rename to apps/scandic-web/types/components/hotelFilterAndSort.ts diff --git a/types/components/hotelLogo.ts b/apps/scandic-web/types/components/hotelLogo.ts similarity index 100% rename from types/components/hotelLogo.ts rename to apps/scandic-web/types/components/hotelLogo.ts diff --git a/types/components/hotelPage/amenities.ts b/apps/scandic-web/types/components/hotelPage/amenities.ts similarity index 100% rename from types/components/hotelPage/amenities.ts rename to apps/scandic-web/types/components/hotelPage/amenities.ts diff --git a/types/components/hotelPage/facilities.ts b/apps/scandic-web/types/components/hotelPage/facilities.ts similarity index 100% rename from types/components/hotelPage/facilities.ts rename to apps/scandic-web/types/components/hotelPage/facilities.ts diff --git a/types/components/hotelPage/hotelPage.ts b/apps/scandic-web/types/components/hotelPage/hotelPage.ts similarity index 100% rename from types/components/hotelPage/hotelPage.ts rename to apps/scandic-web/types/components/hotelPage/hotelPage.ts diff --git a/types/components/hotelPage/map/dynamicMap.ts b/apps/scandic-web/types/components/hotelPage/map/dynamicMap.ts similarity index 100% rename from types/components/hotelPage/map/dynamicMap.ts rename to apps/scandic-web/types/components/hotelPage/map/dynamicMap.ts diff --git a/types/components/hotelPage/map/interactiveMap.ts b/apps/scandic-web/types/components/hotelPage/map/interactiveMap.ts similarity index 100% rename from types/components/hotelPage/map/interactiveMap.ts rename to apps/scandic-web/types/components/hotelPage/map/interactiveMap.ts diff --git a/types/components/hotelPage/map/mapCard.ts b/apps/scandic-web/types/components/hotelPage/map/mapCard.ts similarity index 100% rename from types/components/hotelPage/map/mapCard.ts rename to apps/scandic-web/types/components/hotelPage/map/mapCard.ts diff --git a/types/components/hotelPage/map/mapWithCardWrapper.ts b/apps/scandic-web/types/components/hotelPage/map/mapWithCardWrapper.ts similarity index 100% rename from types/components/hotelPage/map/mapWithCardWrapper.ts rename to apps/scandic-web/types/components/hotelPage/map/mapWithCardWrapper.ts diff --git a/types/components/hotelPage/map/sidebar.ts b/apps/scandic-web/types/components/hotelPage/map/sidebar.ts similarity index 100% rename from types/components/hotelPage/map/sidebar.ts rename to apps/scandic-web/types/components/hotelPage/map/sidebar.ts diff --git a/types/components/hotelPage/map/staticMap.ts b/apps/scandic-web/types/components/hotelPage/map/staticMap.ts similarity index 100% rename from types/components/hotelPage/map/staticMap.ts rename to apps/scandic-web/types/components/hotelPage/map/staticMap.ts diff --git a/types/components/hotelPage/meetingRooms.ts b/apps/scandic-web/types/components/hotelPage/meetingRooms.ts similarity index 100% rename from types/components/hotelPage/meetingRooms.ts rename to apps/scandic-web/types/components/hotelPage/meetingRooms.ts diff --git a/types/components/hotelPage/previewImages.ts b/apps/scandic-web/types/components/hotelPage/previewImages.ts similarity index 100% rename from types/components/hotelPage/previewImages.ts rename to apps/scandic-web/types/components/hotelPage/previewImages.ts diff --git a/types/components/hotelPage/room.ts b/apps/scandic-web/types/components/hotelPage/room.ts similarity index 100% rename from types/components/hotelPage/room.ts rename to apps/scandic-web/types/components/hotelPage/room.ts diff --git a/types/components/hotelPage/sidepeek/aboutTheHotel.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/aboutTheHotel.ts similarity index 100% rename from types/components/hotelPage/sidepeek/aboutTheHotel.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/aboutTheHotel.ts diff --git a/types/components/hotelPage/sidepeek/accessibility.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/accessibility.ts similarity index 100% rename from types/components/hotelPage/sidepeek/accessibility.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/accessibility.ts diff --git a/types/components/hotelPage/sidepeek/activities.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/activities.ts similarity index 100% rename from types/components/hotelPage/sidepeek/activities.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/activities.ts diff --git a/types/components/hotelPage/sidepeek/amenities.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/amenities.ts similarity index 100% rename from types/components/hotelPage/sidepeek/amenities.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/amenities.ts diff --git a/types/components/hotelPage/sidepeek/checkIn.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/checkIn.ts similarity index 100% rename from types/components/hotelPage/sidepeek/checkIn.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/checkIn.ts diff --git a/types/components/hotelPage/sidepeek/facility.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/facility.ts similarity index 100% rename from types/components/hotelPage/sidepeek/facility.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/facility.ts diff --git a/types/components/hotelPage/sidepeek/meetingsAndConferences.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/meetingsAndConferences.ts similarity index 100% rename from types/components/hotelPage/sidepeek/meetingsAndConferences.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/meetingsAndConferences.ts diff --git a/types/components/hotelPage/sidepeek/openingHours.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/openingHours.ts similarity index 100% rename from types/components/hotelPage/sidepeek/openingHours.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/openingHours.ts diff --git a/types/components/hotelPage/sidepeek/parking.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/parking.ts similarity index 100% rename from types/components/hotelPage/sidepeek/parking.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/parking.ts diff --git a/types/components/hotelPage/sidepeek/restaurantBar.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/restaurantBar.ts similarity index 100% rename from types/components/hotelPage/sidepeek/restaurantBar.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/restaurantBar.ts diff --git a/types/components/hotelPage/sidepeek/room.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/room.ts similarity index 100% rename from types/components/hotelPage/sidepeek/room.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/room.ts diff --git a/types/components/hotelPage/sidepeek/wellnessAndExercise.ts b/apps/scandic-web/types/components/hotelPage/sidepeek/wellnessAndExercise.ts similarity index 100% rename from types/components/hotelPage/sidepeek/wellnessAndExercise.ts rename to apps/scandic-web/types/components/hotelPage/sidepeek/wellnessAndExercise.ts diff --git a/types/components/hotelPage/subpage.ts b/apps/scandic-web/types/components/hotelPage/subpage.ts similarity index 100% rename from types/components/hotelPage/subpage.ts rename to apps/scandic-web/types/components/hotelPage/subpage.ts diff --git a/types/components/hotelPage/tabNavigation.ts b/apps/scandic-web/types/components/hotelPage/tabNavigation.ts similarity index 100% rename from types/components/hotelPage/tabNavigation.ts rename to apps/scandic-web/types/components/hotelPage/tabNavigation.ts diff --git a/types/components/hotelReservation/bookingConfirmation/actions/addToCalendar.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/addToCalendar.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/actions/addToCalendar.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/addToCalendar.ts diff --git a/types/components/hotelReservation/bookingConfirmation/actions/downloadInvoice.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/downloadInvoice.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/actions/downloadInvoice.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/downloadInvoice.ts diff --git a/types/components/hotelReservation/bookingConfirmation/actions/manageBooking.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/manageBooking.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/actions/manageBooking.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/actions/manageBooking.ts diff --git a/types/components/hotelReservation/bookingConfirmation/bookingConfirmation.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/bookingConfirmation.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/bookingConfirmation.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/bookingConfirmation.ts diff --git a/types/components/hotelReservation/bookingConfirmation/header.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/header.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/header.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/header.ts diff --git a/types/components/hotelReservation/bookingConfirmation/hotelDetails.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/hotelDetails.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/hotelDetails.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/hotelDetails.ts diff --git a/types/components/hotelReservation/bookingConfirmation/paymentDetails.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/paymentDetails.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/paymentDetails.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/paymentDetails.ts diff --git a/types/components/hotelReservation/bookingConfirmation/promo.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/promo.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/promo.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/promo.ts diff --git a/types/components/hotelReservation/bookingConfirmation/promos.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/promos.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/promos.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/promos.ts diff --git a/types/components/hotelReservation/bookingConfirmation/receipt.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/receipt.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/receipt.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/receipt.ts diff --git a/types/components/hotelReservation/bookingConfirmation/rooms.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/rooms.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/rooms.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/rooms.ts diff --git a/types/components/hotelReservation/bookingConfirmation/rooms/room.ts b/apps/scandic-web/types/components/hotelReservation/bookingConfirmation/rooms/room.ts similarity index 100% rename from types/components/hotelReservation/bookingConfirmation/rooms/room.ts rename to apps/scandic-web/types/components/hotelReservation/bookingConfirmation/rooms/room.ts diff --git a/types/components/hotelReservation/enterDetails/bedType.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/bedType.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/bedType.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/bedType.ts diff --git a/types/components/hotelReservation/enterDetails/breakfast.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/breakfast.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/breakfast.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/breakfast.ts diff --git a/types/components/hotelReservation/enterDetails/details.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/details.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/details.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/details.ts diff --git a/types/components/hotelReservation/enterDetails/hotelHeader.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/hotelHeader.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/hotelHeader.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/hotelHeader.ts diff --git a/types/components/hotelReservation/enterDetails/payment.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/payment.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/payment.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/payment.ts diff --git a/types/components/hotelReservation/enterDetails/priceChangeDialog.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/priceChangeDialog.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/priceChangeDialog.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/priceChangeDialog.ts diff --git a/types/components/hotelReservation/enterDetails/room.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/room.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/room.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/room.ts diff --git a/types/components/hotelReservation/enterDetails/summary.ts b/apps/scandic-web/types/components/hotelReservation/enterDetails/summary.ts similarity index 100% rename from types/components/hotelReservation/enterDetails/summary.ts rename to apps/scandic-web/types/components/hotelReservation/enterDetails/summary.ts diff --git a/types/components/hotelReservation/hotelSidePeek.ts b/apps/scandic-web/types/components/hotelReservation/hotelSidePeek.ts similarity index 100% rename from types/components/hotelReservation/hotelSidePeek.ts rename to apps/scandic-web/types/components/hotelReservation/hotelSidePeek.ts diff --git a/types/components/hotelReservation/price.ts b/apps/scandic-web/types/components/hotelReservation/price.ts similarity index 100% rename from types/components/hotelReservation/price.ts rename to apps/scandic-web/types/components/hotelReservation/price.ts diff --git a/types/components/hotelReservation/selectHotel/availabilityInput.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/availabilityInput.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/availabilityInput.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/availabilityInput.ts diff --git a/types/components/hotelReservation/selectHotel/filterAndSortModal.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/filterAndSortModal.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/filterAndSortModal.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/filterAndSortModal.ts diff --git a/types/components/hotelReservation/selectHotel/filterCheckbox.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/filterCheckbox.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/filterCheckbox.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/filterCheckbox.ts diff --git a/types/components/hotelReservation/selectHotel/hotePriceListProps.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/hotePriceListProps.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotePriceListProps.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/hotePriceListProps.ts diff --git a/types/components/hotelReservation/selectHotel/hotelCardListingProps.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/hotelCardListingProps.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotelCardListingProps.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/hotelCardListingProps.ts diff --git a/types/components/hotelReservation/selectHotel/hotelCardProps.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/hotelCardProps.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotelCardProps.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/hotelCardProps.ts diff --git a/types/components/hotelReservation/selectHotel/hotelFilters.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/hotelFilters.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotelFilters.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/hotelFilters.ts diff --git a/types/components/hotelReservation/selectHotel/hotelSorter.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/hotelSorter.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/hotelSorter.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/hotelSorter.ts diff --git a/types/components/hotelReservation/selectHotel/map.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/map.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/map.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/map.ts diff --git a/types/components/hotelReservation/selectHotel/noAvailabilityAlert.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/noAvailabilityAlert.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/noAvailabilityAlert.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/noAvailabilityAlert.ts diff --git a/types/components/hotelReservation/selectHotel/priceCardProps.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/priceCardProps.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/priceCardProps.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/priceCardProps.ts diff --git a/types/components/hotelReservation/selectHotel/selectHotel.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/selectHotel.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/selectHotel.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/selectHotel.ts diff --git a/types/components/hotelReservation/selectHotel/selectHotelSearchParams.ts b/apps/scandic-web/types/components/hotelReservation/selectHotel/selectHotelSearchParams.ts similarity index 100% rename from types/components/hotelReservation/selectHotel/selectHotelSearchParams.ts rename to apps/scandic-web/types/components/hotelReservation/selectHotel/selectHotelSearchParams.ts diff --git a/types/components/hotelReservation/selectRate/flexibilityOption.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/flexibilityOption.ts similarity index 100% rename from types/components/hotelReservation/selectRate/flexibilityOption.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/flexibilityOption.ts diff --git a/types/components/hotelReservation/selectRate/hotelInfoCard.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/hotelInfoCard.ts similarity index 100% rename from types/components/hotelReservation/selectRate/hotelInfoCard.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/hotelInfoCard.ts diff --git a/types/components/hotelReservation/selectRate/hotelSelectionHeader.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/hotelSelectionHeader.ts similarity index 100% rename from types/components/hotelReservation/selectRate/hotelSelectionHeader.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/hotelSelectionHeader.ts diff --git a/types/components/hotelReservation/selectRate/imageGallery.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/imageGallery.ts similarity index 100% rename from types/components/hotelReservation/selectRate/imageGallery.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/imageGallery.ts diff --git a/types/components/hotelReservation/selectRate/rateSummary.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/rateSummary.ts similarity index 100% rename from types/components/hotelReservation/selectRate/rateSummary.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/rateSummary.ts diff --git a/types/components/hotelReservation/selectRate/roomCard.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/roomCard.ts similarity index 100% rename from types/components/hotelReservation/selectRate/roomCard.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/roomCard.ts diff --git a/types/components/hotelReservation/selectRate/roomFilter.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/roomFilter.ts similarity index 100% rename from types/components/hotelReservation/selectRate/roomFilter.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/roomFilter.ts diff --git a/types/components/hotelReservation/selectRate/roomSelection.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/roomSelection.ts similarity index 100% rename from types/components/hotelReservation/selectRate/roomSelection.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/roomSelection.ts diff --git a/types/components/hotelReservation/selectRate/roomsContainer.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/roomsContainer.ts similarity index 100% rename from types/components/hotelReservation/selectRate/roomsContainer.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/roomsContainer.ts diff --git a/types/components/hotelReservation/selectRate/sectionAccordion.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/sectionAccordion.ts similarity index 100% rename from types/components/hotelReservation/selectRate/sectionAccordion.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/sectionAccordion.ts diff --git a/types/components/hotelReservation/selectRate/selectRate.ts b/apps/scandic-web/types/components/hotelReservation/selectRate/selectRate.ts similarity index 100% rename from types/components/hotelReservation/selectRate/selectRate.ts rename to apps/scandic-web/types/components/hotelReservation/selectRate/selectRate.ts diff --git a/types/components/hotelReservation/sidePanel.ts b/apps/scandic-web/types/components/hotelReservation/sidePanel.ts similarity index 100% rename from types/components/hotelReservation/sidePanel.ts rename to apps/scandic-web/types/components/hotelReservation/sidePanel.ts diff --git a/types/components/hotelReservation/sidePeek.ts b/apps/scandic-web/types/components/hotelReservation/sidePeek.ts similarity index 100% rename from types/components/hotelReservation/sidePeek.ts rename to apps/scandic-web/types/components/hotelReservation/sidePeek.ts diff --git a/types/components/hotelReservation/signupPromo.ts b/apps/scandic-web/types/components/hotelReservation/signupPromo.ts similarity index 100% rename from types/components/hotelReservation/signupPromo.ts rename to apps/scandic-web/types/components/hotelReservation/signupPromo.ts diff --git a/types/components/hotelReservation/summary.ts b/apps/scandic-web/types/components/hotelReservation/summary.ts similarity index 100% rename from types/components/hotelReservation/summary.ts rename to apps/scandic-web/types/components/hotelReservation/summary.ts diff --git a/types/components/hotelReservation/toggleSidePeekProps.ts b/apps/scandic-web/types/components/hotelReservation/toggleSidePeekProps.ts similarity index 100% rename from types/components/hotelReservation/toggleSidePeekProps.ts rename to apps/scandic-web/types/components/hotelReservation/toggleSidePeekProps.ts diff --git a/types/components/hotelReservation/tripAdvisorProps.ts b/apps/scandic-web/types/components/hotelReservation/tripAdvisorProps.ts similarity index 100% rename from types/components/hotelReservation/tripAdvisorProps.ts rename to apps/scandic-web/types/components/hotelReservation/tripAdvisorProps.ts diff --git a/types/components/icon.ts b/apps/scandic-web/types/components/icon.ts similarity index 100% rename from types/components/icon.ts rename to apps/scandic-web/types/components/icon.ts diff --git a/types/components/image.ts b/apps/scandic-web/types/components/image.ts similarity index 100% rename from types/components/image.ts rename to apps/scandic-web/types/components/image.ts diff --git a/types/components/imageContainer.ts b/apps/scandic-web/types/components/imageContainer.ts similarity index 100% rename from types/components/imageContainer.ts rename to apps/scandic-web/types/components/imageContainer.ts diff --git a/types/components/imageGallery.ts b/apps/scandic-web/types/components/imageGallery.ts similarity index 100% rename from types/components/imageGallery.ts rename to apps/scandic-web/types/components/imageGallery.ts diff --git a/types/components/imageVault.ts b/apps/scandic-web/types/components/imageVault.ts similarity index 100% rename from types/components/imageVault.ts rename to apps/scandic-web/types/components/imageVault.ts diff --git a/types/components/languageSwitcher/languageSwitcher.ts b/apps/scandic-web/types/components/languageSwitcher/languageSwitcher.ts similarity index 100% rename from types/components/languageSwitcher/languageSwitcher.ts rename to apps/scandic-web/types/components/languageSwitcher/languageSwitcher.ts diff --git a/types/components/lightbox/lightbox.ts b/apps/scandic-web/types/components/lightbox/lightbox.ts similarity index 100% rename from types/components/lightbox/lightbox.ts rename to apps/scandic-web/types/components/lightbox/lightbox.ts diff --git a/types/components/maps/coordinates.ts b/apps/scandic-web/types/components/maps/coordinates.ts similarity index 100% rename from types/components/maps/coordinates.ts rename to apps/scandic-web/types/components/maps/coordinates.ts diff --git a/types/components/maps/destinationMarkers.ts b/apps/scandic-web/types/components/maps/destinationMarkers.ts similarity index 100% rename from types/components/maps/destinationMarkers.ts rename to apps/scandic-web/types/components/maps/destinationMarkers.ts diff --git a/types/components/maps/poiMarker.ts b/apps/scandic-web/types/components/maps/poiMarker.ts similarity index 100% rename from types/components/maps/poiMarker.ts rename to apps/scandic-web/types/components/maps/poiMarker.ts diff --git a/types/components/maps/staticMap.ts b/apps/scandic-web/types/components/maps/staticMap.ts similarity index 100% rename from types/components/maps/staticMap.ts rename to apps/scandic-web/types/components/maps/staticMap.ts diff --git a/types/components/max-width.ts b/apps/scandic-web/types/components/max-width.ts similarity index 100% rename from types/components/max-width.ts rename to apps/scandic-web/types/components/max-width.ts diff --git a/types/components/myPages/friend.ts b/apps/scandic-web/types/components/myPages/friend.ts similarity index 100% rename from types/components/myPages/friend.ts rename to apps/scandic-web/types/components/myPages/friend.ts diff --git a/types/components/myPages/header.ts b/apps/scandic-web/types/components/myPages/header.ts similarity index 100% rename from types/components/myPages/header.ts rename to apps/scandic-web/types/components/myPages/header.ts diff --git a/types/components/myPages/membership.ts b/apps/scandic-web/types/components/myPages/membership.ts similarity index 100% rename from types/components/myPages/membership.ts rename to apps/scandic-web/types/components/myPages/membership.ts diff --git a/types/components/myPages/membershipNumber.ts b/apps/scandic-web/types/components/myPages/membershipNumber.ts similarity index 100% rename from types/components/myPages/membershipNumber.ts rename to apps/scandic-web/types/components/myPages/membershipNumber.ts diff --git a/types/components/myPages/myPage/accountPage.ts b/apps/scandic-web/types/components/myPages/myPage/accountPage.ts similarity index 100% rename from types/components/myPages/myPage/accountPage.ts rename to apps/scandic-web/types/components/myPages/myPage/accountPage.ts diff --git a/types/components/myPages/myPage/earnAndBurn.ts b/apps/scandic-web/types/components/myPages/myPage/earnAndBurn.ts similarity index 100% rename from types/components/myPages/myPage/earnAndBurn.ts rename to apps/scandic-web/types/components/myPages/myPage/earnAndBurn.ts diff --git a/types/components/myPages/myProfile/creditCards.ts b/apps/scandic-web/types/components/myPages/myProfile/creditCards.ts similarity index 100% rename from types/components/myPages/myProfile/creditCards.ts rename to apps/scandic-web/types/components/myPages/myProfile/creditCards.ts diff --git a/types/components/myPages/myProfile/edit.ts b/apps/scandic-web/types/components/myPages/myProfile/edit.ts similarity index 100% rename from types/components/myPages/myProfile/edit.ts rename to apps/scandic-web/types/components/myPages/myProfile/edit.ts diff --git a/types/components/myPages/myProfile/layout.ts b/apps/scandic-web/types/components/myPages/myProfile/layout.ts similarity index 100% rename from types/components/myPages/myProfile/layout.ts rename to apps/scandic-web/types/components/myPages/myProfile/layout.ts diff --git a/types/components/myPages/myStay/ancillaries.ts b/apps/scandic-web/types/components/myPages/myStay/ancillaries.ts similarity index 100% rename from types/components/myPages/myStay/ancillaries.ts rename to apps/scandic-web/types/components/myPages/myStay/ancillaries.ts diff --git a/types/components/myPages/pagination.ts b/apps/scandic-web/types/components/myPages/pagination.ts similarity index 100% rename from types/components/myPages/pagination.ts rename to apps/scandic-web/types/components/myPages/pagination.ts diff --git a/types/components/myPages/points.ts b/apps/scandic-web/types/components/myPages/points.ts similarity index 100% rename from types/components/myPages/points.ts rename to apps/scandic-web/types/components/myPages/points.ts diff --git a/types/components/myPages/rewards.ts b/apps/scandic-web/types/components/myPages/rewards.ts similarity index 100% rename from types/components/myPages/rewards.ts rename to apps/scandic-web/types/components/myPages/rewards.ts diff --git a/types/components/myPages/stays/button.ts b/apps/scandic-web/types/components/myPages/stays/button.ts similarity index 100% rename from types/components/myPages/stays/button.ts rename to apps/scandic-web/types/components/myPages/stays/button.ts diff --git a/types/components/myPages/stays/page.ts b/apps/scandic-web/types/components/myPages/stays/page.ts similarity index 100% rename from types/components/myPages/stays/page.ts rename to apps/scandic-web/types/components/myPages/stays/page.ts diff --git a/types/components/myPages/stays/previous.ts b/apps/scandic-web/types/components/myPages/stays/previous.ts similarity index 100% rename from types/components/myPages/stays/previous.ts rename to apps/scandic-web/types/components/myPages/stays/previous.ts diff --git a/types/components/myPages/stays/stayCard.ts b/apps/scandic-web/types/components/myPages/stays/stayCard.ts similarity index 100% rename from types/components/myPages/stays/stayCard.ts rename to apps/scandic-web/types/components/myPages/stays/stayCard.ts diff --git a/types/components/myPages/stays/upcoming.ts b/apps/scandic-web/types/components/myPages/stays/upcoming.ts similarity index 100% rename from types/components/myPages/stays/upcoming.ts rename to apps/scandic-web/types/components/myPages/stays/upcoming.ts diff --git a/types/components/myPages/user.ts b/apps/scandic-web/types/components/myPages/user.ts similarity index 100% rename from types/components/myPages/user.ts rename to apps/scandic-web/types/components/myPages/user.ts diff --git a/types/components/overviewTable.ts b/apps/scandic-web/types/components/overviewTable.ts similarity index 100% rename from types/components/overviewTable.ts rename to apps/scandic-web/types/components/overviewTable.ts diff --git a/types/components/search.ts b/apps/scandic-web/types/components/search.ts similarity index 100% rename from types/components/search.ts rename to apps/scandic-web/types/components/search.ts diff --git a/types/components/sidePeeks/roomSidePeek.ts b/apps/scandic-web/types/components/sidePeeks/roomSidePeek.ts similarity index 100% rename from types/components/sidePeeks/roomSidePeek.ts rename to apps/scandic-web/types/components/sidePeeks/roomSidePeek.ts diff --git a/types/components/sidebar/index.ts b/apps/scandic-web/types/components/sidebar/index.ts similarity index 100% rename from types/components/sidebar/index.ts rename to apps/scandic-web/types/components/sidebar/index.ts diff --git a/types/components/sidebar/joinLoyaltyContact.ts b/apps/scandic-web/types/components/sidebar/joinLoyaltyContact.ts similarity index 100% rename from types/components/sidebar/joinLoyaltyContact.ts rename to apps/scandic-web/types/components/sidebar/joinLoyaltyContact.ts diff --git a/types/components/switch/index.ts b/apps/scandic-web/types/components/switch/index.ts similarity index 100% rename from types/components/switch/index.ts rename to apps/scandic-web/types/components/switch/index.ts diff --git a/types/components/teaserCard.ts b/apps/scandic-web/types/components/teaserCard.ts similarity index 100% rename from types/components/teaserCard.ts rename to apps/scandic-web/types/components/teaserCard.ts diff --git a/types/components/tooltip.ts b/apps/scandic-web/types/components/tooltip.ts similarity index 100% rename from types/components/tooltip.ts rename to apps/scandic-web/types/components/tooltip.ts diff --git a/types/components/tracking.ts b/apps/scandic-web/types/components/tracking.ts similarity index 100% rename from types/components/tracking.ts rename to apps/scandic-web/types/components/tracking.ts diff --git a/types/contexts/enter-details.ts b/apps/scandic-web/types/contexts/enter-details.ts similarity index 100% rename from types/contexts/enter-details.ts rename to apps/scandic-web/types/contexts/enter-details.ts diff --git a/types/contexts/hotel-data.ts b/apps/scandic-web/types/contexts/hotel-data.ts similarity index 100% rename from types/contexts/hotel-data.ts rename to apps/scandic-web/types/contexts/hotel-data.ts diff --git a/types/contexts/rates.ts b/apps/scandic-web/types/contexts/rates.ts similarity index 100% rename from types/contexts/rates.ts rename to apps/scandic-web/types/contexts/rates.ts diff --git a/types/contexts/room.ts b/apps/scandic-web/types/contexts/room.ts similarity index 100% rename from types/contexts/room.ts rename to apps/scandic-web/types/contexts/room.ts diff --git a/types/discriminatedUnion.ts b/apps/scandic-web/types/discriminatedUnion.ts similarity index 100% rename from types/discriminatedUnion.ts rename to apps/scandic-web/types/discriminatedUnion.ts diff --git a/types/enums/accountPage.ts b/apps/scandic-web/types/enums/accountPage.ts similarity index 100% rename from types/enums/accountPage.ts rename to apps/scandic-web/types/enums/accountPage.ts diff --git a/types/enums/alert.ts b/apps/scandic-web/types/enums/alert.ts similarity index 100% rename from types/enums/alert.ts rename to apps/scandic-web/types/enums/alert.ts diff --git a/types/enums/blocks.ts b/apps/scandic-web/types/enums/blocks.ts similarity index 100% rename from types/enums/blocks.ts rename to apps/scandic-web/types/enums/blocks.ts diff --git a/types/enums/breakfast.ts b/apps/scandic-web/types/enums/breakfast.ts similarity index 100% rename from types/enums/breakfast.ts rename to apps/scandic-web/types/enums/breakfast.ts diff --git a/types/enums/cardGallery.ts b/apps/scandic-web/types/enums/cardGallery.ts similarity index 100% rename from types/enums/cardGallery.ts rename to apps/scandic-web/types/enums/cardGallery.ts diff --git a/types/enums/cards.ts b/apps/scandic-web/types/enums/cards.ts similarity index 100% rename from types/enums/cards.ts rename to apps/scandic-web/types/enums/cards.ts diff --git a/types/enums/cardsGrid.ts b/apps/scandic-web/types/enums/cardsGrid.ts similarity index 100% rename from types/enums/cardsGrid.ts rename to apps/scandic-web/types/enums/cardsGrid.ts diff --git a/types/enums/carouselCards.ts b/apps/scandic-web/types/enums/carouselCards.ts similarity index 100% rename from types/enums/carouselCards.ts rename to apps/scandic-web/types/enums/carouselCards.ts diff --git a/types/enums/collectionPage.ts b/apps/scandic-web/types/enums/collectionPage.ts similarity index 100% rename from types/enums/collectionPage.ts rename to apps/scandic-web/types/enums/collectionPage.ts diff --git a/types/enums/content.ts b/apps/scandic-web/types/enums/content.ts similarity index 100% rename from types/enums/content.ts rename to apps/scandic-web/types/enums/content.ts diff --git a/types/enums/contentPage.ts b/apps/scandic-web/types/enums/contentPage.ts similarity index 100% rename from types/enums/contentPage.ts rename to apps/scandic-web/types/enums/contentPage.ts diff --git a/types/enums/country.ts b/apps/scandic-web/types/enums/country.ts similarity index 100% rename from types/enums/country.ts rename to apps/scandic-web/types/enums/country.ts diff --git a/types/enums/currency.ts b/apps/scandic-web/types/enums/currency.ts similarity index 100% rename from types/enums/currency.ts rename to apps/scandic-web/types/enums/currency.ts diff --git a/types/enums/destinationCityPage.ts b/apps/scandic-web/types/enums/destinationCityPage.ts similarity index 100% rename from types/enums/destinationCityPage.ts rename to apps/scandic-web/types/enums/destinationCityPage.ts diff --git a/types/enums/destinationCountryPage.ts b/apps/scandic-web/types/enums/destinationCountryPage.ts similarity index 100% rename from types/enums/destinationCountryPage.ts rename to apps/scandic-web/types/enums/destinationCountryPage.ts diff --git a/types/enums/destinationOverviewPage.ts b/apps/scandic-web/types/enums/destinationOverviewPage.ts similarity index 100% rename from types/enums/destinationOverviewPage.ts rename to apps/scandic-web/types/enums/destinationOverviewPage.ts diff --git a/types/enums/dynamicContent.ts b/apps/scandic-web/types/enums/dynamicContent.ts similarity index 100% rename from types/enums/dynamicContent.ts rename to apps/scandic-web/types/enums/dynamicContent.ts diff --git a/types/enums/facilities.ts b/apps/scandic-web/types/enums/facilities.ts similarity index 100% rename from types/enums/facilities.ts rename to apps/scandic-web/types/enums/facilities.ts diff --git a/types/enums/hotelFilterAndSort.ts b/apps/scandic-web/types/enums/hotelFilterAndSort.ts similarity index 100% rename from types/enums/hotelFilterAndSort.ts rename to apps/scandic-web/types/enums/hotelFilterAndSort.ts diff --git a/types/enums/hotelListing.ts b/apps/scandic-web/types/enums/hotelListing.ts similarity index 100% rename from types/enums/hotelListing.ts rename to apps/scandic-web/types/enums/hotelListing.ts diff --git a/types/enums/hotelPage.ts b/apps/scandic-web/types/enums/hotelPage.ts similarity index 100% rename from types/enums/hotelPage.ts rename to apps/scandic-web/types/enums/hotelPage.ts diff --git a/types/enums/hotelType.ts b/apps/scandic-web/types/enums/hotelType.ts similarity index 100% rename from types/enums/hotelType.ts rename to apps/scandic-web/types/enums/hotelType.ts diff --git a/types/enums/joinLoyaltyContact.ts b/apps/scandic-web/types/enums/joinLoyaltyContact.ts similarity index 100% rename from types/enums/joinLoyaltyContact.ts rename to apps/scandic-web/types/enums/joinLoyaltyContact.ts diff --git a/types/enums/loyaltyPage.ts b/apps/scandic-web/types/enums/loyaltyPage.ts similarity index 100% rename from types/enums/loyaltyPage.ts rename to apps/scandic-web/types/enums/loyaltyPage.ts diff --git a/types/enums/meetingRooms.ts b/apps/scandic-web/types/enums/meetingRooms.ts similarity index 100% rename from types/enums/meetingRooms.ts rename to apps/scandic-web/types/enums/meetingRooms.ts diff --git a/types/enums/packages.ts b/apps/scandic-web/types/enums/packages.ts similarity index 100% rename from types/enums/packages.ts rename to apps/scandic-web/types/enums/packages.ts diff --git a/types/enums/pointOfInterest.ts b/apps/scandic-web/types/enums/pointOfInterest.ts similarity index 100% rename from types/enums/pointOfInterest.ts rename to apps/scandic-web/types/enums/pointOfInterest.ts diff --git a/types/enums/scriptedCard.ts b/apps/scandic-web/types/enums/scriptedCard.ts similarity index 100% rename from types/enums/scriptedCard.ts rename to apps/scandic-web/types/enums/scriptedCard.ts diff --git a/types/enums/sidebar.ts b/apps/scandic-web/types/enums/sidebar.ts similarity index 100% rename from types/enums/sidebar.ts rename to apps/scandic-web/types/enums/sidebar.ts diff --git a/types/enums/signatureHotel.ts b/apps/scandic-web/types/enums/signatureHotel.ts similarity index 100% rename from types/enums/signatureHotel.ts rename to apps/scandic-web/types/enums/signatureHotel.ts diff --git a/types/enums/startPage.ts b/apps/scandic-web/types/enums/startPage.ts similarity index 100% rename from types/enums/startPage.ts rename to apps/scandic-web/types/enums/startPage.ts diff --git a/types/enums/step.ts b/apps/scandic-web/types/enums/step.ts similarity index 100% rename from types/enums/step.ts rename to apps/scandic-web/types/enums/step.ts diff --git a/types/enums/transactions.ts b/apps/scandic-web/types/enums/transactions.ts similarity index 100% rename from types/enums/transactions.ts rename to apps/scandic-web/types/enums/transactions.ts diff --git a/types/enums/uspGrid.ts b/apps/scandic-web/types/enums/uspGrid.ts similarity index 100% rename from types/enums/uspGrid.ts rename to apps/scandic-web/types/enums/uspGrid.ts diff --git a/types/fetch.ts b/apps/scandic-web/types/fetch.ts similarity index 100% rename from types/fetch.ts rename to apps/scandic-web/types/fetch.ts diff --git a/types/graphql.d.ts b/apps/scandic-web/types/graphql.d.ts similarity index 100% rename from types/graphql.d.ts rename to apps/scandic-web/types/graphql.d.ts diff --git a/types/hotel.ts b/apps/scandic-web/types/hotel.ts similarity index 100% rename from types/hotel.ts rename to apps/scandic-web/types/hotel.ts diff --git a/types/i18n.ts b/apps/scandic-web/types/i18n.ts similarity index 100% rename from types/i18n.ts rename to apps/scandic-web/types/i18n.ts diff --git a/types/image.ts b/apps/scandic-web/types/image.ts similarity index 100% rename from types/image.ts rename to apps/scandic-web/types/image.ts diff --git a/types/jwt.d.ts b/apps/scandic-web/types/jwt.d.ts similarity index 100% rename from types/jwt.d.ts rename to apps/scandic-web/types/jwt.d.ts diff --git a/types/middleware.ts b/apps/scandic-web/types/middleware.ts similarity index 100% rename from types/middleware.ts rename to apps/scandic-web/types/middleware.ts diff --git a/types/next/error.ts b/apps/scandic-web/types/next/error.ts similarity index 100% rename from types/next/error.ts rename to apps/scandic-web/types/next/error.ts diff --git a/types/params.ts b/apps/scandic-web/types/params.ts similarity index 100% rename from types/params.ts rename to apps/scandic-web/types/params.ts diff --git a/types/providers/enter-details.ts b/apps/scandic-web/types/providers/enter-details.ts similarity index 100% rename from types/providers/enter-details.ts rename to apps/scandic-web/types/providers/enter-details.ts diff --git a/types/providers/hotel-data.ts b/apps/scandic-web/types/providers/hotel-data.ts similarity index 100% rename from types/providers/hotel-data.ts rename to apps/scandic-web/types/providers/hotel-data.ts diff --git a/types/providers/rates.ts b/apps/scandic-web/types/providers/rates.ts similarity index 100% rename from types/providers/rates.ts rename to apps/scandic-web/types/providers/rates.ts diff --git a/types/providers/room.ts b/apps/scandic-web/types/providers/room.ts similarity index 100% rename from types/providers/room.ts rename to apps/scandic-web/types/providers/room.ts diff --git a/types/request.ts b/apps/scandic-web/types/request.ts similarity index 100% rename from types/request.ts rename to apps/scandic-web/types/request.ts diff --git a/types/requests/asides/contact.ts b/apps/scandic-web/types/requests/asides/contact.ts similarity index 100% rename from types/requests/asides/contact.ts rename to apps/scandic-web/types/requests/asides/contact.ts diff --git a/types/requests/asides/puff.ts b/apps/scandic-web/types/requests/asides/puff.ts similarity index 100% rename from types/requests/asides/puff.ts rename to apps/scandic-web/types/requests/asides/puff.ts diff --git a/types/requests/blocks/list.ts b/apps/scandic-web/types/requests/blocks/list.ts similarity index 100% rename from types/requests/blocks/list.ts rename to apps/scandic-web/types/requests/blocks/list.ts diff --git a/types/requests/blocks/puff.ts b/apps/scandic-web/types/requests/blocks/puff.ts similarity index 100% rename from types/requests/blocks/puff.ts rename to apps/scandic-web/types/requests/blocks/puff.ts diff --git a/types/requests/blocks/text.ts b/apps/scandic-web/types/requests/blocks/text.ts similarity index 100% rename from types/requests/blocks/text.ts rename to apps/scandic-web/types/requests/blocks/text.ts diff --git a/types/requests/contentType.ts b/apps/scandic-web/types/requests/contentType.ts similarity index 100% rename from types/requests/contentType.ts rename to apps/scandic-web/types/requests/contentType.ts diff --git a/types/requests/currentBlockPage.ts b/apps/scandic-web/types/requests/currentBlockPage.ts similarity index 100% rename from types/requests/currentBlockPage.ts rename to apps/scandic-web/types/requests/currentBlockPage.ts diff --git a/types/requests/currentHeader.ts b/apps/scandic-web/types/requests/currentHeader.ts similarity index 100% rename from types/requests/currentHeader.ts rename to apps/scandic-web/types/requests/currentHeader.ts diff --git a/types/requests/embeds.ts b/apps/scandic-web/types/requests/embeds.ts similarity index 100% rename from types/requests/embeds.ts rename to apps/scandic-web/types/requests/embeds.ts diff --git a/types/requests/entry.ts b/apps/scandic-web/types/requests/entry.ts similarity index 100% rename from types/requests/entry.ts rename to apps/scandic-web/types/requests/entry.ts diff --git a/types/requests/hero.ts b/apps/scandic-web/types/requests/hero.ts similarity index 100% rename from types/requests/hero.ts rename to apps/scandic-web/types/requests/hero.ts diff --git a/types/requests/imageContainer.ts b/apps/scandic-web/types/requests/imageContainer.ts similarity index 100% rename from types/requests/imageContainer.ts rename to apps/scandic-web/types/requests/imageContainer.ts diff --git a/types/requests/languageSwitcher.ts b/apps/scandic-web/types/requests/languageSwitcher.ts similarity index 100% rename from types/requests/languageSwitcher.ts rename to apps/scandic-web/types/requests/languageSwitcher.ts diff --git a/types/requests/myPages/breadcrumbs.ts b/apps/scandic-web/types/requests/myPages/breadcrumbs.ts similarity index 100% rename from types/requests/myPages/breadcrumbs.ts rename to apps/scandic-web/types/requests/myPages/breadcrumbs.ts diff --git a/types/requests/packages.ts b/apps/scandic-web/types/requests/packages.ts similarity index 100% rename from types/requests/packages.ts rename to apps/scandic-web/types/requests/packages.ts diff --git a/types/requests/pageLinks.ts b/apps/scandic-web/types/requests/pageLinks.ts similarity index 100% rename from types/requests/pageLinks.ts rename to apps/scandic-web/types/requests/pageLinks.ts diff --git a/types/requests/preamble.ts b/apps/scandic-web/types/requests/preamble.ts similarity index 100% rename from types/requests/preamble.ts rename to apps/scandic-web/types/requests/preamble.ts diff --git a/types/requests/puff.ts b/apps/scandic-web/types/requests/puff.ts similarity index 100% rename from types/requests/puff.ts rename to apps/scandic-web/types/requests/puff.ts diff --git a/types/requests/rte.ts b/apps/scandic-web/types/requests/rte.ts similarity index 100% rename from types/requests/rte.ts rename to apps/scandic-web/types/requests/rte.ts diff --git a/types/requests/system.ts b/apps/scandic-web/types/requests/system.ts similarity index 100% rename from types/requests/system.ts rename to apps/scandic-web/types/requests/system.ts diff --git a/types/requests/trackingData.ts b/apps/scandic-web/types/requests/trackingData.ts similarity index 100% rename from types/requests/trackingData.ts rename to apps/scandic-web/types/requests/trackingData.ts diff --git a/types/requests/utils/all.ts b/apps/scandic-web/types/requests/utils/all.ts similarity index 100% rename from types/requests/utils/all.ts rename to apps/scandic-web/types/requests/utils/all.ts diff --git a/types/requests/utils/asset.ts b/apps/scandic-web/types/requests/utils/asset.ts similarity index 100% rename from types/requests/utils/asset.ts rename to apps/scandic-web/types/requests/utils/asset.ts diff --git a/types/requests/utils/edges.ts b/apps/scandic-web/types/requests/utils/edges.ts similarity index 100% rename from types/requests/utils/edges.ts rename to apps/scandic-web/types/requests/utils/edges.ts diff --git a/types/requests/utils/embeds.ts b/apps/scandic-web/types/requests/utils/embeds.ts similarity index 100% rename from types/requests/utils/embeds.ts rename to apps/scandic-web/types/requests/utils/embeds.ts diff --git a/types/requests/utils/pageLink.ts b/apps/scandic-web/types/requests/utils/pageLink.ts similarity index 100% rename from types/requests/utils/pageLink.ts rename to apps/scandic-web/types/requests/utils/pageLink.ts diff --git a/types/requests/utils/refs.ts b/apps/scandic-web/types/requests/utils/refs.ts similarity index 100% rename from types/requests/utils/refs.ts rename to apps/scandic-web/types/requests/utils/refs.ts diff --git a/types/requests/utils/typename.ts b/apps/scandic-web/types/requests/utils/typename.ts similarity index 100% rename from types/requests/utils/typename.ts rename to apps/scandic-web/types/requests/utils/typename.ts diff --git a/types/routes.ts b/apps/scandic-web/types/routes.ts similarity index 100% rename from types/routes.ts rename to apps/scandic-web/types/routes.ts diff --git a/types/rte/attrs.ts b/apps/scandic-web/types/rte/attrs.ts similarity index 100% rename from types/rte/attrs.ts rename to apps/scandic-web/types/rte/attrs.ts diff --git a/types/rte/enums.ts b/apps/scandic-web/types/rte/enums.ts similarity index 100% rename from types/rte/enums.ts rename to apps/scandic-web/types/rte/enums.ts diff --git a/types/rte/node.ts b/apps/scandic-web/types/rte/node.ts similarity index 100% rename from types/rte/node.ts rename to apps/scandic-web/types/rte/node.ts diff --git a/types/rte/option.ts b/apps/scandic-web/types/rte/option.ts similarity index 100% rename from types/rte/option.ts rename to apps/scandic-web/types/rte/option.ts diff --git a/types/sitemap.ts b/apps/scandic-web/types/sitemap.ts similarity index 100% rename from types/sitemap.ts rename to apps/scandic-web/types/sitemap.ts diff --git a/types/stores/enter-details.ts b/apps/scandic-web/types/stores/enter-details.ts similarity index 100% rename from types/stores/enter-details.ts rename to apps/scandic-web/types/stores/enter-details.ts diff --git a/types/stores/hotel-data.ts b/apps/scandic-web/types/stores/hotel-data.ts similarity index 100% rename from types/stores/hotel-data.ts rename to apps/scandic-web/types/stores/hotel-data.ts diff --git a/types/stores/rates.ts b/apps/scandic-web/types/stores/rates.ts similarity index 100% rename from types/stores/rates.ts rename to apps/scandic-web/types/stores/rates.ts diff --git a/types/tokens.ts b/apps/scandic-web/types/tokens.ts similarity index 100% rename from types/tokens.ts rename to apps/scandic-web/types/tokens.ts diff --git a/types/transitionTypes/jsontohtml.ts b/apps/scandic-web/types/transitionTypes/jsontohtml.ts similarity index 100% rename from types/transitionTypes/jsontohtml.ts rename to apps/scandic-web/types/transitionTypes/jsontohtml.ts diff --git a/types/transitionTypes/rte/attrs.ts b/apps/scandic-web/types/transitionTypes/rte/attrs.ts similarity index 100% rename from types/transitionTypes/rte/attrs.ts rename to apps/scandic-web/types/transitionTypes/rte/attrs.ts diff --git a/types/transitionTypes/rte/enums.ts b/apps/scandic-web/types/transitionTypes/rte/enums.ts similarity index 100% rename from types/transitionTypes/rte/enums.ts rename to apps/scandic-web/types/transitionTypes/rte/enums.ts diff --git a/types/transitionTypes/rte/node.ts b/apps/scandic-web/types/transitionTypes/rte/node.ts similarity index 100% rename from types/transitionTypes/rte/node.ts rename to apps/scandic-web/types/transitionTypes/rte/node.ts diff --git a/types/transitionTypes/rte/option.ts b/apps/scandic-web/types/transitionTypes/rte/option.ts similarity index 100% rename from types/transitionTypes/rte/option.ts rename to apps/scandic-web/types/transitionTypes/rte/option.ts diff --git a/types/trpc/meta.ts b/apps/scandic-web/types/trpc/meta.ts similarity index 100% rename from types/trpc/meta.ts rename to apps/scandic-web/types/trpc/meta.ts diff --git a/types/trpc/routers/booking/confirmation.ts b/apps/scandic-web/types/trpc/routers/booking/confirmation.ts similarity index 100% rename from types/trpc/routers/booking/confirmation.ts rename to apps/scandic-web/types/trpc/routers/booking/confirmation.ts diff --git a/types/trpc/routers/contentstack/accountPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/accountPage.ts similarity index 100% rename from types/trpc/routers/contentstack/accountPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/accountPage.ts diff --git a/types/trpc/routers/contentstack/blocks.ts b/apps/scandic-web/types/trpc/routers/contentstack/blocks.ts similarity index 100% rename from types/trpc/routers/contentstack/blocks.ts rename to apps/scandic-web/types/trpc/routers/contentstack/blocks.ts diff --git a/types/trpc/routers/contentstack/breadcrumbs.ts b/apps/scandic-web/types/trpc/routers/contentstack/breadcrumbs.ts similarity index 100% rename from types/trpc/routers/contentstack/breadcrumbs.ts rename to apps/scandic-web/types/trpc/routers/contentstack/breadcrumbs.ts diff --git a/types/trpc/routers/contentstack/collectionPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/collectionPage.ts similarity index 100% rename from types/trpc/routers/contentstack/collectionPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/collectionPage.ts diff --git a/types/trpc/routers/contentstack/contentPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/contentPage.ts similarity index 100% rename from types/trpc/routers/contentstack/contentPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/contentPage.ts diff --git a/types/trpc/routers/contentstack/destinationCityPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/destinationCityPage.ts similarity index 100% rename from types/trpc/routers/contentstack/destinationCityPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/destinationCityPage.ts diff --git a/types/trpc/routers/contentstack/destinationCountryPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/destinationCountryPage.ts similarity index 100% rename from types/trpc/routers/contentstack/destinationCountryPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/destinationCountryPage.ts diff --git a/types/trpc/routers/contentstack/destinationOverviewPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/destinationOverviewPage.ts similarity index 100% rename from types/trpc/routers/contentstack/destinationOverviewPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/destinationOverviewPage.ts diff --git a/types/trpc/routers/contentstack/footer.ts b/apps/scandic-web/types/trpc/routers/contentstack/footer.ts similarity index 100% rename from types/trpc/routers/contentstack/footer.ts rename to apps/scandic-web/types/trpc/routers/contentstack/footer.ts diff --git a/types/trpc/routers/contentstack/header.ts b/apps/scandic-web/types/trpc/routers/contentstack/header.ts similarity index 100% rename from types/trpc/routers/contentstack/header.ts rename to apps/scandic-web/types/trpc/routers/contentstack/header.ts diff --git a/types/trpc/routers/contentstack/hotelPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/hotelPage.ts similarity index 100% rename from types/trpc/routers/contentstack/hotelPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/hotelPage.ts diff --git a/types/trpc/routers/contentstack/loyaltyPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/loyaltyPage.ts similarity index 100% rename from types/trpc/routers/contentstack/loyaltyPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/loyaltyPage.ts diff --git a/types/trpc/routers/contentstack/metadata.ts b/apps/scandic-web/types/trpc/routers/contentstack/metadata.ts similarity index 100% rename from types/trpc/routers/contentstack/metadata.ts rename to apps/scandic-web/types/trpc/routers/contentstack/metadata.ts diff --git a/types/trpc/routers/contentstack/partner.ts b/apps/scandic-web/types/trpc/routers/contentstack/partner.ts similarity index 100% rename from types/trpc/routers/contentstack/partner.ts rename to apps/scandic-web/types/trpc/routers/contentstack/partner.ts diff --git a/types/trpc/routers/contentstack/sidebar.ts b/apps/scandic-web/types/trpc/routers/contentstack/sidebar.ts similarity index 100% rename from types/trpc/routers/contentstack/sidebar.ts rename to apps/scandic-web/types/trpc/routers/contentstack/sidebar.ts diff --git a/types/trpc/routers/contentstack/siteConfig.ts b/apps/scandic-web/types/trpc/routers/contentstack/siteConfig.ts similarity index 100% rename from types/trpc/routers/contentstack/siteConfig.ts rename to apps/scandic-web/types/trpc/routers/contentstack/siteConfig.ts diff --git a/types/trpc/routers/contentstack/startPage.ts b/apps/scandic-web/types/trpc/routers/contentstack/startPage.ts similarity index 100% rename from types/trpc/routers/contentstack/startPage.ts rename to apps/scandic-web/types/trpc/routers/contentstack/startPage.ts diff --git a/types/trpc/routers/hotel/availability.ts b/apps/scandic-web/types/trpc/routers/hotel/availability.ts similarity index 100% rename from types/trpc/routers/hotel/availability.ts rename to apps/scandic-web/types/trpc/routers/hotel/availability.ts diff --git a/types/trpc/routers/hotel/filter.ts b/apps/scandic-web/types/trpc/routers/hotel/filter.ts similarity index 100% rename from types/trpc/routers/hotel/filter.ts rename to apps/scandic-web/types/trpc/routers/hotel/filter.ts diff --git a/types/trpc/routers/hotel/hotel.ts b/apps/scandic-web/types/trpc/routers/hotel/hotel.ts similarity index 100% rename from types/trpc/routers/hotel/hotel.ts rename to apps/scandic-web/types/trpc/routers/hotel/hotel.ts diff --git a/types/trpc/routers/hotel/locations.ts b/apps/scandic-web/types/trpc/routers/hotel/locations.ts similarity index 100% rename from types/trpc/routers/hotel/locations.ts rename to apps/scandic-web/types/trpc/routers/hotel/locations.ts diff --git a/types/trpc/routers/hotel/rate.ts b/apps/scandic-web/types/trpc/routers/hotel/rate.ts similarity index 100% rename from types/trpc/routers/hotel/rate.ts rename to apps/scandic-web/types/trpc/routers/hotel/rate.ts diff --git a/types/trpc/routers/hotel/roomAvailability.ts b/apps/scandic-web/types/trpc/routers/hotel/roomAvailability.ts similarity index 100% rename from types/trpc/routers/hotel/roomAvailability.ts rename to apps/scandic-web/types/trpc/routers/hotel/roomAvailability.ts diff --git a/types/trpc/routers/utils/embeds.ts b/apps/scandic-web/types/trpc/routers/utils/embeds.ts similarity index 100% rename from types/trpc/routers/utils/embeds.ts rename to apps/scandic-web/types/trpc/routers/utils/embeds.ts diff --git a/types/user.ts b/apps/scandic-web/types/user.ts similarity index 100% rename from types/user.ts rename to apps/scandic-web/types/user.ts diff --git a/types/window.d.ts b/apps/scandic-web/types/window.d.ts similarity index 100% rename from types/window.d.ts rename to apps/scandic-web/types/window.d.ts diff --git a/utils/aes.ts b/apps/scandic-web/utils/aes.ts similarity index 100% rename from utils/aes.ts rename to apps/scandic-web/utils/aes.ts diff --git a/utils/cache.ts b/apps/scandic-web/utils/cache.ts similarity index 100% rename from utils/cache.ts rename to apps/scandic-web/utils/cache.ts diff --git a/utils/clientSession.ts b/apps/scandic-web/utils/clientSession.ts similarity index 100% rename from utils/clientSession.ts rename to apps/scandic-web/utils/clientSession.ts diff --git a/utils/contactConfig.ts b/apps/scandic-web/utils/contactConfig.ts similarity index 100% rename from utils/contactConfig.ts rename to apps/scandic-web/utils/contactConfig.ts diff --git a/utils/dateFormatting.ts b/apps/scandic-web/utils/dateFormatting.ts similarity index 100% rename from utils/dateFormatting.ts rename to apps/scandic-web/utils/dateFormatting.ts diff --git a/utils/debounce.ts b/apps/scandic-web/utils/debounce.ts similarity index 100% rename from utils/debounce.ts rename to apps/scandic-web/utils/debounce.ts diff --git a/utils/entry.ts b/apps/scandic-web/utils/entry.ts similarity index 100% rename from utils/entry.ts rename to apps/scandic-web/utils/entry.ts diff --git a/utils/facilityCards.ts b/apps/scandic-web/utils/facilityCards.ts similarity index 100% rename from utils/facilityCards.ts rename to apps/scandic-web/utils/facilityCards.ts diff --git a/utils/generateMetadata.ts b/apps/scandic-web/utils/generateMetadata.ts similarity index 100% rename from utils/generateMetadata.ts rename to apps/scandic-web/utils/generateMetadata.ts diff --git a/utils/generateTag.ts b/apps/scandic-web/utils/generateTag.ts similarity index 100% rename from utils/generateTag.ts rename to apps/scandic-web/utils/generateTag.ts diff --git a/utils/imageGallery.ts b/apps/scandic-web/utils/imageGallery.ts similarity index 100% rename from utils/imageGallery.ts rename to apps/scandic-web/utils/imageGallery.ts diff --git a/utils/imageVault.ts b/apps/scandic-web/utils/imageVault.ts similarity index 100% rename from utils/imageVault.ts rename to apps/scandic-web/utils/imageVault.ts diff --git a/utils/isValidJson.ts b/apps/scandic-web/utils/isValidJson.ts similarity index 100% rename from utils/isValidJson.ts rename to apps/scandic-web/utils/isValidJson.ts diff --git a/utils/jsonSchemas.ts b/apps/scandic-web/utils/jsonSchemas.ts similarity index 100% rename from utils/jsonSchemas.ts rename to apps/scandic-web/utils/jsonSchemas.ts diff --git a/utils/languages.ts b/apps/scandic-web/utils/languages.ts similarity index 100% rename from utils/languages.ts rename to apps/scandic-web/utils/languages.ts diff --git a/utils/loyaltyTable.ts b/apps/scandic-web/utils/loyaltyTable.ts similarity index 100% rename from utils/loyaltyTable.ts rename to apps/scandic-web/utils/loyaltyTable.ts diff --git a/utils/map.ts b/apps/scandic-web/utils/map.ts similarity index 100% rename from utils/map.ts rename to apps/scandic-web/utils/map.ts diff --git a/utils/maskValue.ts b/apps/scandic-web/utils/maskValue.ts similarity index 100% rename from utils/maskValue.ts rename to apps/scandic-web/utils/maskValue.ts diff --git a/utils/maskvalue.test.ts b/apps/scandic-web/utils/maskvalue.test.ts similarity index 100% rename from utils/maskvalue.test.ts rename to apps/scandic-web/utils/maskvalue.test.ts diff --git a/utils/membershipLevels.ts b/apps/scandic-web/utils/membershipLevels.ts similarity index 100% rename from utils/membershipLevels.ts rename to apps/scandic-web/utils/membershipLevels.ts diff --git a/utils/merge.ts b/apps/scandic-web/utils/merge.ts similarity index 100% rename from utils/merge.ts rename to apps/scandic-web/utils/merge.ts diff --git a/utils/numberFormatting.ts b/apps/scandic-web/utils/numberFormatting.ts similarity index 100% rename from utils/numberFormatting.ts rename to apps/scandic-web/utils/numberFormatting.ts diff --git a/utils/rangeArray.ts b/apps/scandic-web/utils/rangeArray.ts similarity index 100% rename from utils/rangeArray.ts rename to apps/scandic-web/utils/rangeArray.ts diff --git a/utils/rewards.ts b/apps/scandic-web/utils/rewards.ts similarity index 100% rename from utils/rewards.ts rename to apps/scandic-web/utils/rewards.ts diff --git a/utils/safeTry.ts b/apps/scandic-web/utils/safeTry.ts similarity index 100% rename from utils/safeTry.ts rename to apps/scandic-web/utils/safeTry.ts diff --git a/utils/session.ts b/apps/scandic-web/utils/session.ts similarity index 100% rename from utils/session.ts rename to apps/scandic-web/utils/session.ts diff --git a/utils/sitemap.ts b/apps/scandic-web/utils/sitemap.ts similarity index 100% rename from utils/sitemap.ts rename to apps/scandic-web/utils/sitemap.ts diff --git a/utils/tabbable.ts b/apps/scandic-web/utils/tabbable.ts similarity index 100% rename from utils/tabbable.ts rename to apps/scandic-web/utils/tabbable.ts diff --git a/utils/timeout.ts b/apps/scandic-web/utils/timeout.ts similarity index 100% rename from utils/timeout.ts rename to apps/scandic-web/utils/timeout.ts diff --git a/utils/tracking.ts b/apps/scandic-web/utils/tracking.ts similarity index 100% rename from utils/tracking.ts rename to apps/scandic-web/utils/tracking.ts diff --git a/utils/url.ts b/apps/scandic-web/utils/url.ts similarity index 100% rename from utils/url.ts rename to apps/scandic-web/utils/url.ts diff --git a/utils/user.ts b/apps/scandic-web/utils/user.ts similarity index 100% rename from utils/user.ts rename to apps/scandic-web/utils/user.ts diff --git a/utils/webviews.ts b/apps/scandic-web/utils/webviews.ts similarity index 100% rename from utils/webviews.ts rename to apps/scandic-web/utils/webviews.ts diff --git a/utils/zod/arrayValidator.ts b/apps/scandic-web/utils/zod/arrayValidator.ts similarity index 100% rename from utils/zod/arrayValidator.ts rename to apps/scandic-web/utils/zod/arrayValidator.ts diff --git a/utils/zod/numberValidator.ts b/apps/scandic-web/utils/zod/numberValidator.ts similarity index 100% rename from utils/zod/numberValidator.ts rename to apps/scandic-web/utils/zod/numberValidator.ts diff --git a/utils/zod/passwordValidator.ts b/apps/scandic-web/utils/zod/passwordValidator.ts similarity index 100% rename from utils/zod/passwordValidator.ts rename to apps/scandic-web/utils/zod/passwordValidator.ts diff --git a/utils/zod/phoneValidator.ts b/apps/scandic-web/utils/zod/phoneValidator.ts similarity index 100% rename from utils/zod/phoneValidator.ts rename to apps/scandic-web/utils/zod/phoneValidator.ts diff --git a/utils/zod/stringValidator.ts b/apps/scandic-web/utils/zod/stringValidator.ts similarity index 100% rename from utils/zod/stringValidator.ts rename to apps/scandic-web/utils/zod/stringValidator.ts diff --git a/lint-staged.config.mjs b/lint-staged.config.mjs new file mode 100644 index 000000000..e4be87024 --- /dev/null +++ b/lint-staged.config.mjs @@ -0,0 +1,3 @@ +// Root export is required for composing multiple configs +// but we don't want to actually do anything here +export default { '*.placeholder': '' } diff --git a/next-env.d.ts b/next-env.d.ts deleted file mode 100644 index 40c3d6809..000000000 --- a/next-env.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -/// -/// - -// NOTE: This file should not be edited -// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index ce6dd0bb9..000000000 --- a/package-lock.json +++ /dev/null @@ -1,23466 +0,0 @@ -{ - "name": "web", - "version": "0.1.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "web", - "version": "0.1.0", - "hasInstallScript": true, - "dependencies": { - "@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.27", - "@contentstack/live-preview-utils": "^3.0.0", - "@hookform/error-message": "^2.0.1", - "@hookform/resolvers": "^3.3.4", - "@netlify/blobs": "^8.1.0", - "@netlify/functions": "^3.0.0", - "@netlify/plugin-nextjs": "^5.9.4", - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/sdk-metrics": "^1.25.1", - "@radix-ui/react-dialog": "^1.1.1", - "@radix-ui/react-slot": "^1.0.2", - "@radix-ui/react-visually-hidden": "^1.1.0", - "@react-aria/ssr": "^3.9.5", - "@scandic-hotels/design-system": "git+https://x-token-auth:$DESIGN_SYSTEM_ACCESS_TOKEN@bitbucket.org/scandic-swap/design-system.git#v0.1.0-rc.9", - "@sentry/nextjs": "^8.41.0", - "@t3-oss/env-nextjs": "^0.9.2", - "@tanstack/react-query": "^5.28.6", - "@tanstack/react-query-devtools": "^5.64.2", - "@tanstack/react-table": "^8.20.5", - "@trpc/client": "^11.0.0-rc.467", - "@trpc/react-query": "^11.0.0-rc.467", - "@trpc/server": "^11.0.0-rc.467", - "@tsparticles/confetti": "^3.5.0", - "@types/geojson": "^7946.0.16", - "@types/supercluster": "^7.1.3", - "@vercel/otel": "^1.9.1", - "@vis.gl/react-google-maps": "^1.2.0", - "class-variance-authority": "^0.7.0", - "clean-deep": "^3.4.0", - "contentstack": "^3.23.0", - "dayjs": "^1.11.10", - "deepmerge": "^4.3.1", - "downshift": "^9.0.8", - "embla-carousel": "^8.5.2", - "embla-carousel-react": "^8.5.2", - "fast-deep-equal": "^3.1.3", - "fetch-retry": "^6.0.0", - "framer-motion": "^11.3.28", - "graphql": "^16.8.1", - "graphql-request": "^6.1.0", - "graphql-tag": "^2.12.6", - "html-react-parser": "^5.2.2", - "ics": "^3.8.1", - "immer": "10.1.1", - "input-otp": "^1.4.2", - "json-stable-stringify-without-jsonify": "^1.0.1", - "libphonenumber-js": "^1.10.60", - "nanoid": "^5.0.9", - "next": "^14.2.18", - "next-auth": "5.0.0-beta.19", - "react": "^18", - "react-aria-components": "^1.6.0", - "react-day-picker": "^9.0.8", - "react-dom": "^18", - "react-feather": "^2.0.10", - "react-hook-form": "^7.51.2", - "react-international-phone": "^4.2.6", - "react-intl": "^6.6.8", - "react-to-print": "^3.0.2", - "server-only": "^0.0.1", - "slugify": "^1.6.6", - "sonner": "^1.7.0", - "supercluster": "^8.0.1", - "superjson": "^2.2.1", - "usehooks-ts": "3.1.0", - "uuid": "^11.0.5", - "zod": "^3.22.4", - "zustand": "^4.5.2" - }, - "devDependencies": { - "@svgr/webpack": "^8.1.0", - "@testing-library/jest-dom": "^6.4.6", - "@testing-library/react": "^16.0.0", - "@testing-library/user-event": "^14.5.2", - "@types/jest": "^29.5.12", - "@types/json-stable-stringify-without-jsonify": "^1.0.2", - "@types/node": "^20", - "@types/react": "^18", - "@types/react-dom": "^18", - "@typescript-eslint/eslint-plugin": "^8.17.0", - "@typescript-eslint/parser": "^8.17.0", - "cypress": "^13.6.6", - "dotenv": "^16.4.5", - "eslint": "^8", - "eslint-config-next": "^14.0.4", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-simple-import-sort": "^12.1.0", - "husky": "^9.0.11", - "jest": "^29.7.0", - "jest-environment-jsdom": "^29.7.0", - "jiti": "^1.21.0", - "json-sort-cli": "^4.0.4", - "lint-staged": "^15.2.2", - "netlify-plugin-cypress": "^2.2.1", - "prettier": "^3.2.5", - "schema-dts": "^1.1.2", - "start-server-and-test": "^2.0.3", - "ts-node": "^10.9.2", - "typescript": "^5", - "typescript-plugin-css-modules": "^5.1.0" - }, - "engines": { - "node": "18" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@adobe/css-tools": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz", - "integrity": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==", - "dev": true - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@auth/core": { - "version": "0.37.2", - "resolved": "https://registry.npmjs.org/@auth/core/-/core-0.37.2.tgz", - "integrity": "sha512-kUvzyvkcd6h1vpeMAojK2y7+PAV5H+0Cc9+ZlKYDFhDY31AlvsB+GW5vNO4qE3Y07KeQgvNO9U0QUx/fN62kBw==", - "dependencies": { - "@panva/hkdf": "^1.2.1", - "@types/cookie": "0.6.0", - "cookie": "0.7.1", - "jose": "^5.9.3", - "oauth4webapi": "^3.0.0", - "preact": "10.11.3", - "preact-render-to-string": "5.2.3" - }, - "peerDependencies": { - "@simplewebauthn/browser": "^9.0.1", - "@simplewebauthn/server": "^9.0.2", - "nodemailer": "^6.8.0" - }, - "peerDependenciesMeta": { - "@simplewebauthn/browser": { - "optional": true - }, - "@simplewebauthn/server": { - "optional": true - }, - "nodemailer": { - "optional": true - } - } - }, - "node_modules/@azure/abort-controller": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz", - "integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/core-auth": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.7.2.tgz", - "integrity": "sha512-Igm/S3fDYmnMq1uKS38Ae1/m37B3zigdlZw+kocwEhh5GjyKjPrXKO2J6rzpC1wAxrNil/jX9BJRqBshyjnF3g==", - "dependencies": { - "@azure/abort-controller": "^2.0.0", - "@azure/core-util": "^1.1.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/core-client": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/@azure/core-client/-/core-client-1.9.2.tgz", - "integrity": "sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==", - "dependencies": { - "@azure/abort-controller": "^2.0.0", - "@azure/core-auth": "^1.4.0", - "@azure/core-rest-pipeline": "^1.9.1", - "@azure/core-tracing": "^1.0.0", - "@azure/core-util": "^1.6.1", - "@azure/logger": "^1.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/core-rest-pipeline": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.16.1.tgz", - "integrity": "sha512-ExPSbgjwCoht6kB7B4MeZoBAxcQSIl29r/bPeazZJx50ej4JJCByimLOrZoIsurISNyJQQHf30b3JfqC3Hb88A==", - "dependencies": { - "@azure/abort-controller": "^2.0.0", - "@azure/core-auth": "^1.4.0", - "@azure/core-tracing": "^1.0.1", - "@azure/core-util": "^1.9.0", - "@azure/logger": "^1.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/core-rest-pipeline/node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@azure/core-rest-pipeline/node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@azure/core-rest-pipeline/node_modules/https-proxy-agent": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", - "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@azure/core-tracing": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.1.2.tgz", - "integrity": "sha512-dawW9ifvWAWmUm9/h+/UQ2jrdvjCJ7VJEuCJ6XVNudzcOwm53BFZH4Q845vjfgoUAM8ZxokvVNxNxAITc502YA==", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/core-util": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.0.tgz", - "integrity": "sha512-AfalUQ1ZppaKuxPPMsFEUdX6GZPB3d9paR9d/TTL7Ow2De8cJaC7ibi7kWVlFAVPCYo31OcnGymc0R89DX8Oaw==", - "dependencies": { - "@azure/abort-controller": "^2.0.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/logger": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.1.2.tgz", - "integrity": "sha512-l170uE7bsKpIU6B/giRc9i4NI0Mj+tANMMMxf7Zi/5cKzEqPayP7+X1WPrG7e+91JgY8N+7K7nF2WOi7iVhXvg==", - "dependencies": { - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/monitor-opentelemetry-exporter": { - "version": "1.0.0-beta.27", - "resolved": "https://registry.npmjs.org/@azure/monitor-opentelemetry-exporter/-/monitor-opentelemetry-exporter-1.0.0-beta.27.tgz", - "integrity": "sha512-21iXu9ubtPB7iO3ghnzMMdB0KwHpz7Zl1a9xSBR3Gl8IDUlXOBjMn6OT9+ycj9VZrTyEKiV59T9VTf0IlokPYQ==", - "license": "MIT", - "dependencies": { - "@azure/core-auth": "^1.3.0", - "@azure/core-client": "^1.0.0", - "@azure/core-rest-pipeline": "^1.1.0", - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/api-logs": "^0.53.0", - "@opentelemetry/core": "^1.26.0", - "@opentelemetry/resources": "^1.26.0", - "@opentelemetry/sdk-logs": "^0.53.0", - "@opentelemetry/sdk-metrics": "^1.26.0", - "@opentelemetry/sdk-trace-base": "^1.26.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "tslib": "^2.7.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@azure/monitor-opentelemetry-exporter/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", - "license": "MIT", - "dependencies": { - "@babel/highlight": "^7.24.2", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.5", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "license": "ISC" - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.5.tgz", - "integrity": "sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.24.5", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.5.tgz", - "integrity": "sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz", - "integrity": "sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==", - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-simple-access": "^7.24.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/helper-validator-identifier": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.5.tgz", - "integrity": "sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", - "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz", - "integrity": "sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.5.tgz", - "integrity": "sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-function-name": "^7.23.0", - "@babel/template": "^7.24.0", - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz", - "integrity": "sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==", - "license": "MIT", - "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.5.tgz", - "integrity": "sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==", - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.5", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/highlight/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "license": "MIT" - }, - "node_modules/@babel/highlight/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/highlight/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz", - "integrity": "sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==", - "license": "MIT", - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.5.tgz", - "integrity": "sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", - "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", - "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", - "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", - "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", - "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", - "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", - "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", - "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", - "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.5.tgz", - "integrity": "sha512-sMfBc3OxghjC95BkYrYocHL3NaOplrcaunblzwXhGmlPwpmfsxr4vK+mBBt49r+S240vahmv+kUxkeKgs+haCw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", - "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", - "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.4", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.5.tgz", - "integrity": "sha512-gWkLP25DFj2dwe9Ck8uwMOpko4YsqyfZJrOmqqcegeDYEbp7rmn4U6UQZNj08UF6MaX39XenSpKRCvpDRBtZ7Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-replace-supers": "^7.24.1", - "@babel/helper-split-export-declaration": "^7.24.5", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", - "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/template": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.5.tgz", - "integrity": "sha512-SZuuLyfxvsm+Ah57I/i1HVjveBENYK9ue8MJ7qkc7ndoNjqquJiElzA7f5yaAXjyW2hKojosOTAQQRX50bPSVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", - "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", - "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", - "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", - "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", - "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", - "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", - "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", - "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", - "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", - "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", - "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", - "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", - "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", - "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", - "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", - "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", - "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", - "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.5.tgz", - "integrity": "sha512-7EauQHszLGM3ay7a161tTQH7fj+3vVM/gThlz5HpFtnygTxjrlvoeq7MPVA1Vy9Q555OB8SnAOsMkLShNkkrHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", - "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-replace-supers": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", - "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.5.tgz", - "integrity": "sha512-xWCkmwKT+ihmA6l7SSTpk8e4qQl/274iNbSKRRS8mpqFR32ksy36+a+LWY8OXCCEefF8WFlnOHVsaDI2231wBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.5.tgz", - "integrity": "sha512-9Co00MqZ2aoky+4j2jhofErthm6QVLKbpQrvz20c3CH9KQCLHyNB+t2ya4/UrRpQGR+Wrwjg9foopoeSdnHOkA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", - "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.5.tgz", - "integrity": "sha512-JM4MHZqnWR04jPMujQDTBVRnqxpLLpx2tkn7iPn+Hmsc0Gnb79yvRWOkvqFOx3Z7P7VxiRIR22c4eGSNj87OBQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", - "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.24.1.tgz", - "integrity": "sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz", - "integrity": "sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", - "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.23.3", - "@babel/types": "^7.23.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", - "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz", - "integrity": "sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", - "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", - "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", - "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", - "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", - "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", - "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.5.tgz", - "integrity": "sha512-UTGnhYVZtTAjdwOTzT+sCyXmTn8AhaxOS/MjG9REclZ6ULHWF9KoCZur0HSGU7hk8PdBFKKbYe6+gqdXWz84Jg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.5.tgz", - "integrity": "sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.24.5", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/plugin-syntax-typescript": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", - "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", - "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", - "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", - "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-react": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.1.tgz", - "integrity": "sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-transform-react-display-name": "^7.24.1", - "@babel/plugin-transform-react-jsx": "^7.23.4", - "@babel/plugin-transform-react-jsx-development": "^7.22.5", - "@babel/plugin-transform-react-pure-annotations": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz", - "integrity": "sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-syntax-jsx": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-typescript": "^7.24.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@babel/runtime": { - "version": "7.25.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz", - "integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==", - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz", - "integrity": "sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/types": "^7.24.5", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@contentstack/live-preview-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@contentstack/live-preview-utils/-/live-preview-utils-3.0.0.tgz", - "integrity": "sha512-zu2Xxg02MaTYMp+H+Q7YO5NfhhGe0wRuanpmF6Z3NUWS/oebr0yvJtqTctbE7NVw/dYpRRkviMe7p9CpIg5oaQ==", - "dependencies": { - "@preact/compat": "^17.1.2", - "@preact/signals": "^1.2.2", - "classnames": "^2.5.1", - "deepsignal": "^1.5.0", - "goober": "^2.1.14", - "lodash-es": "^4.17.21", - "mustache": "^4.2.0", - "preact": "^10.19.5", - "uuid": "^8.3.2" - }, - "optionalDependencies": { - "@rollup/rollup-linux-x64-gnu": "4.9.5" - } - }, - "node_modules/@contentstack/live-preview-utils/node_modules/deepsignal": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/deepsignal/-/deepsignal-1.5.0.tgz", - "integrity": "sha512-bFywDpBUUWMs576H2dgLFLLFuQ/UWXbzHfKD98MZTfGsl7+twIzvz4ihCNrRrZ/Emz3kqJaNIAp5eBWUEWhnAw==", - "peerDependencies": { - "@preact/signals": "^1.1.4", - "@preact/signals-core": "^1.5.1", - "@preact/signals-react": "^1.3.8 || ^2.0.0", - "preact": "^10.16.0" - }, - "peerDependenciesMeta": { - "@preact/signals": { - "optional": true - }, - "@preact/signals-core": { - "optional": true - }, - "@preact/signals-react": { - "optional": true - }, - "preact": { - "optional": true - } - } - }, - "node_modules/@contentstack/live-preview-utils/node_modules/preact": { - "version": "10.24.3", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.24.3.tgz", - "integrity": "sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/@contentstack/live-preview-utils/node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@contentstack/utils": { - "version": "1.3.17", - "resolved": "https://registry.npmjs.org/@contentstack/utils/-/utils-1.3.17.tgz", - "integrity": "sha512-RwuhAUa28wTuHoDkzMFFcookangKr3gJVzyk9nd48RO+8WHSboFGVy4NCI8Zx2BiqbhjcYGtPyMZrLiIuNtyVQ==" - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@cypress/request": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", - "integrity": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==", - "dev": true, - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "http-signature": "~1.3.6", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "performance-now": "^2.1.0", - "qs": "6.10.4", - "safe-buffer": "^5.1.2", - "tough-cookie": "^4.1.3", - "tunnel-agent": "^0.6.0", - "uuid": "^8.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@cypress/request/node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@cypress/xvfb": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz", - "integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==", - "dev": true, - "dependencies": { - "debug": "^3.1.0", - "lodash.once": "^4.1.1" - } - }, - "node_modules/@cypress/xvfb/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", - "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@formatjs/ecma402-abstract": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.0.0.tgz", - "integrity": "sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==", - "license": "MIT", - "dependencies": { - "@formatjs/intl-localematcher": "0.5.4", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/fast-memoize": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz", - "integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/icu-messageformat-parser": { - "version": "2.7.8", - "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.8.tgz", - "integrity": "sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==", - "license": "MIT", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/icu-skeleton-parser": "1.8.2", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/icu-skeleton-parser": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.2.tgz", - "integrity": "sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==", - "license": "MIT", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl": { - "version": "2.10.4", - "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.10.4.tgz", - "integrity": "sha512-56483O+HVcL0c7VucAS2tyH020mt9XTozZO67cwtGg0a7KWDukS/FzW3OnvaHmTHDuYsoPIzO+ZHVfU6fT/bJw==", - "license": "MIT", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/fast-memoize": "2.2.0", - "@formatjs/icu-messageformat-parser": "2.7.8", - "@formatjs/intl-displaynames": "6.6.8", - "@formatjs/intl-listformat": "7.5.7", - "intl-messageformat": "10.5.14", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "typescript": "^4.7 || 5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@formatjs/intl-displaynames": { - "version": "6.6.8", - "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-6.6.8.tgz", - "integrity": "sha512-Lgx6n5KxN16B3Pb05z3NLEBQkGoXnGjkTBNCZI+Cn17YjHJ3fhCeEJJUqRlIZmJdmaXQhjcQVDp6WIiNeRYT5g==", - "license": "MIT", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/intl-localematcher": "0.5.4", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl-listformat": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.5.7.tgz", - "integrity": "sha512-MG2TSChQJQT9f7Rlv+eXwUFiG24mKSzmF144PLb8m8OixyXqn4+YWU+5wZracZGCgVTVmx8viCf7IH3QXoiB2g==", - "license": "MIT", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/intl-localematcher": "0.5.4", - "tslib": "^2.4.0" - } - }, - "node_modules/@formatjs/intl-localematcher": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz", - "integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@graphql-typed-document-node/core": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz", - "integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==", - "peerDependencies": { - "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", - "dev": true - }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", - "dev": true, - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@hookform/error-message": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", - "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0", - "react-hook-form": "^7.0.0" - } - }, - "node_modules/@hookform/resolvers": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.3.4.tgz", - "integrity": "sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==", - "peerDependencies": { - "react-hook-form": "^7.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", - "debug": "^4.3.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", - "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", - "dev": true - }, - "node_modules/@internationalized/date": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.7.0.tgz", - "integrity": "sha512-VJ5WS3fcVx0bejE/YHfbDKR/yawZgKqn/if+oEeLqNwBtPzVB06olkfcnojTmEMX+gTpH+FlQ69SHNitJ8/erQ==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@internationalized/message": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.6.tgz", - "integrity": "sha512-JxbK3iAcTIeNr1p0WIFg/wQJjIzJt9l/2KNY/48vXV7GRGZSv3zMxJsce008fZclk2cDC8y0Ig3odceHO7EfNQ==", - "dependencies": { - "@swc/helpers": "^0.5.0", - "intl-messageformat": "^10.1.0" - } - }, - "node_modules/@internationalized/number": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.0.tgz", - "integrity": "sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@internationalized/string": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.5.tgz", - "integrity": "sha512-rKs71Zvl2OKOHM+mzAFMIyqR5hI1d1O6BBkMK2/lkfg3fkmVh9Eeg0awcA8W2WqYqDOv6a86DIOlFpggwLtbuw==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", - "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", - "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", - "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/reporters": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^29.7.0", - "jest-config": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-resolve-dependencies": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "jest-watcher": "^29.7.0", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/core/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/@jest/environment": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", - "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", - "dev": true, - "dependencies": { - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", - "dev": true, - "dependencies": { - "expect": "^29.7.0", - "jest-snapshot": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", - "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.6.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", - "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@sinonjs/fake-timers": "^10.0.2", - "@types/node": "*", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", - "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/types": "^29.6.3", - "jest-mock": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", - "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", - "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^6.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/reporters/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", - "dev": true, - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", - "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", - "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", - "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", - "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", - "dev": true, - "dependencies": { - "@jest/test-result": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", - "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.6.3", - "@jridgewell/trace-mapping": "^0.3.18", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/types": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "peer": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@koa/cors": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/@koa/cors/-/cors-3.4.3.tgz", - "integrity": "sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==", - "dev": true, - "dependencies": { - "vary": "^1.1.2" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/@netlify/blobs": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@netlify/blobs/-/blobs-8.1.1.tgz", - "integrity": "sha512-7Dg3PzArvQ0Owq4wpkLECC9iaDBOxuWUN2uwbQtUF6tZssyez2QN+eO0CjuIhhZUivbw+X9bwsyiEjWkdJnv/A==", - "engines": { - "node": "^14.16.0 || >=16.0.0" - } - }, - "node_modules/@netlify/functions": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-3.0.0.tgz", - "integrity": "sha512-XXf9mNw4+fkxUzukDpJtzc32bl1+YlXZwEhc5ZgMcTbJPLpgRLDs5WWSPJ4eY/Mv1ZFvtxmMwmfgoQYVt68Qog==", - "dependencies": { - "@netlify/serverless-functions-api": "1.30.1" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@netlify/node-cookies": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz", - "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==", - "engines": { - "node": "^14.16.0 || >=16.0.0" - } - }, - "node_modules/@netlify/plugin-nextjs": { - "version": "5.9.4", - "resolved": "https://registry.npmjs.org/@netlify/plugin-nextjs/-/plugin-nextjs-5.9.4.tgz", - "integrity": "sha512-Q9qyhGUxFuM3kuWmoaj4yHPUfHhOsZmwdsQv4kIXkBWVu8FOe0RFHRP0A0EXciSVFGwq+XAo3H5jEtVSANAOWw==", - "license": "MIT", - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@netlify/serverless-functions-api": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.30.1.tgz", - "integrity": "sha512-JkbaWFeydQdeDHz1mAy4rw+E3bl9YtbCgkntfTxq+IlNX/aIMv2/b1kZnQZcil4/sPoZGL831Dq6E374qRpU1A==", - "dependencies": { - "@netlify/node-cookies": "^0.1.0", - "urlpattern-polyfill": "8.0.2" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/@next/env": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.18.tgz", - "integrity": "sha512-2vWLOUwIPgoqMJKG6dt35fVXVhgM09tw4tK3/Q34GFXDrfiHlG7iS33VA4ggnjWxjiz9KV5xzfsQzJX6vGAekA==", - "license": "MIT" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.4.tgz", - "integrity": "sha512-n4zYNLSyCo0Ln5b7qxqQeQ34OZKXwgbdcx6kmkQbywr+0k6M3Vinft0T72R6CDAcDrne2IAgSud4uWCzFgc5HA==", - "dev": true, - "dependencies": { - "glob": "10.3.10" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.18.tgz", - "integrity": "sha512-tOBlDHCjGdyLf0ube/rDUs6VtwNOajaWV+5FV/ajPgrvHeisllEdymY/oDgv2cx561+gJksfMUtqf8crug7sbA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.18.tgz", - "integrity": "sha512-uJCEjutt5VeJ30jjrHV1VIHCsbMYnEqytQgvREx+DjURd/fmKy15NaVK4aR/u98S1LGTnjq35lRTnRyygglxoA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.18.tgz", - "integrity": "sha512-IL6rU8vnBB+BAm6YSWZewc+qvdL1EaA+VhLQ6tlUc0xp+kkdxQrVqAnh8Zek1ccKHlTDFRyAft0e60gteYmQ4A==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.18.tgz", - "integrity": "sha512-RCaENbIZqKKqTlL8KNd+AZV/yAdCsovblOpYFp0OJ7ZxgLNbV5w23CUU1G5On+0fgafrsGcW+GdMKdFjaRwyYA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.18.tgz", - "integrity": "sha512-3kmv8DlyhPRCEBM1Vavn8NjyXtMeQ49ID0Olr/Sut7pgzaQTo4h01S7Z8YNE0VtbowyuAL26ibcz0ka6xCTH5g==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.18.tgz", - "integrity": "sha512-mliTfa8seVSpTbVEcKEXGjC18+TDII8ykW4a36au97spm9XMPqQTpdGPNBJ9RySSFw9/hLuaCMByluQIAnkzlw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.18.tgz", - "integrity": "sha512-J5g0UFPbAjKYmqS3Cy7l2fetFmWMY9Oao32eUsBPYohts26BdrMUyfCJnZFQkX9npYaHNDOWqZ6uV9hSDPw9NA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.18.tgz", - "integrity": "sha512-Ynxuk4ZgIpdcN7d16ivJdjsDG1+3hTvK24Pp8DiDmIa2+A4CfhJSEHHVndCHok6rnLUzAZD+/UOKESQgTsAZGg==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.18.tgz", - "integrity": "sha512-dtRGMhiU9TN5nyhwzce+7c/4CCeykYS+ipY/4mIrGzJ71+7zNo55ZxCB7cAVuNqdwtYniFNR2c9OFQ6UdFIMcg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@opentelemetry/api": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", - "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/@opentelemetry/api-logs": { - "version": "0.52.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.52.1.tgz", - "integrity": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/context-async-hooks": { - "version": "1.28.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.28.0.tgz", - "integrity": "sha512-igcl4Ve+F1N2063PJUkesk/GkYyuGIWinYkSyAFTnIj3gzrOgvOA4k747XNdL47HRRL1w/qh7UW8NDuxOLvKFA==", - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/core": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.29.0.tgz", - "integrity": "sha512-gmT7vAreXl0DTHD2rVZcw3+l2g84+5XiHIqdBUxXbExymPCvSsGOpiwMmn8nkiJur28STV31wnhIDrzWDPzjfA==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/semantic-conventions": "1.28.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/instrumentation": { - "version": "0.54.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.54.1.tgz", - "integrity": "sha512-z5EapvWSHnHwk1NnIF++x9IIe9U83/Bna9xYMHCpZ9EWDfNzMBwg/fOZtwLa2zbX2oEd+Qoze34M+Pujd92IyQ==", - "dependencies": { - "@opentelemetry/api-logs": "0.54.1", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-amqplib": { - "version": "0.43.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.43.0.tgz", - "integrity": "sha512-ALjfQC+0dnIEcvNYsbZl/VLh7D2P1HhFF4vicRKHhHFIUV3Shpg4kXgiek5PLhmeKSIPiUB25IYH5RIneclL4A==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-connect": { - "version": "0.40.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.40.0.tgz", - "integrity": "sha512-3aR/3YBQ160siitwwRLjwqrv2KBT16897+bo6yz8wIfel6nWOxTZBJudcbsK3p42pTC7qrbotJ9t/1wRLpv79Q==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@types/connect": "3.4.36" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-dataloader": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.12.0.tgz", - "integrity": "sha512-pnPxatoFE0OXIZDQhL2okF//dmbiWFzcSc8pUg9TqofCLYZySSxDCgQc69CJBo5JnI3Gz1KP+mOjS4WAeRIH4g==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-dataloader/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-dataloader/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-express": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-express/-/instrumentation-express-0.44.0.tgz", - "integrity": "sha512-GWgibp6Q0wxyFaaU8ERIgMMYgzcHmGrw3ILUtGchLtLncHNOKk0SNoWGqiylXWWT4HTn5XdV8MGawUgpZh80cA==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-fastify": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fastify/-/instrumentation-fastify-0.41.0.tgz", - "integrity": "sha512-pNRjFvf0mvqfJueaeL/qEkuGJwgtE5pgjIHGYwjc2rMViNCrtY9/Sf+Nu8ww6dDd/Oyk2fwZZP7i0XZfCnETrA==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-fs": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.16.0.tgz", - "integrity": "sha512-hMDRUxV38ln1R3lNz6osj3YjlO32ykbHqVrzG7gEhGXFQfu7LJUx8t9tEwE4r2h3CD4D0Rw4YGDU4yF4mP3ilg==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.54.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-generic-pool": { - "version": "0.39.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.39.0.tgz", - "integrity": "sha512-y4v8Y+tSfRB3NNBvHjbjrn7rX/7sdARG7FuK6zR8PGb28CTa0kHpEGCJqvL9L8xkTNvTXo+lM36ajFGUaK1aNw==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-generic-pool/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-generic-pool/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-graphql": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.44.0.tgz", - "integrity": "sha512-FYXTe3Bv96aNpYktqm86BFUTpjglKD0kWI5T5bxYkLUPEPvFn38vWGMJTGrDMVou/i55E4jlWvcm6hFIqLsMbg==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.54.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-hapi": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.41.0.tgz", - "integrity": "sha512-jKDrxPNXDByPlYcMdZjNPYCvw0SQJjN+B1A+QH+sx+sAHsKSAf9hwFiJSrI6C4XdOls43V/f/fkp9ITkHhKFbQ==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-hapi/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-hapi/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-http": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.53.0.tgz", - "integrity": "sha512-H74ErMeDuZfj7KgYCTOFGWF5W9AfaPnqLQQxeFq85+D29wwV2yqHbz2IKLYpkOh7EI6QwDEl7rZCIxjJLyc/CQ==", - "dependencies": { - "@opentelemetry/core": "1.26.0", - "@opentelemetry/instrumentation": "0.53.0", - "@opentelemetry/semantic-conventions": "1.27.0", - "semver": "^7.5.2" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/core": { - "version": "1.26.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz", - "integrity": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==", - "dependencies": { - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/semantic-conventions": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", - "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-ioredis": { - "version": "0.43.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.43.0.tgz", - "integrity": "sha512-i3Dke/LdhZbiUAEImmRG3i7Dimm/BD7t8pDDzwepSvIQ6s2X6FPia7561gw+64w+nx0+G9X14D7rEfaMEmmjig==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/redis-common": "^0.36.2", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-ioredis/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-ioredis/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-kafkajs": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.4.0.tgz", - "integrity": "sha512-I9VwDG314g7SDL4t8kD/7+1ytaDBRbZQjhVaQaVIDR8K+mlsoBhLsWH79yHxhHQKvwCSZwqXF+TiTOhoQVUt7A==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-knex": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-knex/-/instrumentation-knex-0.41.0.tgz", - "integrity": "sha512-OhI1SlLv5qnsnm2dOVrian/x3431P75GngSpnR7c4fcVFv7prXGYu29Z6ILRWJf/NJt6fkbySmwdfUUnFnHCTg==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-koa": { - "version": "0.43.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.43.0.tgz", - "integrity": "sha512-lDAhSnmoTIN6ELKmLJBplXzT/Jqs5jGZehuG22EdSMaTwgjMpxMDI1YtlKEhiWPWkrz5LUsd0aOO0ZRc9vn3AQ==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-koa/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-koa/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-lru-memoizer": { - "version": "0.40.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.40.0.tgz", - "integrity": "sha512-21xRwZsEdMPnROu/QsaOIODmzw59IYpGFmuC4aFWvMj6stA8+Ei1tX67nkarJttlNjoM94um0N4X26AD7ff54A==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-lru-memoizer/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-lru-memoizer/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mongodb": { - "version": "0.48.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.48.0.tgz", - "integrity": "sha512-9YWvaGvrrcrydMsYGLu0w+RgmosLMKe3kv/UNlsPy8RLnCkN2z+bhhbjjjuxtUmvEuKZMCoXFluABVuBr1yhjw==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mongoose": { - "version": "0.42.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.42.0.tgz", - "integrity": "sha512-AnWv+RaR86uG3qNEMwt3plKX1ueRM7AspfszJYVkvkehiicC3bHQA6vWdb6Zvy5HAE14RyFbu9+2hUUjR2NSyg==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mongoose/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-mongoose/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.41.0.tgz", - "integrity": "sha512-jnvrV6BsQWyHS2qb2fkfbfSb1R/lmYwqEZITwufuRl37apTopswu9izc0b1CYRp/34tUG/4k/V39PND6eyiNvw==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@types/mysql": "2.15.26" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql2": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.41.0.tgz", - "integrity": "sha512-REQB0x+IzVTpoNgVmy5b+UnH1/mDByrneimP6sbDHkp1j8QOl1HyWOrBH/6YWR0nrbU3l825Em5PlybjT3232g==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@opentelemetry/sql-common": "^0.40.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql2/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-mysql2/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-nestjs-core": { - "version": "0.40.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-nestjs-core/-/instrumentation-nestjs-core-0.40.0.tgz", - "integrity": "sha512-WF1hCUed07vKmf5BzEkL0wSPinqJgH7kGzOjjMAiTGacofNXjb/y4KQ8loj2sNsh5C/NN7s1zxQuCgbWbVTGKg==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-nestjs-core/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-nestjs-core/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-pg": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.44.0.tgz", - "integrity": "sha512-oTWVyzKqXud1BYEGX1loo2o4k4vaU1elr3vPO8NZolrBtFvQ34nx4HgUaexUDuEog00qQt+MLR5gws/p+JXMLQ==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@opentelemetry/sql-common": "^0.40.1", - "@types/pg": "8.6.1", - "@types/pg-pool": "2.0.6" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-pg/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-pg/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-redis-4": { - "version": "0.42.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-redis-4/-/instrumentation-redis-4-0.42.0.tgz", - "integrity": "sha512-NaD+t2JNcOzX/Qa7kMy68JbmoVIV37fT/fJYzLKu2Wwd+0NCxt+K2OOsOakA8GVg8lSpFdbx4V/suzZZ2Pvdjg==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.53.0", - "@opentelemetry/redis-common": "^0.36.2", - "@opentelemetry/semantic-conventions": "^1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-redis-4/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-redis-4/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-tedious": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-tedious/-/instrumentation-tedious-0.15.0.tgz", - "integrity": "sha512-Kb7yo8Zsq2TUwBbmwYgTAMPK0VbhoS8ikJ6Bup9KrDtCx2JC01nCb+M0VJWXt7tl0+5jARUbKWh5jRSoImxdCw==", - "dependencies": { - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@types/tedious": "^4.0.14" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation-undici": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.6.0.tgz", - "integrity": "sha512-ABJBhm5OdhGmbh0S/fOTE4N69IZ00CsHC5ijMYfzbw3E5NwLgpQk5xsljaECrJ8wz1SfXbO03FiSuu5AyRAkvQ==", - "dependencies": { - "@opentelemetry/core": "^1.8.0", - "@opentelemetry/instrumentation": "^0.53.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.7.0" - } - }, - "node_modules/@opentelemetry/instrumentation-undici/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/instrumentation-undici/node_modules/@opentelemetry/instrumentation": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", - "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@types/shimmer": "^1.2.0", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@opentelemetry/instrumentation/node_modules/@opentelemetry/api-logs": { - "version": "0.54.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.54.1.tgz", - "integrity": "sha512-tFOyYT8tFRSuUc+pEXnHG99270y7K8MSBLQSPiYBJ/0cgCp+8KmSej4joBfah0JoXAwbPzMCom3ri0xsiYbLvg==", - "dependencies": { - "@opentelemetry/api": "^1.3.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/redis-common": { - "version": "0.36.2", - "resolved": "https://registry.npmjs.org/@opentelemetry/redis-common/-/redis-common-0.36.2.tgz", - "integrity": "sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/resources": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.29.0.tgz", - "integrity": "sha512-s7mLXuHZE7RQr1wwweGcaRp3Q4UJJ0wazeGlc/N5/XSe6UyXfsh1UQGMADYeg7YwD+cEdMtU1yJAUXdnFzYzyQ==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/core": "1.29.0", - "@opentelemetry/semantic-conventions": "1.28.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.53.0.tgz", - "integrity": "sha512-dhSisnEgIj/vJZXZV6f6KcTnyLDx/VuQ6l3ejuZpMpPlh9S1qMHiZU9NMmOkVkwwHkMy3G6mEBwdP23vUZVr4g==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/api-logs": "0.53.0", - "@opentelemetry/core": "1.26.0", - "@opentelemetry/resources": "1.26.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.4.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/api-logs": { - "version": "0.53.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", - "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/api": "^1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/core": { - "version": "1.26.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz", - "integrity": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/resources": { - "version": "1.26.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", - "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/core": "1.26.0", - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/semantic-conventions": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", - "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", - "license": "Apache-2.0", - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/sdk-metrics": { - "version": "1.29.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.29.0.tgz", - "integrity": "sha512-MkVtuzDjXZaUJSuJlHn6BSXjcQlMvHcsDV7LjY4P6AJeffMa4+kIGDjzsCf6DkAh6Vqlwag5EWEam3KZOX5Drw==", - "license": "Apache-2.0", - "dependencies": { - "@opentelemetry/core": "1.29.0", - "@opentelemetry/resources": "1.29.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.3.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-trace-base": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.27.0.tgz", - "integrity": "sha512-btz6XTQzwsyJjombpeqCX6LhiMQYpzt2pIYNPnw0IPO/3AhT6yjnf8Mnv3ZC2A4eRYOjqrg+bfaXg9XHDRJDWQ==", - "dependencies": { - "@opentelemetry/core": "1.27.0", - "@opentelemetry/resources": "1.27.0", - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/core": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.27.0.tgz", - "integrity": "sha512-yQPKnK5e+76XuiqUH/gKyS8wv/7qITd5ln56QkBTf3uggr0VkXOXfcaAuG330UfdYu83wsyoBwqwxigpIG+Jkg==", - "dependencies": { - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/resources": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.27.0.tgz", - "integrity": "sha512-jOwt2VJ/lUD5BLc+PMNymDrUCpm5PKi1E9oSVYAvz01U/VdndGmrtV3DU1pG4AwlYhJRHbHfOUIlpBeXCPw6QQ==", - "dependencies": { - "@opentelemetry/core": "1.27.0", - "@opentelemetry/semantic-conventions": "1.27.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": ">=1.0.0 <1.10.0" - } - }, - "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/semantic-conventions": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", - "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/semantic-conventions": { - "version": "1.28.0", - "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz", - "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==", - "license": "Apache-2.0", - "engines": { - "node": ">=14" - } - }, - "node_modules/@opentelemetry/sql-common": { - "version": "0.40.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/sql-common/-/sql-common-0.40.1.tgz", - "integrity": "sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==", - "dependencies": { - "@opentelemetry/core": "^1.1.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0" - } - }, - "node_modules/@panva/hkdf": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.2.1.tgz", - "integrity": "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==", - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", - "dev": true, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", - "dev": true, - "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, - "node_modules/@pnpm/npm-conf": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", - "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", - "dev": true, - "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@preact/compat": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@preact/compat/-/compat-17.1.2.tgz", - "integrity": "sha512-7pOZN9lMDDRQ+6aWvjwTp483KR8/zOpfS83wmOo3zfuLKdngS8/5RLbsFWzFZMGdYlotAhX980hJ75bjOHTwWg==", - "peerDependencies": { - "preact": "*" - } - }, - "node_modules/@preact/signals": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@preact/signals/-/signals-1.3.0.tgz", - "integrity": "sha512-EOMeg42SlLS72dhoq6Vjq08havnLseWmPQ8A0YsgIAqMgWgx7V1a39+Pxo6i7SY5NwJtH4849JogFq3M67AzWg==", - "dependencies": { - "@preact/signals-core": "^1.7.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - }, - "peerDependencies": { - "preact": "10.x" - } - }, - "node_modules/@preact/signals-core": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@preact/signals-core/-/signals-core-1.8.0.tgz", - "integrity": "sha512-OBvUsRZqNmjzCZXWLxkZfhcgT+Fk8DDcT/8vD6a1xhDemodyy87UJRJfASMuSD8FaAIeGgGm85ydXhm7lr4fyA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/@prisma/instrumentation": { - "version": "5.19.1", - "resolved": "https://registry.npmjs.org/@prisma/instrumentation/-/instrumentation-5.19.1.tgz", - "integrity": "sha512-VLnzMQq7CWroL5AeaW0Py2huiNKeoMfCH3SUxstdzPrlWQi6UQ9UrfcbUkNHlVFqOMacqy8X/8YtE0kuKDpD9w==", - "dependencies": { - "@opentelemetry/api": "^1.8", - "@opentelemetry/instrumentation": "^0.49 || ^0.50 || ^0.51 || ^0.52.0", - "@opentelemetry/sdk-trace-base": "^1.22" - } - }, - "node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation": { - "version": "0.52.1", - "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.52.1.tgz", - "integrity": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==", - "dependencies": { - "@opentelemetry/api-logs": "0.52.1", - "@types/shimmer": "^1.0.2", - "import-in-the-middle": "^1.8.1", - "require-in-the-middle": "^7.1.1", - "semver": "^7.5.2", - "shimmer": "^1.2.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.3.0" - } - }, - "node_modules/@radix-ui/primitive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", - "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==" - }, - "node_modules/@radix-ui/react-compose-refs": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", - "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-context": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", - "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-dialog": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.1.tgz", - "integrity": "sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==", - "dependencies": { - "@radix-ui/primitive": "1.1.0", - "@radix-ui/react-compose-refs": "1.1.0", - "@radix-ui/react-context": "1.1.0", - "@radix-ui/react-dismissable-layer": "1.1.0", - "@radix-ui/react-focus-guards": "1.1.0", - "@radix-ui/react-focus-scope": "1.1.0", - "@radix-ui/react-id": "1.1.0", - "@radix-ui/react-portal": "1.1.1", - "@radix-ui/react-presence": "1.1.0", - "@radix-ui/react-primitive": "2.0.0", - "@radix-ui/react-slot": "1.1.0", - "@radix-ui/react-use-controllable-state": "1.1.0", - "aria-hidden": "^1.1.1", - "react-remove-scroll": "2.5.7" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-dismissable-layer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.0.tgz", - "integrity": "sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==", - "dependencies": { - "@radix-ui/primitive": "1.1.0", - "@radix-ui/react-compose-refs": "1.1.0", - "@radix-ui/react-primitive": "2.0.0", - "@radix-ui/react-use-callback-ref": "1.1.0", - "@radix-ui/react-use-escape-keydown": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-focus-guards": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.0.tgz", - "integrity": "sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==", - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-focus-scope": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.0.tgz", - "integrity": "sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==", - "dependencies": { - "@radix-ui/react-compose-refs": "1.1.0", - "@radix-ui/react-primitive": "2.0.0", - "@radix-ui/react-use-callback-ref": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-id": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz", - "integrity": "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==", - "dependencies": { - "@radix-ui/react-use-layout-effect": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-portal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.1.tgz", - "integrity": "sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==", - "dependencies": { - "@radix-ui/react-primitive": "2.0.0", - "@radix-ui/react-use-layout-effect": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-presence": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.0.tgz", - "integrity": "sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==", - "dependencies": { - "@radix-ui/react-compose-refs": "1.1.0", - "@radix-ui/react-use-layout-effect": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", - "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", - "dependencies": { - "@radix-ui/react-slot": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-slot": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", - "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", - "dependencies": { - "@radix-ui/react-compose-refs": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-use-callback-ref": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", - "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-use-controllable-state": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", - "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", - "dependencies": { - "@radix-ui/react-use-callback-ref": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-use-escape-keydown": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz", - "integrity": "sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==", - "dependencies": { - "@radix-ui/react-use-callback-ref": "1.1.0" - }, - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-use-layout-effect": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz", - "integrity": "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==", - "peerDependencies": { - "@types/react": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@radix-ui/react-visually-hidden": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.1.0.tgz", - "integrity": "sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==", - "dependencies": { - "@radix-ui/react-primitive": "2.0.0" - }, - "peerDependencies": { - "@types/react": "*", - "@types/react-dom": "*", - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@react-aria/autocomplete": { - "version": "3.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/@react-aria/autocomplete/-/autocomplete-3.0.0-alpha.37.tgz", - "integrity": "sha512-a7awFG3hshJ/kX7Qti/cJAKOG0XU5F/XW6fQffKGfEge7PmiWIvaLTrT5her79/v8v/bRBykIkpEgDCFE7WGzg==", - "dependencies": { - "@react-aria/combobox": "^3.11.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/listbox": "^3.14.0", - "@react-aria/searchfield": "^3.8.0", - "@react-aria/textfield": "^3.16.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/autocomplete": "3.0.0-alpha.0", - "@react-stately/combobox": "^3.10.2", - "@react-types/autocomplete": "3.0.0-alpha.28", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/breadcrumbs": { - "version": "3.5.20", - "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.20.tgz", - "integrity": "sha512-xqVSSDPpQuUFpJyIXMQv8L7zumk5CeGX7qTzo4XRvqm5T9qnNAX4XpYEMdktnLrQRY/OemCBScbx7SEwr0B3Kg==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/link": "^3.7.8", - "@react-aria/utils": "^3.27.0", - "@react-types/breadcrumbs": "^3.7.10", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/button": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.11.1.tgz", - "integrity": "sha512-NSs2HxHSSPSuYy5bN+PMJzsCNDVsbm1fZ/nrWM2WWWHTBrx9OqyrEXZVV9ebzQCN9q0nzhwpf6D42zHIivWtJA==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/interactions": "^3.23.0", - "@react-aria/toolbar": "3.0.0-beta.12", - "@react-aria/utils": "^3.27.0", - "@react-stately/toggle": "^3.8.1", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/calendar": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.7.0.tgz", - "integrity": "sha512-9YUbgcox7cQgvZfQtL2BLLRsIuX4mJeclk9HkFoOsAu3RGO5HNsteah8FV54W8BMjm/bNRXIPUxtjTTP+1L6jg==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/utils": "^3.27.0", - "@react-stately/calendar": "^3.7.0", - "@react-types/button": "^3.10.2", - "@react-types/calendar": "^3.6.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/checkbox": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.15.1.tgz", - "integrity": "sha512-ETgsMDZ0IZzRXy/OVlGkazm8T+PcMHoTvsxp0c+U82c8iqdITA+VJ615eBPOQh6OkkYIIn4cRn/e+69RmGzXng==", - "dependencies": { - "@react-aria/form": "^3.0.12", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/toggle": "^3.10.11", - "@react-aria/utils": "^3.27.0", - "@react-stately/checkbox": "^3.6.11", - "@react-stately/form": "^3.1.1", - "@react-stately/toggle": "^3.8.1", - "@react-types/checkbox": "^3.9.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/collections": { - "version": "3.0.0-alpha.7", - "resolved": "https://registry.npmjs.org/@react-aria/collections/-/collections-3.0.0-alpha.7.tgz", - "integrity": "sha512-JR2Ro33Chlf26NM12zJsK+MOs5/k+PQallT5+4YawndYmbxqlDLADcoFdcORJqh0pKf9OnluWtANobCkQGd0aQ==", - "dependencies": { - "@react-aria/ssr": "^3.9.7", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0", - "use-sync-external-store": "^1.2.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/color": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@react-aria/color/-/color-3.0.3.tgz", - "integrity": "sha512-DDVma2107VHBfSuEnnmy+KJvXvxEXWSAooii2vlHHmQNb5x4rv4YTk+dP5GZl/7MgT8OgPTB9UHoC83bXFMDRA==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/numberfield": "^3.11.10", - "@react-aria/slider": "^3.7.15", - "@react-aria/spinbutton": "^3.6.11", - "@react-aria/textfield": "^3.16.0", - "@react-aria/utils": "^3.27.0", - "@react-aria/visually-hidden": "^3.8.19", - "@react-stately/color": "^3.8.2", - "@react-stately/form": "^3.1.1", - "@react-types/color": "^3.0.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/combobox": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.11.1.tgz", - "integrity": "sha512-TTNbGhUuqxzPcJzd6hufOxuHzX0UARkw+0bl+TuCwNPQnqrcPf20EoOZvd3MHZwGq6GCP4QV+qo0uGx83RpUvA==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/listbox": "^3.14.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/menu": "^3.17.0", - "@react-aria/overlays": "^3.25.0", - "@react-aria/selection": "^3.22.0", - "@react-aria/textfield": "^3.16.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/collections": "^3.12.1", - "@react-stately/combobox": "^3.10.2", - "@react-stately/form": "^3.1.1", - "@react-types/button": "^3.10.2", - "@react-types/combobox": "^3.13.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/datepicker": { - "version": "3.13.0", - "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.13.0.tgz", - "integrity": "sha512-TmJan65P3Vk7VDBNW5rH9Z25cAn0vk8TEtaP3boCs8wJFE+HbEuB8EqLxBFu47khtuKTEqDP3dTlUh2Vt/f7Xw==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@internationalized/number": "^3.6.0", - "@internationalized/string": "^3.2.5", - "@react-aria/focus": "^3.19.1", - "@react-aria/form": "^3.0.12", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/spinbutton": "^3.6.11", - "@react-aria/utils": "^3.27.0", - "@react-stately/datepicker": "^3.12.0", - "@react-stately/form": "^3.1.1", - "@react-types/button": "^3.10.2", - "@react-types/calendar": "^3.6.0", - "@react-types/datepicker": "^3.10.0", - "@react-types/dialog": "^3.5.15", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/dialog": { - "version": "3.5.21", - "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.21.tgz", - "integrity": "sha512-tBsn9swBhcptJ9QIm0+ur0PVR799N6qmGguva3rUdd+gfitknFScyT08d7AoMr9AbXYdJ+2R9XNSZ3H3uIWQMw==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/overlays": "^3.25.0", - "@react-aria/utils": "^3.27.0", - "@react-types/dialog": "^3.5.15", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/disclosure": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@react-aria/disclosure/-/disclosure-3.0.1.tgz", - "integrity": "sha512-rNH8RFcePoAQizcqB7KuHbBOr7sPsysFKCUwbVSOXLPgvCfXKafIhjgFJVqekfsbn5zWvkcTupnzGVJj/F9p+g==", - "dependencies": { - "@react-aria/ssr": "^3.9.7", - "@react-aria/utils": "^3.27.0", - "@react-stately/disclosure": "^3.0.1", - "@react-types/button": "^3.10.2", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/dnd": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.8.1.tgz", - "integrity": "sha512-FoXYQ4z33E9YBzIGRJM1B1oZep6CvEWgXvjCZGURatjr3qG7vf95mOqA5kVd9bjLL7QK4w0ujJWEBfog3WmufA==", - "dependencies": { - "@internationalized/string": "^3.2.5", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/overlays": "^3.25.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/dnd": "^3.5.1", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/focus": { - "version": "3.19.1", - "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.19.1.tgz", - "integrity": "sha512-bix9Bu1Ue7RPcYmjwcjhB14BMu2qzfJ3tMQLqDc9pweJA66nOw8DThy3IfVr8Z7j2PHktOLf9kcbiZpydKHqzg==", - "dependencies": { - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0", - "clsx": "^2.0.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/form": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.12.tgz", - "integrity": "sha512-8uvPYEd3GDyGt5NRJIzdWW1Ry5HLZq37vzRZKUW8alZ2upFMH3KJJG55L9GP59KiF6zBrYBebvI/YK1Ye1PE1g==", - "dependencies": { - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/form": "^3.1.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/grid": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.11.1.tgz", - "integrity": "sha512-Wg8m68RtNWfkhP3Qjrrsl1q1et8QCjXPMRsYgKBahYRS0kq2MDcQ+UBdG1fiCQn/MfNImhTUGVeQX276dy1lww==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/collections": "^3.12.1", - "@react-stately/grid": "^3.10.1", - "@react-stately/selection": "^3.19.0", - "@react-types/checkbox": "^3.9.1", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/gridlist": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.10.1.tgz", - "integrity": "sha512-11FlupBg5C9ehs7R6OjqMPWEOLK/4IuSrq7D1xU+Hnm7ZYI/KKcCXvNMjMmnOz/gGzOmfgVwz5PIKaY9aZarEg==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/grid": "^3.11.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/collections": "^3.12.1", - "@react-stately/list": "^3.11.2", - "@react-stately/tree": "^3.8.7", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/i18n": { - "version": "3.12.5", - "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.5.tgz", - "integrity": "sha512-ooeop2pTG94PuaHoN2OTk2hpkqVuoqgEYxRvnc1t7DVAtsskfhS/gVOTqyWGsxvwAvRi7m/CnDu6FYdeQ/bK5w==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@internationalized/message": "^3.1.6", - "@internationalized/number": "^3.6.0", - "@internationalized/string": "^3.2.5", - "@react-aria/ssr": "^3.9.7", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/interactions": { - "version": "3.23.0", - "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.23.0.tgz", - "integrity": "sha512-0qR1atBIWrb7FzQ+Tmr3s8uH5mQdyRH78n0krYaG8tng9+u1JlSi8DGRSaC9ezKyNB84m7vHT207xnHXGeJ3Fg==", - "dependencies": { - "@react-aria/ssr": "^3.9.7", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/label": { - "version": "3.7.14", - "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.14.tgz", - "integrity": "sha512-EN1Md2YvcC4sMqBoggsGYUEGlTNqUfJZWzduSt29fbQp1rKU2KlybTe+TWxKq/r2fFd+4JsRXxMeJiwB3w2AQA==", - "dependencies": { - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/link": { - "version": "3.7.8", - "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.7.8.tgz", - "integrity": "sha512-oiXUPQLZmf9Q9Xehb/sG1QRxfo28NFKdh9w+unD12sHI6NdLMETl5MA4CYyTgI0dfMtTjtfrF68GCnWfc7JvXQ==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-types/link": "^3.5.10", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/listbox": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.14.0.tgz", - "integrity": "sha512-pyVbKavh8N8iyiwOx6I3JIcICvAzFXkKSFni1yarfgngJsJV3KSyOkzLomOfN9UhbjcV4sX61/fccwJuvlurlA==", - "dependencies": { - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/collections": "^3.12.1", - "@react-stately/list": "^3.11.2", - "@react-types/listbox": "^3.5.4", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/live-announcer": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.4.1.tgz", - "integrity": "sha512-4X2mcxgqLvvkqxv2l1n00jTzUxxe0kkLiapBGH1LHX/CxA1oQcHDqv8etJ2ZOwmS/MSBBiWnv3DwYHDOF6ubig==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@react-aria/menu": { - "version": "3.17.0", - "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.17.0.tgz", - "integrity": "sha512-aiFvSv3G1YvPC0klJQ/9quB05xIDZzJ5Lt6/CykP0UwGK5i8GCqm6/cyFLwEXsS5ooUPxS3bqmdOsgdADSSgqg==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/overlays": "^3.25.0", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/collections": "^3.12.1", - "@react-stately/menu": "^3.9.1", - "@react-stately/selection": "^3.19.0", - "@react-stately/tree": "^3.8.7", - "@react-types/button": "^3.10.2", - "@react-types/menu": "^3.9.14", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/meter": { - "version": "3.4.19", - "resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.19.tgz", - "integrity": "sha512-IIA+gTHrNVbMuBgcqdGLEKd/ZiKM2hOUqS6uztbT15dwPJTmtfJiTWA2872PiY52p+gqPSanZuTc2TXYJa+rew==", - "dependencies": { - "@react-aria/progress": "^3.4.19", - "@react-types/meter": "^3.4.6", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/numberfield": { - "version": "3.11.10", - "resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.11.10.tgz", - "integrity": "sha512-bYbTfO9NbAKMFOfEGGs+lvlxk0I9L0lU3WD2PFQZWdaoBz9TCkL+vK0fJk1zsuKaVjeGsmHP9VesBPRmaP0MiA==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/spinbutton": "^3.6.11", - "@react-aria/textfield": "^3.16.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/form": "^3.1.1", - "@react-stately/numberfield": "^3.9.9", - "@react-types/button": "^3.10.2", - "@react-types/numberfield": "^3.8.8", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/overlays": { - "version": "3.25.0", - "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.25.0.tgz", - "integrity": "sha512-UEqJJ4duowrD1JvwXpPZreBuK79pbyNjNxFUVpFSskpGEJe3oCWwsSDKz7P1O7xbx5OYp+rDiY8fk/sE5rkaKw==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/ssr": "^3.9.7", - "@react-aria/utils": "^3.27.0", - "@react-aria/visually-hidden": "^3.8.19", - "@react-stately/overlays": "^3.6.13", - "@react-types/button": "^3.10.2", - "@react-types/overlays": "^3.8.12", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/progress": { - "version": "3.4.19", - "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.19.tgz", - "integrity": "sha512-5HHnBJHqEUuY+dYsjIZDYsENeKr49VCuxeaDZ0OSahbOlloIOB1baCo/6jLBv1O1rwrAzZ2gCCPcVGed/cjrcw==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/label": "^3.7.14", - "@react-aria/utils": "^3.27.0", - "@react-types/progress": "^3.5.9", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/radio": { - "version": "3.10.11", - "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.11.tgz", - "integrity": "sha512-R150HsBFPr1jLMShI4aBM8heCa1k6h0KEvnFRfTAOBu+B9hMSZOPB+d6GQOwGPysNlbset90Kej8G15FGHjqiA==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/form": "^3.0.12", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/utils": "^3.27.0", - "@react-stately/radio": "^3.10.10", - "@react-types/radio": "^3.8.6", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/searchfield": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.8.0.tgz", - "integrity": "sha512-AaZuH9YIWlMyE1m7cSjHCfOuQmlWN+w8HVW32TxeGGGL1kJsYAlSYWYHUyYFIKh245kq/m5zUxAxmw5Ygmnx5w==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/textfield": "^3.16.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/searchfield": "^3.5.9", - "@react-types/button": "^3.10.2", - "@react-types/searchfield": "^3.5.11", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/select": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.15.1.tgz", - "integrity": "sha512-FOtY1tuHt0YTHwOEy/sf7LEIL+Nnkho3wJmfpWQuTxsvMCF7UJdQPYPd6/jGCcCdiqW7H4iqyjUkSp6nk/XRWQ==", - "dependencies": { - "@react-aria/form": "^3.0.12", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/listbox": "^3.14.0", - "@react-aria/menu": "^3.17.0", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-aria/visually-hidden": "^3.8.19", - "@react-stately/select": "^3.6.10", - "@react-types/button": "^3.10.2", - "@react-types/select": "^3.9.9", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/selection": { - "version": "3.22.0", - "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.22.0.tgz", - "integrity": "sha512-XFOrK525HX2eeWeLZcZscUAs5qsuC1ZxsInDXMjvLeAaUPtQNEhUKHj3psDAl6XDU4VV1IJo0qCmFTVqTTMZSg==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/selection": "^3.19.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/separator": { - "version": "3.4.5", - "resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.4.5.tgz", - "integrity": "sha512-RQA9sKZdAEjP1Yrv0GpDdXgmXd56kXDE8atPDHEC0/A4lpYh/YFLfXcv1JW0Hlg4kBocdX2pB2INyDGhiD+yfw==", - "dependencies": { - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/slider": { - "version": "3.7.15", - "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.15.tgz", - "integrity": "sha512-v9tujsuvJYRX0vE/vMYBzTT9FXbzrLsjkOrouNq+UdBIr7wRjIWTHHM0j+khb2swyCWNTbdv6Ce316Zqx2qWFg==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/utils": "^3.27.0", - "@react-stately/slider": "^3.6.1", - "@react-types/shared": "^3.27.0", - "@react-types/slider": "^3.7.8", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/spinbutton": { - "version": "3.6.11", - "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.11.tgz", - "integrity": "sha512-RM+gYS9tf9Wb+GegV18n4ArK3NBKgcsak7Nx1CkEgX9BjJ0yayWUHdfEjRRvxGXl+1z1n84cJVkZ6FUlWOWEZA==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/utils": "^3.27.0", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/ssr": { - "version": "3.9.7", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.7.tgz", - "integrity": "sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==", - "dependencies": { - "@swc/helpers": "^0.5.0" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/switch": { - "version": "3.6.11", - "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.11.tgz", - "integrity": "sha512-paYCpH+oeL+8rgQK+cBJ+IaZ1sXSh3+50WPlg2LvLBta0QVfQhPR4juPvfXRpfHHhCjFBgF4/RGbV8q5zpl3vA==", - "dependencies": { - "@react-aria/toggle": "^3.10.11", - "@react-stately/toggle": "^3.8.1", - "@react-types/shared": "^3.27.0", - "@react-types/switch": "^3.5.8", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/table": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.16.1.tgz", - "integrity": "sha512-T28TIGnKnPBunyErDBmm5jUX7AyzT7NVWBo9pDSt9wUuEnz0rVNd7p9sjmP2+u7I645feGG9klcdpCvFeqrk8A==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/grid": "^3.11.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/utils": "^3.27.0", - "@react-aria/visually-hidden": "^3.8.19", - "@react-stately/collections": "^3.12.1", - "@react-stately/flags": "^3.0.5", - "@react-stately/table": "^3.13.1", - "@react-types/checkbox": "^3.9.1", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@react-types/table": "^3.10.4", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/tabs": { - "version": "3.9.9", - "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.9.9.tgz", - "integrity": "sha512-oXPtANs16xu6MdMGLHjGV/2Zupvyp9CJEt7ORPLv5xAzSY5hSjuQHJLZ0te3Lh/KSG5/0o3RW/W5yEqo7pBQQQ==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/tabs": "^3.7.1", - "@react-types/shared": "^3.27.0", - "@react-types/tabs": "^3.3.12", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/tag": { - "version": "3.4.9", - "resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.4.9.tgz", - "integrity": "sha512-Vnps+zk8vYyjevv2Bc6vc9kSp9HFLKrKUDmrWMc0DfseypwJMc3Ya6F965ZVTjF9nuWrojNmvgusNu7qyXFShQ==", - "dependencies": { - "@react-aria/gridlist": "^3.10.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/list": "^3.11.2", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/textfield": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.16.0.tgz", - "integrity": "sha512-53RVpMeMDN/QoabqnYZ1lxTh1xTQ3IBYQARuayq5EGGMafyxoFHzttxUdSqkZGK/+zdSF2GfmjOYJVm2nDKuDQ==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/form": "^3.0.12", - "@react-aria/label": "^3.7.14", - "@react-aria/utils": "^3.27.0", - "@react-stately/form": "^3.1.1", - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@react-types/textfield": "^3.11.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/toggle": { - "version": "3.10.11", - "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.10.11.tgz", - "integrity": "sha512-J3jO3KJiUbaYVDEpeXSBwqcyKxpi9OreiHRGiaxb6VwB+FWCj7Gb2WKajByXNyfs8jc6kX9VUFaXa7jze60oEQ==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/toggle": "^3.8.1", - "@react-types/checkbox": "^3.9.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/toolbar": { - "version": "3.0.0-beta.12", - "resolved": "https://registry.npmjs.org/@react-aria/toolbar/-/toolbar-3.0.0-beta.12.tgz", - "integrity": "sha512-a+Be27BtM2lzEdTzm19FikPbitfW65g/JZln3kyAvgpswhU6Ljl8lztaVw4ixjG4H0nqnKvVggMy4AlWwDUaVQ==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/tooltip": { - "version": "3.7.11", - "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.11.tgz", - "integrity": "sha512-mhZgAWUj7bUWipDeJXaVPZdqnzoBCd/uaEbdafnvgETmov1udVqPTh9w4ZKX2Oh1wa2+OdLFrBOk+8vC6QbWag==", - "dependencies": { - "@react-aria/focus": "^3.19.1", - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/tooltip": "^3.5.1", - "@react-types/shared": "^3.27.0", - "@react-types/tooltip": "^3.4.14", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/tree": { - "version": "3.0.0-beta.3", - "resolved": "https://registry.npmjs.org/@react-aria/tree/-/tree-3.0.0-beta.3.tgz", - "integrity": "sha512-eQnCtvDgpunCHInIT+Da3qdgzDzKEFW9REX2j1vMqWTsbM1YikVlBzB9AJOd9KIAWyn+p4TYdL8zzPWxvuSdfA==", - "dependencies": { - "@react-aria/gridlist": "^3.10.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/selection": "^3.22.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/tree": "^3.8.7", - "@react-types/button": "^3.10.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/utils": { - "version": "3.27.0", - "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.27.0.tgz", - "integrity": "sha512-p681OtApnKOdbeN8ITfnnYqfdHS0z7GE+4l8EXlfLnr70Rp/9xicBO6d2rU+V/B3JujDw2gPWxYKEnEeh0CGCw==", - "dependencies": { - "@react-aria/ssr": "^3.9.7", - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0", - "clsx": "^2.0.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/virtualizer": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@react-aria/virtualizer/-/virtualizer-4.1.1.tgz", - "integrity": "sha512-AYQmC/S9HhxGOj8HkQdxDW8/+sUEmmfcGpjkInzXB8UZCB1FQLC0LpvA8fOP7AfzLaAL+HVcYF5BvnGMPijHTQ==", - "dependencies": { - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-stately/virtualizer": "^4.2.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-aria/visually-hidden": { - "version": "3.8.19", - "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.19.tgz", - "integrity": "sha512-MZgCCyQ3sdG94J5iJz7I7Ai3IxoN0U5d/+EaUnA1mfK7jf2fSYQBqi6Eyp8sWUYzBTLw4giXB5h0RGAnWzk9hA==", - "dependencies": { - "@react-aria/interactions": "^3.23.0", - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/autocomplete": { - "version": "3.0.0-alpha.0", - "resolved": "https://registry.npmjs.org/@react-stately/autocomplete/-/autocomplete-3.0.0-alpha.0.tgz", - "integrity": "sha512-as4si0pBcnGnggwpvemMwCLTeV0h9GS9e5eHSR3RFg14eqUHZBEzYJ0kh9oTugpsGuf1TSM/HDizo8GQk3EtPA==", - "dependencies": { - "@react-stately/utils": "^3.10.4", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/calendar": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.7.0.tgz", - "integrity": "sha512-N15zKubP2S7eWfPSJjKVlmJA7YpWzrIGx52BFhwLSQAZcV+OPcMgvOs71WtB7PLwl6DUYQGsgc0B3tcHzzvdvQ==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@react-stately/utils": "^3.10.5", - "@react-types/calendar": "^3.6.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/checkbox": { - "version": "3.6.11", - "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.11.tgz", - "integrity": "sha512-jApdBis+Q1sXLivg+f7krcVaP/AMMMiQcVqcz5gwxlweQN+dRZ/NpL0BYaDOuGc26Mp0lcuVaET3jIZeHwtyxA==", - "dependencies": { - "@react-stately/form": "^3.1.1", - "@react-stately/utils": "^3.10.5", - "@react-types/checkbox": "^3.9.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/collections": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.1.tgz", - "integrity": "sha512-8QmFBL7f+P64dEP4o35pYH61/lP0T/ziSdZAvNMrCqaM+fXcMfUp2yu1E63kADVX7WRDsFJWE3CVMeqirPH6Xg==", - "dependencies": { - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/color": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@react-stately/color/-/color-3.8.2.tgz", - "integrity": "sha512-GXwLmv1Eos2OwOiRsGFrXBKx8+uZh2q0qzLZEVYrWsedNhIdTm7nnpwO68nCYZPHkqhv6rhhVSlOOFmDLY++ow==", - "dependencies": { - "@internationalized/number": "^3.6.0", - "@internationalized/string": "^3.2.5", - "@react-stately/form": "^3.1.1", - "@react-stately/numberfield": "^3.9.9", - "@react-stately/slider": "^3.6.1", - "@react-stately/utils": "^3.10.5", - "@react-types/color": "^3.0.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/combobox": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.10.2.tgz", - "integrity": "sha512-uT642Dool4tQBh+8UQjlJnTisrJVtg3LqmiP/HqLQ4O3pW0O+ImbG+2r6c9dUzlAnH4kEfmEwCp9dxkBkmFWsg==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/form": "^3.1.1", - "@react-stately/list": "^3.11.2", - "@react-stately/overlays": "^3.6.13", - "@react-stately/select": "^3.6.10", - "@react-stately/utils": "^3.10.5", - "@react-types/combobox": "^3.13.2", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/data": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/@react-stately/data/-/data-3.12.1.tgz", - "integrity": "sha512-/Nc8X1FmrJ53QU4rN/1i1JtNir4iqo+39Xn5ZOJ74Nng7T+xVVuEuWSo+OEGaycCJf2eZRsomauPxUnnZgCM1A==", - "dependencies": { - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/datepicker": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.12.0.tgz", - "integrity": "sha512-AfJEP36d+QgQ30GfacXtYdGsJvqY2yuCJ+JrjHct+m1nYuTkMvMMnhwNBFasgDJPLCDyHzyANlWkl2kQGfsBFw==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@internationalized/string": "^3.2.5", - "@react-stately/form": "^3.1.1", - "@react-stately/overlays": "^3.6.13", - "@react-stately/utils": "^3.10.5", - "@react-types/datepicker": "^3.10.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/disclosure": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@react-stately/disclosure/-/disclosure-3.0.1.tgz", - "integrity": "sha512-afpNy5b0UcqRGjU/W5OD0xkx4PbymvhMrgQZ4o4OdtDVMMvr9T5UqMF8/j3J591DxgQfXM872tJu0kotqT0L6Q==", - "dependencies": { - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/dnd": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@react-stately/dnd/-/dnd-3.5.1.tgz", - "integrity": "sha512-N18wt6fka9ngJJqxfAzmdtyrk9whAnqWUxZn22CatjNQsqukI4a6KRYwZTXM9x/wm7KamhVOp+GBl85zM8GLdA==", - "dependencies": { - "@react-stately/selection": "^3.19.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/flags": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.0.5.tgz", - "integrity": "sha512-6wks4csxUwPCp23LgJSnkBRhrWpd9jGd64DjcCTNB2AHIFu7Ab1W59pJpUL6TW7uAxVxdNKjgn6D1hlBy8qWsA==", - "dependencies": { - "@swc/helpers": "^0.5.0" - } - }, - "node_modules/@react-stately/form": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.1.1.tgz", - "integrity": "sha512-qavrz5X5Mdf/Q1v/QJRxc0F8UTNEyRCNSM1we/nnF7GV64+aYSDLOtaRGmzq+09RSwo1c8ZYnIkK5CnwsPhTsQ==", - "dependencies": { - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/grid": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.10.1.tgz", - "integrity": "sha512-MOIy//AdxZxIXIzvWSKpvMvaPEMZGQNj+/cOsElHepv/Veh0psNURZMh2TP6Mr0+MnDTZbX+5XIeinGkWYO3JQ==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/selection": "^3.19.0", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/layout": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@react-stately/layout/-/layout-4.1.1.tgz", - "integrity": "sha512-kXeo7HKYTOcqMKru1sKFoMoZA+YywSUqHeIA90MptzRugbFhQGq4nUbIYM2p3FeHAX9HU1JAXThuLcwDOHhB8Q==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/table": "^3.13.1", - "@react-stately/virtualizer": "^4.2.1", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@react-types/table": "^3.10.4", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/list": { - "version": "3.11.2", - "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.11.2.tgz", - "integrity": "sha512-eU2tY3aWj0SEeC7lH9AQoeAB4LL9mwS54FvTgHHoOgc1ZIwRJUaZoiuETyWQe98AL8KMgR1nrnDJ1I+CcT1Y7g==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/selection": "^3.19.0", - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/menu": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.9.1.tgz", - "integrity": "sha512-WRjGGImhQlQaer/hhahGytwd1BDq3fjpTkY/04wv3cQJPJR6lkVI5nSvGFMHfCaErsA1bNyB8/T9Y5F5u4u9ng==", - "dependencies": { - "@react-stately/overlays": "^3.6.13", - "@react-types/menu": "^3.9.14", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/numberfield": { - "version": "3.9.9", - "resolved": "https://registry.npmjs.org/@react-stately/numberfield/-/numberfield-3.9.9.tgz", - "integrity": "sha512-hZsLiGGHTHmffjFymbH1qVmA633rU2GNjMFQTuSsN4lqqaP8fgxngd5pPCoTCUFEkUgWjdHenw+ZFByw8lIE+g==", - "dependencies": { - "@internationalized/number": "^3.6.0", - "@react-stately/form": "^3.1.1", - "@react-stately/utils": "^3.10.5", - "@react-types/numberfield": "^3.8.8", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/overlays": { - "version": "3.6.13", - "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.13.tgz", - "integrity": "sha512-WsU85Gf/b+HbWsnnYw7P/Ila3wD+C37Uk/WbU4/fHgJ26IEOWsPE6wlul8j54NZ1PnLNhV9Fn+Kffi+PaJMQXQ==", - "dependencies": { - "@react-stately/utils": "^3.10.5", - "@react-types/overlays": "^3.8.12", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/radio": { - "version": "3.10.10", - "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.10.tgz", - "integrity": "sha512-9x3bpq87uV8iYA4NaioTTWjriQSlSdp+Huqlxll0T3W3okpyraTTejE91PbIoRTUmL5qByIh2WzxYmr4QdBgAA==", - "dependencies": { - "@react-stately/form": "^3.1.1", - "@react-stately/utils": "^3.10.5", - "@react-types/radio": "^3.8.6", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/searchfield": { - "version": "3.5.9", - "resolved": "https://registry.npmjs.org/@react-stately/searchfield/-/searchfield-3.5.9.tgz", - "integrity": "sha512-7/aO/oLJ4czKEji0taI/lbHKqPJRag9p3YmRaZ4yqjIMpKxzmJCWQcov5lzWeFhG/1hINKndYlxFnVIKV/urpg==", - "dependencies": { - "@react-stately/utils": "^3.10.5", - "@react-types/searchfield": "^3.5.11", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/select": { - "version": "3.6.10", - "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.6.10.tgz", - "integrity": "sha512-V7V0FCL9T+GzLjyfnJB6PUaKldFyT/8Rj6M+R9ura1A0O+s/FEOesy0pdMXFoL1l5zeUpGlCnhJrsI5HFWHfDw==", - "dependencies": { - "@react-stately/form": "^3.1.1", - "@react-stately/list": "^3.11.2", - "@react-stately/overlays": "^3.6.13", - "@react-types/select": "^3.9.9", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/selection": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.19.0.tgz", - "integrity": "sha512-AvbUqnWjqVQC48RD39S9BpMKMLl55Zo5l/yx5JQFPl55cFwe9Tpku1KY0wzt3fXXiXWaqjDn/7Gkg1VJYy8esQ==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/slider": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.6.1.tgz", - "integrity": "sha512-8kij5O82Xe233vZZ6qNGqPXidnlNQiSnyF1q613c7ktFmzAyGjkIWVUapHi23T1fqm7H2Rs3RWlmwE9bo2KecA==", - "dependencies": { - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@react-types/slider": "^3.7.8", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/table": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.13.1.tgz", - "integrity": "sha512-Im8W+F8o9EhglY5kqRa3xcMGXl8zBi6W5phGpAjXb+UGDL1tBIlAcYj733bw8g/ITCnaSz9ubsmON0HekPd6Jg==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/flags": "^3.0.5", - "@react-stately/grid": "^3.10.1", - "@react-stately/selection": "^3.19.0", - "@react-stately/utils": "^3.10.5", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@react-types/table": "^3.10.4", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/tabs": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.7.1.tgz", - "integrity": "sha512-gr9ACyuWrYuc727h7WaHdmNw8yxVlUyQlguziR94MdeRtFGQnf3V6fNQG3kxyB77Ljko69tgDF7Nf6kfPUPAQQ==", - "dependencies": { - "@react-stately/list": "^3.11.2", - "@react-types/shared": "^3.27.0", - "@react-types/tabs": "^3.3.12", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/toggle": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.8.1.tgz", - "integrity": "sha512-MVpe79ghVQiwLmVzIPhF/O/UJAUc9B+ZSylVTyJiEPi0cwhbkKGQv9thOF0ebkkRkace5lojASqUAYtSTZHQJA==", - "dependencies": { - "@react-stately/utils": "^3.10.5", - "@react-types/checkbox": "^3.9.1", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/tooltip": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.5.1.tgz", - "integrity": "sha512-0aI3U5kB7Cop9OCW9/Bag04zkivFSdUcQgy/TWL4JtpXidVWmOha8txI1WySawFSjZhH83KIyPc+wKm1msfLMQ==", - "dependencies": { - "@react-stately/overlays": "^3.6.13", - "@react-types/tooltip": "^3.4.14", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/tree": { - "version": "3.8.7", - "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.8.7.tgz", - "integrity": "sha512-hpc3pyuXWeQV5ufQ02AeNQg/MYhnzZ4NOznlY5OOUoPzpLYiI3ZJubiY3Dot4jw5N/LR7CqvDLHmrHaJPmZlHg==", - "dependencies": { - "@react-stately/collections": "^3.12.1", - "@react-stately/selection": "^3.19.0", - "@react-stately/utils": "^3.10.5", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/utils": { - "version": "3.10.5", - "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.5.tgz", - "integrity": "sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==", - "dependencies": { - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-stately/virtualizer": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-4.2.1.tgz", - "integrity": "sha512-GHGEXV0ZRhq34U/P3LzkByCBfy2IDynYlV1SE4njkUWWGE/0AH56UegM6w2l3GeiNpXsXCgXl7jpAKeIGMEnrQ==", - "dependencies": { - "@react-aria/utils": "^3.27.0", - "@react-types/shared": "^3.27.0", - "@swc/helpers": "^0.5.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/autocomplete": { - "version": "3.0.0-alpha.28", - "resolved": "https://registry.npmjs.org/@react-types/autocomplete/-/autocomplete-3.0.0-alpha.28.tgz", - "integrity": "sha512-meHxBVS5H2L7lVOX99jiAfhcvtG0s7EE7iF7X20/yqEnkwWSpyeMKcDKFpvx/bLGUSmRTVFCBLgvPpwUyhcFkg==", - "dependencies": { - "@react-types/combobox": "^3.13.2", - "@react-types/searchfield": "^3.5.11", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/breadcrumbs": { - "version": "3.7.10", - "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.10.tgz", - "integrity": "sha512-5HhRxkKHfAQBoyOYzyf4HT+24HgPE/C/QerxJLNNId303LXO03yeYrbvRqhYZSlD1ACLJW9OmpPpREcw5iSqgw==", - "dependencies": { - "@react-types/link": "^3.5.10", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/button": { - "version": "3.10.2", - "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.10.2.tgz", - "integrity": "sha512-h8SB/BLoCgoBulCpyzaoZ+miKXrolK9XC48+n1dKJXT8g4gImrficurDW6+PRTQWaRai0Q0A6bu8UibZOU4syg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/calendar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.6.0.tgz", - "integrity": "sha512-BtFh4BFwvsYlsaSqUOVxlqXZSlJ6u4aozgO3PwHykhpemwidlzNwm9qDZhcMWPioNF/w2cU/6EqhvEKUHDnFZg==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/checkbox": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.9.1.tgz", - "integrity": "sha512-0x/KQcipfNM9Nvy6UMwYG25roRLvsiqf0J3woTYylNNWzF+72XT0iI5FdJkE3w2wfa0obmSoeq4WcbFREQrH/A==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/color": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@react-types/color/-/color-3.0.2.tgz", - "integrity": "sha512-4k9c0l5SACwTtkHV0dQ0GrF0Kktk/NChkxtyu58BamyUQOsCe8sqny+uul2nPrqQvuVof/dkRjKhv/DVyyx2mw==", - "dependencies": { - "@react-types/shared": "^3.27.0", - "@react-types/slider": "^3.7.8" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/combobox": { - "version": "3.13.2", - "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.13.2.tgz", - "integrity": "sha512-yl2yMcM5/v3lJiNZWjpAhQ9vRW6dD55CD4rYmO2K7XvzYJaFVT4WYI/AymPYD8RqomMp7coBmBHfHW0oupk8gg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/datepicker": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.10.0.tgz", - "integrity": "sha512-Att7y4NedNH1CogMDIX9URXgMLxGbZgnFCZ8oxgFAVndWzbh3TBcc4s7uoJDPvgRMAalq+z+SrlFFeoBeJmvvg==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@react-types/calendar": "^3.6.0", - "@react-types/overlays": "^3.8.12", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/dialog": { - "version": "3.5.15", - "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.15.tgz", - "integrity": "sha512-BX1+mV35Oa0aIlhu98OzJaSB7uiCWDPQbr0AkpFBajSSlESUoAjntN+4N+QJmj24z2v6UE9zxGQ85/U/0Le+bw==", - "dependencies": { - "@react-types/overlays": "^3.8.12", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/form": { - "version": "3.7.9", - "resolved": "https://registry.npmjs.org/@react-types/form/-/form-3.7.9.tgz", - "integrity": "sha512-+qGDrQFdIh8umU82zmnYJ0V2rLoGSQ3yApFT02URz//NWeTA7qo0Oab2veKvXUkcBb47oSvytZYmkExPikxIEg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/grid": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.11.tgz", - "integrity": "sha512-Mww9nrasppvPbsBi+uUqFnf7ya8fXN0cTVzDNG+SveD8mhW+sbtuy+gPtEpnFD2Oyi8qLuObefzt4gdekJX2Yw==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/link": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.5.10.tgz", - "integrity": "sha512-IM2mbSpB0qP44Jh1Iqpevo7bQdZAr0iDyDi13OhsiUYJeWgPMHzGEnQqdBMkrfQeOTXLtZtUyOYLXE2v39bhzQ==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/listbox": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.5.4.tgz", - "integrity": "sha512-5otTes0zOwRZwNtqysPD/aW4qFJSxd5znjwoWTLnzDXXOBHXPyR83IJf8ITgvIE5C0y+EFadsWR/BBO3k9Pj7g==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/menu": { - "version": "3.9.14", - "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.9.14.tgz", - "integrity": "sha512-RJW/S8IPwbRuohJ/A9HJ7W8QaAY816tm7Nv6+H/TLXG76zu2AS5vEgq+0TcCAWvJJwUdLDpJWJMlo0iIoIBtcg==", - "dependencies": { - "@react-types/overlays": "^3.8.12", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/meter": { - "version": "3.4.6", - "resolved": "https://registry.npmjs.org/@react-types/meter/-/meter-3.4.6.tgz", - "integrity": "sha512-YczAht1VXy3s4fR6Dq0ibGsjulGHzS/A/K4tOruSNTL6EkYH9ktHX62Xk/OhCiKHxV315EbZ136WJaCeO4BgHw==", - "dependencies": { - "@react-types/progress": "^3.5.9" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/numberfield": { - "version": "3.8.8", - "resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.8.tgz", - "integrity": "sha512-825JPppxDaWh0Zxb0Q+wSslgRQYOtQPCAuhszPuWEy6d2F/M+hLR+qQqvQm9+LfMbdwiTg6QK5wxdWFCp2t7jw==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/overlays": { - "version": "3.8.12", - "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.12.tgz", - "integrity": "sha512-ZvR1t0YV7/6j+6OD8VozKYjvsXT92+C/2LOIKozy7YUNS5KI4MkXbRZzJvkuRECVZOmx8JXKTUzhghWJM/3QuQ==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/progress": { - "version": "3.5.9", - "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.9.tgz", - "integrity": "sha512-zFxOzx3G8XUmHgpm037Hcayls5bqzXVa182E3iM7YWTmrjxJPKZ58XL0WWBgpTd+mJD7fTpnFdAZqSmFbtDOdA==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/radio": { - "version": "3.8.6", - "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.8.6.tgz", - "integrity": "sha512-woTQYdRFjPzuml4qcIf+2zmycRuM5w3fDS5vk6CQmComVUjOFPtD28zX3Z9kc9lSNzaBQz9ONZfFqkZ1gqfICA==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/searchfield": { - "version": "3.5.11", - "resolved": "https://registry.npmjs.org/@react-types/searchfield/-/searchfield-3.5.11.tgz", - "integrity": "sha512-MX8d9pgvxZxmgDwI0tiDaf6ijOY8XcRj0HM8Ocfttlk7PEFJK44p51WsUC+fPX1GmZni2JpFkx/haPOSLUECdw==", - "dependencies": { - "@react-types/shared": "^3.27.0", - "@react-types/textfield": "^3.11.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/select": { - "version": "3.9.9", - "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.9.tgz", - "integrity": "sha512-/hCd0o+ztn29FKCmVec+v7t4JpOzz56o+KrG7NDq2pcRWqUR9kNwCjrPhSbJIIEDm4ubtrfPu41ysIuDvRd2Bg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/shared": { - "version": "3.27.0", - "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.27.0.tgz", - "integrity": "sha512-gvznmLhi6JPEf0bsq7SwRYTHAKKq/wcmKqFez9sRdbED+SPMUmK5omfZ6w3EwUFQHbYUa4zPBYedQ7Knv70RMw==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/slider": { - "version": "3.7.8", - "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.7.8.tgz", - "integrity": "sha512-utW1o9KT70hqFwu1zqMtyEWmP0kSATk4yx+Fm/peSR4iZa+BasRqH83yzir5GKc8OfqfE1kmEsSlO98/k986+w==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/switch": { - "version": "3.5.8", - "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.8.tgz", - "integrity": "sha512-sL7jmh8llF8BxzY4HXkSU4bwU8YU6gx45P85D0AdYXgRHxU9Cp7BQPOMF4pJoQ8TTej05MymY5q7xvJVmxUTAQ==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/table": { - "version": "3.10.4", - "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.10.4.tgz", - "integrity": "sha512-d0tLz/whxVteqr1rophtuuxqyknHHfTKeXrCgDjt8pAyd9U8GPDbfcFSfYPUhWdELRt7aLVyQw6VblZHioVEgQ==", - "dependencies": { - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/tabs": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.12.tgz", - "integrity": "sha512-E9O9G+wf9kaQ8UbDEDliW/oxYlJnh7oDCW1zaMOySwnG4yeCh7Wu02EOCvlQW4xvgn/i+lbEWgirf7L+yj5nRg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/textfield": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.11.0.tgz", - "integrity": "sha512-YORBgr6wlu2xfvr4MqjKFHGpj+z8LBzk14FbWDbYnnhGnv0I10pj+m2KeOHgDNFHrfkDdDOQmMIKn1UCqeUuEg==", - "dependencies": { - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@react-types/tooltip": { - "version": "3.4.14", - "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.14.tgz", - "integrity": "sha512-J7CeYL2yPeKIasx1rPaEefyCHGEx2DOCx+7bM3XcKGmCxvNdVQLjimNJOt8IHlUA0nFJQOjmSW/mz9P0f2/kUw==", - "dependencies": { - "@react-types/overlays": "^3.8.12", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/@rollup/plugin-commonjs": { - "version": "28.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.1.tgz", - "integrity": "sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==", - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "commondir": "^1.0.1", - "estree-walker": "^2.0.2", - "fdir": "^6.2.0", - "is-reference": "1.2.1", - "magic-string": "^0.30.3", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0 || 14 >= 14.17" - }, - "peerDependencies": { - "rollup": "^2.68.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/fdir": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz", - "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==", - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.3.tgz", - "integrity": "sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.5.tgz", - "integrity": "sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.10.2.tgz", - "integrity": "sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==", - "dev": true - }, - "node_modules/@scandic-hotels/design-system": { - "version": "0.1.0", - "resolved": "git+https://x-token-auth:ATCTT3xFfGN0gu4BSBWR71ifMM-_iAT2ip_jnjF0OjTkYhEB3sn71fPCGuMUA7O3BxJ2oHptZVGAlVvMUoeo3Wfute7RYido9HlvrVjemqns9hR3WSf6eNHhsSy5bLtxQ6VK7mnSSAGHaCqTejxirs_PmOB_jPIi1Ft4OEDehtnMxCteg8rO-IE%3D27DF8E0B@bitbucket.org/scandic-swap/design-system.git#3279c13e03b53a9c49fc770313e289a92a6481b5", - "peerDependencies": { - "react": "^18.2.0", - "react-aria-components": "^1.0.1", - "react-dom": "^18.2.0" - } - }, - "node_modules/@sentry-internal/browser-utils": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-8.41.0.tgz", - "integrity": "sha512-nU7Bn3jEUmf1QXRUT3j2ewUBlFJpe9vnAnjqpeVPDWTsVI52BwVNcJHuE37PrGs66OZ1ZkGMfKnQk43oCAa+oQ==", - "dependencies": { - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry-internal/feedback": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-8.41.0.tgz", - "integrity": "sha512-bw+BrSNw8abOnu/IpD8YSbYubXkkT8jyNS7TM4e4UPZMuXcbtia7/r5d7kAiUfKv/sV5PNMlZLOk+EYJeLTANg==", - "dependencies": { - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry-internal/replay": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry-internal/replay/-/replay-8.41.0.tgz", - "integrity": "sha512-ByXEY7JI95y4Qr9fS3d28l9uuVU5Qa0HgL+xDmYElNx7CXz3Q9hFN6ibgUeC3h8BO5pDULxWNgAppl7FRY8N5w==", - "dependencies": { - "@sentry-internal/browser-utils": "8.41.0", - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry-internal/replay-canvas": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-8.41.0.tgz", - "integrity": "sha512-lpgOBHWr1ZNxidD72A2pfoUMjIpwonOPYoQZWAHr86Oa3eIVQOyfklZlHW+gKPFl2/IEl9Lbtcke0JiDp3dkIQ==", - "dependencies": { - "@sentry-internal/replay": "8.41.0", - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/babel-plugin-component-annotate": { - "version": "2.22.6", - "resolved": "https://registry.npmjs.org/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-2.22.6.tgz", - "integrity": "sha512-V2g1Y1I5eSe7dtUVMBvAJr8BaLRr4CLrgNgtPaZyMT4Rnps82SrZ5zqmEkLXPumlXhLUWR6qzoMNN2u+RXVXfQ==", - "engines": { - "node": ">= 14" - } - }, - "node_modules/@sentry/browser": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-8.41.0.tgz", - "integrity": "sha512-FfAU55eYwW2lG4M3dEw2472RvHrD5YWSfHCZvuRf/4skX38kFvKghZQ+epL+CVHTzvIRHOrbj8qQK6YLTGl9ew==", - "dependencies": { - "@sentry-internal/browser-utils": "8.41.0", - "@sentry-internal/feedback": "8.41.0", - "@sentry-internal/replay": "8.41.0", - "@sentry-internal/replay-canvas": "8.41.0", - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/bundler-plugin-core": { - "version": "2.22.6", - "resolved": "https://registry.npmjs.org/@sentry/bundler-plugin-core/-/bundler-plugin-core-2.22.6.tgz", - "integrity": "sha512-1esQdgSUCww9XAntO4pr7uAM5cfGhLsgTK9MEwAKNfvpMYJi9NUTYa3A7AZmdA8V6107Lo4OD7peIPrDRbaDCg==", - "dependencies": { - "@babel/core": "^7.18.5", - "@sentry/babel-plugin-component-annotate": "2.22.6", - "@sentry/cli": "^2.36.1", - "dotenv": "^16.3.1", - "find-up": "^5.0.0", - "glob": "^9.3.2", - "magic-string": "0.30.8", - "unplugin": "1.0.1" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/@sentry/bundler-plugin-core/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@sentry/bundler-plugin-core/node_modules/glob": { - "version": "9.3.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", - "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "minimatch": "^8.0.2", - "minipass": "^4.2.4", - "path-scurry": "^1.6.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@sentry/bundler-plugin-core/node_modules/magic-string": { - "version": "0.30.8", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz", - "integrity": "sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@sentry/bundler-plugin-core/node_modules/minimatch": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", - "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@sentry/bundler-plugin-core/node_modules/minipass": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", - "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@sentry/cli": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli/-/cli-2.38.2.tgz", - "integrity": "sha512-CR0oujpAnhegK2pBAv6ZReMqbFTuNJLDZLvoD1B+syrKZX+R+oxkgT2e1htsBbht+wGxAsluVWsIAydSws1GAA==", - "hasInstallScript": true, - "dependencies": { - "https-proxy-agent": "^5.0.0", - "node-fetch": "^2.6.7", - "progress": "^2.0.3", - "proxy-from-env": "^1.1.0", - "which": "^2.0.2" - }, - "bin": { - "sentry-cli": "bin/sentry-cli" - }, - "engines": { - "node": ">= 10" - }, - "optionalDependencies": { - "@sentry/cli-darwin": "2.38.2", - "@sentry/cli-linux-arm": "2.38.2", - "@sentry/cli-linux-arm64": "2.38.2", - "@sentry/cli-linux-i686": "2.38.2", - "@sentry/cli-linux-x64": "2.38.2", - "@sentry/cli-win32-i686": "2.38.2", - "@sentry/cli-win32-x64": "2.38.2" - } - }, - "node_modules/@sentry/cli-darwin": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.38.2.tgz", - "integrity": "sha512-21ywIcJCCFrCTyiF1o1PaT7rbelFC2fWmayKYgFElnQ55IzNYkcn8BYhbh/QknE0l1NBRaeWMXwTTdeoqETCCg==", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-linux-arm": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm/-/cli-linux-arm-2.38.2.tgz", - "integrity": "sha512-+AiKDBQKIdQe4NhBiHSHGl0KR+b//HHTrnfK1SaTrOm9HtM4ELXAkjkRF3bmbpSzSQCS5WzcbIxxCJOeaUaO0A==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux", - "freebsd" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-linux-arm64": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.38.2.tgz", - "integrity": "sha512-4Fp/jjQpNZj4Th+ZckMQvldAuuP0ZcyJ9tJCP1CCOn5poIKPYtY6zcbTP036R7Te14PS4ALOcDNX3VNKfpsifA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux", - "freebsd" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-linux-i686": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-linux-i686/-/cli-linux-i686-2.38.2.tgz", - "integrity": "sha512-6zVJN10dHIn4R1v+fxuzlblzVBhIVwsaN/S7aBED6Vn1HhAyAcNG2tIzeCLGeDfieYjXlE2sCI82sZkQBCbAGw==", - "cpu": [ - "x86", - "ia32" - ], - "optional": true, - "os": [ - "linux", - "freebsd" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-linux-x64": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-linux-x64/-/cli-linux-x64-2.38.2.tgz", - "integrity": "sha512-4UiLu9zdVtqPeltELR5MDGKcuqAdQY9xz3emISuA6bm+MXGbt2W1WgX+XY3GElwjZbmH8qpyLUEd34sw6sdcbQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux", - "freebsd" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-win32-i686": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-win32-i686/-/cli-win32-i686-2.38.2.tgz", - "integrity": "sha512-DYfSvd5qLPerLpIxj3Xu2rRe3CIlpGOOfGSNI6xvJ5D8j6hqbOHlCzvfC4oBWYVYGtxnwQLMeDGJ7o7RMYulig==", - "cpu": [ - "x86", - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli-win32-x64": { - "version": "2.38.2", - "resolved": "https://registry.npmjs.org/@sentry/cli-win32-x64/-/cli-win32-x64-2.38.2.tgz", - "integrity": "sha512-W5UX58PKY1hNUHo9YJxWNhGvgvv2uOYHI27KchRiUvFYBIqlUUcIdPZDfyzetDfd8qBCxlAsFnkL2VJSNdpA9A==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@sentry/cli/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/@sentry/core": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-8.41.0.tgz", - "integrity": "sha512-3v7u3t4LozCA5SpZY4yqUN2U3jSrkXNoLgz6L2SUUiydyCuSwXZIFEwpLJfgQyidpNDifeQbBI5E1O910XkPsA==", - "dependencies": { - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/nextjs": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/nextjs/-/nextjs-8.41.0.tgz", - "integrity": "sha512-UeB7WJ4bAEGtEYKhMWf1tOHBZaY4sws0nHMs0NctOJ9/5MlgcYlzdO4XSIuSyykJ3QMM/ENXj/1mPdm4dWhB8g==", - "dependencies": { - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/instrumentation-http": "0.53.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@rollup/plugin-commonjs": "28.0.1", - "@sentry-internal/browser-utils": "8.41.0", - "@sentry/core": "8.41.0", - "@sentry/node": "8.41.0", - "@sentry/opentelemetry": "8.41.0", - "@sentry/react": "8.41.0", - "@sentry/types": "8.41.0", - "@sentry/vercel-edge": "8.41.0", - "@sentry/webpack-plugin": "2.22.6", - "chalk": "3.0.0", - "resolve": "1.22.8", - "rollup": "3.29.5", - "stacktrace-parser": "^0.1.10" - }, - "engines": { - "node": ">=14.18" - }, - "peerDependencies": { - "next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0" - } - }, - "node_modules/@sentry/nextjs/node_modules/@sentry/opentelemetry": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/opentelemetry/-/opentelemetry-8.41.0.tgz", - "integrity": "sha512-Ld6KdBQsmSk2IfFSoZ7CMpmuQbfb3viV6nTDCz6+11wL9S+1b+hadCN+38yBW4CmI4/hEpYfwwWQPseQQTvBCg==", - "dependencies": { - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/core": "^1.25.1", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/sdk-trace-base": "^1.26.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - } - }, - "node_modules/@sentry/nextjs/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@sentry/nextjs/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@sentry/node": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-8.41.0.tgz", - "integrity": "sha512-eYD5S8Lti9efBHFSIhZ/0C5uI1DQtGqjuNWQ62CKC47G2qgJddBtb2HgqRFAnMajYL9FXEtiDT6uqQhKQnmLcQ==", - "dependencies": { - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/context-async-hooks": "^1.25.1", - "@opentelemetry/core": "^1.25.1", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/instrumentation-amqplib": "^0.43.0", - "@opentelemetry/instrumentation-connect": "0.40.0", - "@opentelemetry/instrumentation-dataloader": "0.12.0", - "@opentelemetry/instrumentation-express": "0.44.0", - "@opentelemetry/instrumentation-fastify": "0.41.0", - "@opentelemetry/instrumentation-fs": "0.16.0", - "@opentelemetry/instrumentation-generic-pool": "0.39.0", - "@opentelemetry/instrumentation-graphql": "0.44.0", - "@opentelemetry/instrumentation-hapi": "0.41.0", - "@opentelemetry/instrumentation-http": "0.53.0", - "@opentelemetry/instrumentation-ioredis": "0.43.0", - "@opentelemetry/instrumentation-kafkajs": "0.4.0", - "@opentelemetry/instrumentation-knex": "0.41.0", - "@opentelemetry/instrumentation-koa": "0.43.0", - "@opentelemetry/instrumentation-lru-memoizer": "0.40.0", - "@opentelemetry/instrumentation-mongodb": "0.48.0", - "@opentelemetry/instrumentation-mongoose": "0.42.0", - "@opentelemetry/instrumentation-mysql": "0.41.0", - "@opentelemetry/instrumentation-mysql2": "0.41.0", - "@opentelemetry/instrumentation-nestjs-core": "0.40.0", - "@opentelemetry/instrumentation-pg": "0.44.0", - "@opentelemetry/instrumentation-redis-4": "0.42.0", - "@opentelemetry/instrumentation-tedious": "0.15.0", - "@opentelemetry/instrumentation-undici": "0.6.0", - "@opentelemetry/resources": "^1.26.0", - "@opentelemetry/sdk-trace-base": "^1.26.0", - "@opentelemetry/semantic-conventions": "^1.27.0", - "@prisma/instrumentation": "5.19.1", - "@sentry/core": "8.41.0", - "@sentry/opentelemetry": "8.41.0", - "@sentry/types": "8.41.0", - "import-in-the-middle": "^1.11.2" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/node/node_modules/@sentry/opentelemetry": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/opentelemetry/-/opentelemetry-8.41.0.tgz", - "integrity": "sha512-Ld6KdBQsmSk2IfFSoZ7CMpmuQbfb3viV6nTDCz6+11wL9S+1b+hadCN+38yBW4CmI4/hEpYfwwWQPseQQTvBCg==", - "dependencies": { - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/core": "^1.25.1", - "@opentelemetry/instrumentation": "^0.54.0", - "@opentelemetry/sdk-trace-base": "^1.26.0", - "@opentelemetry/semantic-conventions": "^1.27.0" - } - }, - "node_modules/@sentry/react": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/react/-/react-8.41.0.tgz", - "integrity": "sha512-/7LEWDNdICYO5s4ie8ztgpmD/GRJ1+1nHlSKvcwjf83COzT1eGvVeuYTiXFAPmXA29sY+lV1RajziwgySadjIQ==", - "dependencies": { - "@sentry/browser": "8.41.0", - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0", - "hoist-non-react-statics": "^3.3.2" - }, - "engines": { - "node": ">=14.18" - }, - "peerDependencies": { - "react": "^16.14.0 || 17.x || 18.x || 19.x" - } - }, - "node_modules/@sentry/types": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-8.41.0.tgz", - "integrity": "sha512-eqdnGr9k9H++b9CjVUoTNUVahPVWeNnMy0YGkqS5+cjWWC+x43p56202oidGFmWo6702ub/xwUNH6M5PC4kq6A==", - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/vercel-edge": { - "version": "8.41.0", - "resolved": "https://registry.npmjs.org/@sentry/vercel-edge/-/vercel-edge-8.41.0.tgz", - "integrity": "sha512-r8ZiOuT9SfSeasjz+BSyzz/8yqyYsBFBo7imp3gTid7sTmCYvGuS174mnQi9uciRJYC4g1JrBWJCb5oQMtWw3Q==", - "dependencies": { - "@opentelemetry/api": "^1.9.0", - "@sentry/core": "8.41.0", - "@sentry/types": "8.41.0" - }, - "engines": { - "node": ">=14.18" - } - }, - "node_modules/@sentry/webpack-plugin": { - "version": "2.22.6", - "resolved": "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-2.22.6.tgz", - "integrity": "sha512-BiLhAzQYAz/9kCXKj2LeUKWf/9GBVn2dD0DeYK89s+sjDEaxjbcLBBiLlLrzT7eC9QVj2tUZRKOi6puCfc8ysw==", - "dependencies": { - "@sentry/bundler-plugin-core": "2.22.6", - "unplugin": "1.0.1", - "uuid": "^9.0.0" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "webpack": ">=4.40.0" - } - }, - "node_modules/@sentry/webpack-plugin/node_modules/uuid": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", - "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/@sideway/address": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", - "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", - "dev": true, - "dependencies": { - "@hapi/hoek": "^9.0.0" - } - }, - "node_modules/@sideway/formula": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", - "dev": true - }, - "node_modules/@sideway/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", - "dev": true - }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz", - "integrity": "sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sinonjs/commons": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", - "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", - "dev": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", - "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^3.0.0" - } - }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", - "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", - "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", - "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", - "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", - "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", - "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-preset": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", - "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", - "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", - "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", - "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", - "@svgr/babel-plugin-transform-svg-component": "8.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/core": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", - "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^8.1.3", - "snake-case": "^3.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", - "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.21.3", - "entities": "^4.4.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/plugin-jsx": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", - "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "@svgr/hast-util-to-babel-ast": "8.0.0", - "svg-parser": "^2.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" - } - }, - "node_modules/@svgr/plugin-svgo": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", - "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "cosmiconfig": "^8.1.3", - "deepmerge": "^4.3.1", - "svgo": "^3.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" - } - }, - "node_modules/@svgr/webpack": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", - "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@babel/plugin-transform-react-constant-elements": "^7.21.3", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.21.0", - "@svgr/core": "8.1.0", - "@svgr/plugin-jsx": "8.1.0", - "@svgr/plugin-svgo": "8.1.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@swc/counter": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", - "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" - }, - "node_modules/@swc/helpers": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz", - "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==", - "dependencies": { - "@swc/counter": "^0.1.3", - "tslib": "^2.4.0" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dev": true, - "dependencies": { - "defer-to-connect": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@t3-oss/env-core": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/@t3-oss/env-core/-/env-core-0.9.2.tgz", - "integrity": "sha512-KgWXljUTHgO3o7GMZQPAD5+P+HqpauMNNHowlm7V2b9IeMitSUpNKwG6xQrup/xARWHTdxRVIl0mSI4wCevQhQ==", - "peerDependencies": { - "typescript": ">=5.0.0", - "zod": "^3.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@t3-oss/env-nextjs": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/@t3-oss/env-nextjs/-/env-nextjs-0.9.2.tgz", - "integrity": "sha512-dklHrgKLESStNVB67Jdbu6osxDYA+xNKaPBRerlnkEvzbCccSKMvZENx6EZebJuR4snqB3/yRykNMn/bdIAyiQ==", - "dependencies": { - "@t3-oss/env-core": "0.9.2" - }, - "peerDependencies": { - "typescript": ">=5.0.0", - "zod": "^3.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@tanstack/query-core": { - "version": "5.64.2", - "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.64.2.tgz", - "integrity": "sha512-hdO8SZpWXoADNTWXV9We8CwTkXU88OVWRBcsiFrk7xJQnhm6WRlweDzMD+uH+GnuieTBVSML6xFa17C2cNV8+g==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/query-devtools": { - "version": "5.64.2", - "resolved": "https://registry.npmjs.org/@tanstack/query-devtools/-/query-devtools-5.64.2.tgz", - "integrity": "sha512-3DautR5UpVZdk/qNIhioZVF7g8fdQZ1U98sBEEk4Tzz3tihSBNMPgwlP40nzgbPEDBIrn/j/oyyvNBVSo083Vw==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/react-query": { - "version": "5.64.2", - "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.64.2.tgz", - "integrity": "sha512-3pakNscZNm8KJkxmovvtZ4RaXLyiYYobwleTMvpIGUoKRa8j8VlrQKNl5W8VUEfVfZKkikvXVddLuWMbcSCA1Q==", - "license": "MIT", - "dependencies": { - "@tanstack/query-core": "5.64.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "react": "^18 || ^19" - } - }, - "node_modules/@tanstack/react-query-devtools": { - "version": "5.64.2", - "resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-5.64.2.tgz", - "integrity": "sha512-+ZjJVnPzc8BUV/Eklu2k9T/IAyAyvwoCHqOaOrk2sbU33LFhM52BpX4eyENXn0bx5LwV3DJZgEQlIzucoemfGQ==", - "license": "MIT", - "dependencies": { - "@tanstack/query-devtools": "5.64.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "@tanstack/react-query": "^5.64.2", - "react": "^18 || ^19" - } - }, - "node_modules/@tanstack/react-table": { - "version": "8.20.5", - "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.20.5.tgz", - "integrity": "sha512-WEHopKw3znbUZ61s9i0+i9g8drmDo6asTWbrQh8Us63DAk/M0FkmIqERew6P71HI75ksZ2Pxyuf4vvKh9rAkiA==", - "dependencies": { - "@tanstack/table-core": "8.20.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" - } - }, - "node_modules/@tanstack/table-core": { - "version": "8.20.5", - "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.20.5.tgz", - "integrity": "sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==", - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@testing-library/dom": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", - "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", - "dev": true, - "peer": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/dom/node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "dev": true, - "peer": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true, - "peer": true - }, - "node_modules/@testing-library/jest-dom": { - "version": "6.4.6", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.4.6.tgz", - "integrity": "sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==", - "dev": true, - "dependencies": { - "@adobe/css-tools": "^4.4.0", - "@babel/runtime": "^7.9.2", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.6.3", - "lodash": "^4.17.21", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=14", - "npm": ">=6", - "yarn": ">=1" - }, - "peerDependencies": { - "@jest/globals": ">= 28", - "@types/bun": "latest", - "@types/jest": ">= 28", - "jest": ">= 28", - "vitest": ">= 0.32" - }, - "peerDependenciesMeta": { - "@jest/globals": { - "optional": true - }, - "@types/bun": { - "optional": true - }, - "@types/jest": { - "optional": true - }, - "jest": { - "optional": true - }, - "vitest": { - "optional": true - } - } - }, - "node_modules/@testing-library/jest-dom/node_modules/@adobe/css-tools": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz", - "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==", - "dev": true - }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", - "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", - "dev": true - }, - "node_modules/@testing-library/jest-dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react": { - "version": "16.0.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.0.0.tgz", - "integrity": "sha512-guuxUKRWQ+FgNX0h0NS0FIq3Q3uLtWVpBzcLOggmfMoUpgBnzBzvLLd4fbm6yS8ydJd94cIfY4yP9qUQjM2KwQ==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@testing-library/dom": "^10.0.0", - "@types/react": "^18.0.0", - "@types/react-dom": "^18.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@testing-library/user-event": { - "version": "14.5.2", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", - "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", - "dev": true, - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@trpc/client": { - "version": "11.0.0-rc.467", - "resolved": "https://registry.npmjs.org/@trpc/client/-/client-11.0.0-rc.467.tgz", - "integrity": "sha512-ovZaGdAUl+EEmtJJc5uuo95B0gw8+q3jwNjUQQmmSMU5Isq4sYdjIWNkhbrFtR8CovllFyrRrjAgCWdaOTEY4g==", - "funding": [ - "https://trpc.io/sponsor" - ], - "license": "MIT", - "peerDependencies": { - "@trpc/server": "11.0.0-rc.467+8f72171d6" - } - }, - "node_modules/@trpc/react-query": { - "version": "11.0.0-rc.467", - "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-11.0.0-rc.467.tgz", - "integrity": "sha512-PNpHgISXJ60s0fJc6JUomKe3iu1wj6pZNFHJgQecAEK0gs1y6VM8Oh8CHgZg8+J/KDP/UtUmBcbpFP9l8Nq48w==", - "funding": [ - "https://trpc.io/sponsor" - ], - "license": "MIT", - "peerDependencies": { - "@tanstack/react-query": "^5.49.2", - "@trpc/client": "11.0.0-rc.467+8f72171d6", - "@trpc/server": "11.0.0-rc.467+8f72171d6", - "react": ">=18.2.0", - "react-dom": ">=18.2.0" - } - }, - "node_modules/@trpc/server": { - "version": "11.0.0-rc.467", - "resolved": "https://registry.npmjs.org/@trpc/server/-/server-11.0.0-rc.467.tgz", - "integrity": "sha512-94Gv26ALuBfxgFlSGV3x2uF2ixUEViuK0m3IPKOvCTMreisZkBqyTa3NkBcuPZW/AMUieM5P4Q2NrbHTIA0fKQ==", - "funding": [ - "https://trpc.io/sponsor" - ], - "license": "MIT" - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", - "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "node_modules/@tsparticles/basic": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/basic/-/basic-3.5.0.tgz", - "integrity": "sha512-oty33TxM2aHWrzcwWRic1bQ04KBCdpnvzv8JXEkx5Uyp70vgVegUbtKmwGki3shqKZIt3v2qE4I8NsK6onhLrA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/matteobruni" - }, - { - "type": "github", - "url": "https://github.com/sponsors/tsparticles" - }, - { - "type": "buymeacoffee", - "url": "https://www.buymeacoffee.com/matteobruni" - } - ], - "dependencies": { - "@tsparticles/engine": "^3.5.0", - "@tsparticles/move-base": "^3.5.0", - "@tsparticles/shape-circle": "^3.5.0", - "@tsparticles/updater-color": "^3.5.0", - "@tsparticles/updater-opacity": "^3.5.0", - "@tsparticles/updater-out-modes": "^3.5.0", - "@tsparticles/updater-size": "^3.5.0" - } - }, - "node_modules/@tsparticles/confetti": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/confetti/-/confetti-3.5.0.tgz", - "integrity": "sha512-wS3nqtanbCvAbNlyAffKJq6lgIPzHFljEOO3JSCDgRD6rG5X/jvidhw2vR3kLrjBTV40c+Xv6MpJgSgTRWkogg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/matteobruni" - }, - { - "type": "github", - "url": "https://github.com/sponsors/tsparticles" - }, - { - "type": "buymeacoffee", - "url": "https://www.buymeacoffee.com/matteobruni" - } - ], - "dependencies": { - "@tsparticles/basic": "^3.5.0", - "@tsparticles/engine": "^3.5.0", - "@tsparticles/plugin-emitters": "^3.5.0", - "@tsparticles/plugin-motion": "^3.5.0", - "@tsparticles/shape-cards": "^3.5.0", - "@tsparticles/shape-emoji": "^3.5.0", - "@tsparticles/shape-heart": "^3.5.0", - "@tsparticles/shape-image": "^3.5.0", - "@tsparticles/shape-polygon": "^3.5.0", - "@tsparticles/shape-square": "^3.5.0", - "@tsparticles/shape-star": "^3.5.0", - "@tsparticles/updater-life": "^3.5.0", - "@tsparticles/updater-roll": "^3.5.0", - "@tsparticles/updater-rotate": "^3.5.0", - "@tsparticles/updater-tilt": "^3.5.0", - "@tsparticles/updater-wobble": "^3.5.0" - } - }, - "node_modules/@tsparticles/engine": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/engine/-/engine-3.5.0.tgz", - "integrity": "sha512-RCwrJ2SvSYdhXJ24oUCjSUKEZQ9lXwObOWMvfMC9vS6/bk+Qo0N7Xx8AfumqzP/LebB1YJdlCvuoJMauAon0Pg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/matteobruni" - }, - { - "type": "github", - "url": "https://github.com/sponsors/tsparticles" - }, - { - "type": "buymeacoffee", - "url": "https://www.buymeacoffee.com/matteobruni" - } - ], - "hasInstallScript": true - }, - "node_modules/@tsparticles/move-base": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/move-base/-/move-base-3.5.0.tgz", - "integrity": "sha512-9oDk7zTxyhUCstj3lHTNTiWAgqIBzWa2o1tVQFK63Qwq+/WxzJCSwZOocC9PAHGM1IP6nA4zYJSfjbMBTrUocA==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/plugin-emitters": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/plugin-emitters/-/plugin-emitters-3.5.0.tgz", - "integrity": "sha512-8Vg6wAPS75ibkukqtTM7yoC+8NnfXBl8xVUUbTaoeQCE0WDWwztboMf5L4pUgWe9WA52ZgFkWtT/mFH5wk5T9g==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/plugin-motion": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/plugin-motion/-/plugin-motion-3.5.0.tgz", - "integrity": "sha512-juP8f9ABjlhQmg4SO+tTofLYJwvwLPfKWJYvG8c6HU2rlJxJ/6eeWe9kDpv/T8nun3kXYHtrLhcJAmvWg/b5qA==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-cards": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-cards/-/shape-cards-3.5.0.tgz", - "integrity": "sha512-rU7rp1Yn1leHpCNA/7vrfY6tcLjvrG6A6sOT11dSanIj2J8zgLNXnbVtRJPtU13x+masft9Ta1tpw3dFRdtHcA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/matteobruni" - }, - { - "type": "github", - "url": "https://github.com/sponsors/tsparticles" - }, - { - "type": "buymeacoffee", - "url": "https://www.buymeacoffee.com/matteobruni" - } - ], - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-circle": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-circle/-/shape-circle-3.5.0.tgz", - "integrity": "sha512-59TmXkeeI6Jzv5vt/D3TkclglabaoEXQi2kbDjSCBK68SXRHzlQu29mSAL41Y5S0Ft5ZJKkAQHX1IqEnm8Hyjg==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-emoji": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-emoji/-/shape-emoji-3.5.0.tgz", - "integrity": "sha512-cxWHxQxnG5vLDltkoxdo7KS87uKPwQgf4SDWy/WCxW4Psm1TEeeSGYMJPVed+wWPspOKmLb7u8OaEexgE2pHHQ==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-heart": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-heart/-/shape-heart-3.5.0.tgz", - "integrity": "sha512-MvOxW6X7w1jHH+KRJShvHMDhRZ+bpei2mAqQOFR5HY+2D6KFzaDVgtfGFwoiaX8Pm6oP6OQssQ3QnDtrywLRFw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/matteobruni" - }, - { - "type": "github", - "url": "https://github.com/sponsors/tsparticles" - }, - { - "type": "buymeacoffee", - "url": "https://www.buymeacoffee.com/matteobruni" - } - ], - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-image": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-image/-/shape-image-3.5.0.tgz", - "integrity": "sha512-lWYg7DTv74dSOnXy+4dr7t1/OSuUmxDpIo12Lbxgx/QBN7A5I/HoqbKcs13TSA0RS1hcuMgtti07BcDTEYW3Dw==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-polygon": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-polygon/-/shape-polygon-3.5.0.tgz", - "integrity": "sha512-sqYL+YXpnq3nSWcOEGZaJ4Z7Cb7x8M0iORSLpPdNEIvwDKdPczYyQM95D8ep19Pv1CV5L0uRthV36wg7UpnJ9Q==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-square": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-square/-/shape-square-3.5.0.tgz", - "integrity": "sha512-rPHpA4Pzm1W5DIIow+lQS+VS7D2thSBQQbV9eHxb933Wh0/QC3me3w4vovuq7hdtVANhsUVO04n44Gc/2TgHkw==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/shape-star": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/shape-star/-/shape-star-3.5.0.tgz", - "integrity": "sha512-EDEJc4MYv3UbOeA3wrZjuJVtZ08PdCzzBij3T/7Tp3HUCf/p9XnfHBd/CPR5Mo6X0xpGfrein8UQN9CjGLHwUA==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-color": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-color/-/updater-color-3.5.0.tgz", - "integrity": "sha512-TGGgiLixIg37sst2Fj9IV4XbdMwkT6PYanM7qEqyfmv4hJ/RHMQlCznEe6b7OhChQVBg5ov5EMl/BT4/fIWEYw==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-life": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-life/-/updater-life-3.5.0.tgz", - "integrity": "sha512-jlMEq16dwN+rZmW/UmLdqaCe4W0NFrVdmXkZV8QWYgu06a+Ucslz337nHYaP89/9rZWpNua/uq1JDjDzaVD5Jg==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-opacity": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-opacity/-/updater-opacity-3.5.0.tgz", - "integrity": "sha512-T2YfqdIFV/f5VOg1JQsXu6/owdi9g9K2wrJlBfgteo+IboVp6Lcuo4PGAfilWVkWrTdp1Nz4mz39NrLHfOce2g==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-out-modes": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-out-modes/-/updater-out-modes-3.5.0.tgz", - "integrity": "sha512-y6NZe2OSk5SrYdaLwUIQnHICsNEDIdPPJHQ2nAWSvAuPJphlSKjUknc7OaGiFwle6l0OkhWoZZe1rV1ktbw/lA==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-roll": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-roll/-/updater-roll-3.5.0.tgz", - "integrity": "sha512-K3NfBGqVIu2zyJv72oNPlYLMDQKmUXTaCvnxUjzBEJJCYRdx7KhZPQVjAsfVYLHd7m7D7/+wKlkXmdYYAd67bg==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-rotate": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-rotate/-/updater-rotate-3.5.0.tgz", - "integrity": "sha512-j4qPHQd1eUmDoGnIJOsVswHLqtTof1je+b2GTOLB3WIoKmlyUpzQYjVc7PNfLMuCEUubwpZCfcd/vC80VZeWkg==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-size": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-size/-/updater-size-3.5.0.tgz", - "integrity": "sha512-TnWlOChBsVZffT2uO0S4ALGSzxT6UAMIVlhGMGFgSeIlktKMqM+dxDGAPrYa1n8IS2dkVGisiXzsV0Ss6Ceu1A==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-tilt": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-tilt/-/updater-tilt-3.5.0.tgz", - "integrity": "sha512-ovK6jH4fAmTav1kCC5Z1FW/pPjKxtK+X+w9BZJEddpS5cyBEdWD4FgvNgLnmZYpK0xad/nb+xxqeDkpSu/O51Q==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@tsparticles/updater-wobble": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/@tsparticles/updater-wobble/-/updater-wobble-3.5.0.tgz", - "integrity": "sha512-fpN0XPvAf3dJ5UU++C+ETVDLurpnkzje02w865Ar4ubPBgGpMhowr6AbtFUe37Zl8rFUTYntBOSEoxqNYJAUgQ==", - "dependencies": { - "@tsparticles/engine": "^3.5.0" - } - }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", - "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true, - "peer": true - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dev": true, - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "node_modules/@types/connect": { - "version": "3.4.36", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz", - "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==" - }, - "node_modules/@types/eslint": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", - "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", - "peer": true, - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "peer": true, - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==" - }, - "node_modules/@types/geojson": { - "version": "7946.0.16", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", - "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==" - }, - "node_modules/@types/glob-to-regexp": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@types/glob-to-regexp/-/glob-to-regexp-0.4.4.tgz", - "integrity": "sha512-nDKoaKJYbnn1MZxUY0cA1bPmmgZbg0cTq7Rh13d0KWYNOiKbqoR+2d89SnRPszGh7ROzSwZ/GOjZ4jPbmmZ6Eg==" - }, - "node_modules/@types/google.maps": { - "version": "3.58.0", - "resolved": "https://registry.npmjs.org/@types/google.maps/-/google.maps-3.58.0.tgz", - "integrity": "sha512-rZPrbNHoGxeY70uuQYFLGQqcz5mLd3pZy0u286GSugvN7PLFsHNRF2wN2QXtUgNiC33IC0LX+MD3LGAC3wN7Eg==" - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", - "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", - "license": "MIT", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", - "dev": true - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "29.5.12", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.12.tgz", - "integrity": "sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==", - "dev": true, - "dependencies": { - "expect": "^29.0.0", - "pretty-format": "^29.0.0" - } - }, - "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@types/jest/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/@types/jsdom": { - "version": "20.0.1", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", - "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", - "dev": true, - "dependencies": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "peer": true - }, - "node_modules/@types/json-stable-stringify-without-jsonify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.2.tgz", - "integrity": "sha512-X/Kn5f5fv1KBGqGDaegrj72Dlh+qEKN3ELwMAB6RdVlVzkf6NTeEnJpgR/Hr0AlpgTlYq/Vd0U3f79lavn6aDA==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/mysql": { - "version": "2.15.26", - "resolved": "https://registry.npmjs.org/@types/mysql/-/mysql-2.15.26.tgz", - "integrity": "sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/node": { - "version": "20.12.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", - "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/pg": { - "version": "8.6.1", - "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.1.tgz", - "integrity": "sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==", - "dependencies": { - "@types/node": "*", - "pg-protocol": "*", - "pg-types": "^2.2.0" - } - }, - "node_modules/@types/pg-pool": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/pg-pool/-/pg-pool-2.0.6.tgz", - "integrity": "sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ==", - "dependencies": { - "@types/pg": "*" - } - }, - "node_modules/@types/postcss-modules-local-by-default": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.2.tgz", - "integrity": "sha512-CtYCcD+L+trB3reJPny+bKWKMzPfxEyQpKIwit7kErnOexf5/faaGpkFy4I5AwbV4hp1sk7/aTg0tt0B67VkLQ==", - "dev": true, - "dependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/@types/postcss-modules-scope": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/postcss-modules-scope/-/postcss-modules-scope-3.0.4.tgz", - "integrity": "sha512-//ygSisVq9kVI0sqx3UPLzWIMCmtSVrzdljtuaAEJtGoGnpjBikZ2sXO5MpH9SnWX9HRfXxHifDAXcQjupWnIQ==", - "dev": true, - "dependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" - }, - "node_modules/@types/react": { - "version": "18.2.75", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.75.tgz", - "integrity": "sha512-+DNnF7yc5y0bHkBTiLKqXFe+L4B3nvOphiMY3tuA5X10esmjqk7smyBZzbGTy2vsiy/Bnzj8yFIBL8xhRacoOg==", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.24", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.24.tgz", - "integrity": "sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==", - "devOptional": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/responselike": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz", - "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/shimmer": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.2.0.tgz", - "integrity": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==" - }, - "node_modules/@types/sinonjs__fake-timers": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz", - "integrity": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==", - "dev": true - }, - "node_modules/@types/sizzle": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", - "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", - "dev": true - }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true - }, - "node_modules/@types/supercluster": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/supercluster/-/supercluster-7.1.3.tgz", - "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", - "dependencies": { - "@types/geojson": "*" - } - }, - "node_modules/@types/tedious": { - "version": "4.0.14", - "resolved": "https://registry.npmjs.org/@types/tedious/-/tedious-4.0.14.tgz", - "integrity": "sha512-KHPsfX/FoVbUGbyYvk1q9MMQHLPeRZhRJZdO45Q4YjvFkv4hMNghCWTvy7rdKessBsmtz4euWCWAB6/tVpI1Iw==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/tough-cookie": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", - "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", - "dev": true - }, - "node_modules/@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true - }, - "node_modules/@types/yauzl": { - "version": "2.10.3", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", - "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", - "dev": true, - "optional": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.17.0.tgz", - "integrity": "sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/type-utils": "8.17.0", - "@typescript-eslint/utils": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.17.0.tgz", - "integrity": "sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/typescript-estree": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.17.0.tgz", - "integrity": "sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.17.0.tgz", - "integrity": "sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "8.17.0", - "@typescript-eslint/utils": "8.17.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.17.0.tgz", - "integrity": "sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.17.0.tgz", - "integrity": "sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.17.0.tgz", - "integrity": "sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/typescript-estree": "8.17.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.17.0.tgz", - "integrity": "sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/@vercel/otel": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@vercel/otel/-/otel-1.9.1.tgz", - "integrity": "sha512-ZSTqgvd+w/lcB1nxEW8EHSBBqd4ZdeJ1t5op1CFo/nKFdG/EshwMon0qKc2ZxVEZXOZJI/x+LKf8Y5/Y/VHqEA==", - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.7.0", - "@opentelemetry/api-logs": ">=0.46.0 && <1.0.0", - "@opentelemetry/instrumentation": ">=0.46.0 && <1.0.0", - "@opentelemetry/resources": "^1.19.0", - "@opentelemetry/sdk-logs": ">=0.46.0 && <1.0.0", - "@opentelemetry/sdk-metrics": "^1.19.0", - "@opentelemetry/sdk-trace-base": "^1.19.0" - } - }, - "node_modules/@vis.gl/react-google-maps": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@vis.gl/react-google-maps/-/react-google-maps-1.2.0.tgz", - "integrity": "sha512-gKVE1Jb+FT+F8RGzFrsgB4GWbRq/vLJm2U5nMHiLJmRyaO6HcSfZJue8mUEDJCShsXE0ASphcoJxTQNrBhbFJg==", - "dependencies": { - "@types/google.maps": "^3.54.10", - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/helper-numbers": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", - "peer": true, - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.13.2", - "@webassemblyjs/helper-api-error": "1.13.2", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", - "peer": true - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/wasm-gen": "1.14.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", - "peer": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", - "peer": true, - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", - "peer": true - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/helper-wasm-section": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-opt": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1", - "@webassemblyjs/wast-printer": "1.14.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-api-error": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", - "peer": true, - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "peer": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "peer": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dev": true, - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", - "dev": true, - "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" - } - }, - "node_modules/acorn-import-attributes": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", - "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", - "peerDependencies": { - "acorn": "^8" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.3", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", - "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", - "dev": true, - "dependencies": { - "acorn": "^8.11.0" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peer": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dev": true, - "dependencies": { - "string-width": "^4.1.0" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/ansi-escape-sequences": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-5.1.2.tgz", - "integrity": "sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==", - "dev": true, - "dependencies": { - "array-back": "^4.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/aria-hidden": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", - "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", - "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", - "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.toreversed": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.toreversed/-/array.prototype.toreversed-1.1.2.tgz", - "integrity": "sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", - "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.1.0", - "es-shim-unscopables": "^1.0.2" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dev": true, - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/ast-monkey-traverse": { - "version": "4.0.16", - "resolved": "https://registry.npmjs.org/ast-monkey-traverse/-/ast-monkey-traverse-4.0.16.tgz", - "integrity": "sha512-ky+cFh4o+TTzQJTrT0pP3MG6E9RP3qYHtF7NGAXgOzP0MXIATw+8sOdMnVd8f138PXgdRBX642RjN3Eb6xnkTw==", - "dev": true, - "dependencies": { - "ast-monkey-util": "^3.0.8", - "codsen-utils": "^1.6.4", - "rfdc": "^1.3.1" - }, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/ast-monkey-util": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/ast-monkey-util/-/ast-monkey-util-3.0.8.tgz", - "integrity": "sha512-puSRInugkQtIX8hsbXp4jJzok7yMuLqg1kpmTCsqxpbkSiLKI88p+Mx5u9+7CanydNRhmsH/1cGTJvvGRuRfpQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", - "dev": true - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/atomically": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/atomically/-/atomically-2.0.3.tgz", - "integrity": "sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==", - "dev": true, - "dependencies": { - "stubborn-fs": "^1.2.5", - "when-exit": "^2.1.1" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", - "dev": true, - "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==", - "dev": true - }, - "node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/axios": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", - "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/axios/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/axios/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dev": true, - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/babel-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", - "dev": true, - "dependencies": { - "@jest/transform": "^29.7.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-istanbul/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "dependencies": { - "safe-buffer": "5.1.2" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "dev": true, - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/blob-util": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz", - "integrity": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==", - "dev": true - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true, - "license": "ISC" - }, - "node_modules/boxen": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-8.0.1.tgz", - "integrity": "sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==", - "dev": true, - "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^8.0.0", - "chalk": "^5.3.0", - "cli-boxes": "^3.0.0", - "string-width": "^7.2.0", - "type-fest": "^4.21.0", - "widest-line": "^5.0.0", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-8.0.0.tgz", - "integrity": "sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/boxen/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true - }, - "node_modules/boxen/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/boxen/node_modules/type-fest": { - "version": "4.26.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.26.1.tgz", - "integrity": "sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/wrap-ansi": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", - "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.1" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/byte-size": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-6.2.0.tgz", - "integrity": "sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cache-content-type": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz", - "integrity": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==", - "dev": true, - "dependencies": { - "mime-types": "^2.1.18", - "ylru": "^1.2.0" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/cacheable-lookup": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz", - "integrity": "sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg==", - "dev": true, - "dependencies": { - "@types/keyv": "^3.1.1", - "keyv": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", - "dev": true, - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cachedir": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.4.0.tgz", - "integrity": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/call-bind-apply-helpers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", - "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/call-bound": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", - "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "get-intrinsic": "^1.2.6" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001669", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", - "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==", - "dev": true - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/check-more-types": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", - "integrity": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "peer": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz", - "integrity": "sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==" - }, - "node_modules/class-variance-authority": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.0.tgz", - "integrity": "sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==", - "dependencies": { - "clsx": "2.0.0" - }, - "funding": { - "url": "https://joebell.co.uk" - } - }, - "node_modules/classnames": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", - "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" - }, - "node_modules/clean-deep": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/clean-deep/-/clean-deep-3.4.0.tgz", - "integrity": "sha512-Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw==", - "dependencies": { - "lodash.isempty": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.transform": "^4.6.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-table3": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", - "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/clone-response/node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/clsx": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", - "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/co-body": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/co-body/-/co-body-6.1.0.tgz", - "integrity": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==", - "dev": true, - "dependencies": { - "inflation": "^2.0.0", - "qs": "^6.5.2", - "raw-body": "^2.3.3", - "type-is": "^1.6.16" - } - }, - "node_modules/codsen-utils": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/codsen-utils/-/codsen-utils-1.6.4.tgz", - "integrity": "sha512-PDyvQ5f2PValmqZZIJATimcokDt4JjIev8cKbZgEOoZm+U1IJDYuLeTcxZPQdep99R/X0RIlQ6ReQgPOVnPbNw==", - "dev": true, - "dependencies": { - "rfdc": "^1.3.1" - }, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/command-line-args": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", - "dev": true, - "dependencies": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/command-line-args/node_modules/array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/command-line-args/node_modules/typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/command-line-usage": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", - "dev": true, - "dependencies": { - "array-back": "^4.0.2", - "chalk": "^2.4.2", - "table-layout": "^1.0.2", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/command-line-usage/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/command-line-usage/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/command-line-usage/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/command-line-usage/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/command-line-usage/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/command-line-usage/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/command-line-usage/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/command-line-usage/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/common-log-format": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/common-log-format/-/common-log-format-1.0.0.tgz", - "integrity": "sha512-fFn/WPNbsTCGTTwdCpZfVZSa5mgqMEkA0gMTRApFSlEsYN+9B2FPfiqch5FT+jsv5IV1RHV3GeZvCa7Qg+jssw==", - "dev": true, - "bin": { - "clf": "bin/cli.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dev": true, - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compute-scroll-into-view": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.0.tgz", - "integrity": "sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==", - "license": "MIT" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/config-chain/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/configstore": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-7.0.0.tgz", - "integrity": "sha512-yk7/5PN5im4qwz0WFZW3PXnzHgPu9mX29Y8uZ3aefe2lBPC1FYttWZRcaW9fKkT0pBCJyuQ2HfbmPVaODi9jcQ==", - "dev": true, - "dependencies": { - "atomically": "^2.0.3", - "dot-prop": "^9.0.0", - "graceful-fs": "^4.2.11", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" - } - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/contentstack": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/contentstack/-/contentstack-3.24.1.tgz", - "integrity": "sha512-HG8YkyG2VxN70d30ygfd38wXHA94qnGsXnIc3K9F8dAeUTx5jIIqPXahvg4B0yotr0OyoOaxuR0zUhyO1hku9Q==", - "dependencies": { - "@contentstack/utils": "^1.3.15", - "es6-promise": "^4.2.8", - "fetch-mock": "^12.2.0", - "localStorage": "1.0.4", - "qs": "^6.14.0" - }, - "engines": { - "node": ">= 10.14.2" - } - }, - "node_modules/contentstack/node_modules/qs": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", - "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", - "dependencies": { - "side-channel": "^1.1.0" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookies": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.9.1.tgz", - "integrity": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==", - "dev": true, - "dependencies": { - "depd": "~2.0.0", - "keygrip": "~1.1.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/copy-anything": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", - "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", - "dependencies": { - "is-what": "^4.1.8" - }, - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/copy-to": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/copy-to/-/copy-to-2.0.1.tgz", - "integrity": "sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==", - "dev": true - }, - "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.23.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/create-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", - "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "prompts": "^2.0.1" - }, - "bin": { - "create-jest": "bin/create-jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/create-mixin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/create-mixin/-/create-mixin-3.0.0.tgz", - "integrity": "sha512-LkdMqnWT9LaqBN4huqpUnMz56Yr1mVSoCduAd2xXefgH/YZP2sXCMAyztXjk4q8hTF/TlcDa+zQW2aTgGdjjKQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-fetch": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz", - "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==", - "dependencies": { - "node-fetch": "^2.6.12" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", - "dev": true - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "css-tree": "~2.2.0" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dev": true, - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/cssom": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", - "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "dev": true, - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/cypress": { - "version": "13.7.2", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.2.tgz", - "integrity": "sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@cypress/request": "^3.0.0", - "@cypress/xvfb": "^1.2.4", - "@types/sinonjs__fake-timers": "8.1.1", - "@types/sizzle": "^2.3.2", - "arch": "^2.2.0", - "blob-util": "^2.0.2", - "bluebird": "^3.7.2", - "buffer": "^5.7.1", - "cachedir": "^2.3.0", - "chalk": "^4.1.0", - "check-more-types": "^2.24.0", - "cli-cursor": "^3.1.0", - "cli-table3": "~0.6.1", - "commander": "^6.2.1", - "common-tags": "^1.8.0", - "dayjs": "^1.10.4", - "debug": "^4.3.4", - "enquirer": "^2.3.6", - "eventemitter2": "6.4.7", - "execa": "4.1.0", - "executable": "^4.1.1", - "extract-zip": "2.0.1", - "figures": "^3.2.0", - "fs-extra": "^9.1.0", - "getos": "^3.2.1", - "is-ci": "^3.0.1", - "is-installed-globally": "~0.4.0", - "lazy-ass": "^1.6.0", - "listr2": "^3.8.3", - "lodash": "^4.17.21", - "log-symbols": "^4.0.0", - "minimist": "^1.2.8", - "ospath": "^1.2.2", - "pretty-bytes": "^5.6.0", - "process": "^0.11.10", - "proxy-from-env": "1.0.0", - "request-progress": "^3.0.0", - "semver": "^7.5.3", - "supports-color": "^8.1.1", - "tmp": "~0.2.1", - "untildify": "^4.0.0", - "yauzl": "^2.10.0" - }, - "bin": { - "cypress": "bin/cypress" - }, - "engines": { - "node": "^16.0.0 || ^18.0.0 || >=20.0.0" - } - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", - "dev": true - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/data-urls": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", - "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.6", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/date-fns": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz", - "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/kossnocorp" - } - }, - "node_modules/dayjs": { - "version": "1.11.10", - "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", - "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decimal.js": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", - "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", - "dev": true - }, - "node_modules/decompress-response": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz", - "integrity": "sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw==", - "dev": true, - "dependencies": { - "mimic-response": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/dedent": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", - "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==", - "dev": true, - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" - }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==", - "dev": true - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-indent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", - "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==", - "dev": true, - "engines": { - "node": ">=12.20" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/detect-node-es": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", - "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - }, - "node_modules/devtools-protocol": { - "version": "0.0.1045489", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1045489.tgz", - "integrity": "sha512-D+PTmWulkuQW4D1NTiCRCFxF7pQPn0hgp4YyX4wAQ6xYXKOadSWPR3ENGDQ47MW/Ewc9v2rpC/UEEGahgBYpSQ==", - "dev": true - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true, - "peer": true - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domexception": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", - "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "deprecated": "Use your platform's native DOMException instead", - "dev": true, - "dependencies": { - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-9.0.0.tgz", - "integrity": "sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==", - "dev": true, - "dependencies": { - "type-fest": "^4.18.2" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dot-prop/node_modules/type-fest": { - "version": "4.26.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.26.1.tgz", - "integrity": "sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://dotenvx.com" - } - }, - "node_modules/downshift": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/downshift/-/downshift-9.0.8.tgz", - "integrity": "sha512-59BWD7+hSUQIM1DeNPLirNNnZIO9qMdIK5GQ/Uo8q34gT4B78RBlb9dhzgnh0HfQTJj4T/JKYD8KoLAlMWnTsA==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.24.5", - "compute-scroll-into-view": "^3.1.0", - "prop-types": "^15.8.1", - "react-is": "18.2.0", - "tslib": "^2.6.2" - }, - "peerDependencies": { - "react": ">=16.12.0" - } - }, - "node_modules/downshift/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "license": "MIT" - }, - "node_modules/dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-errors": "^1.3.0", - "gopd": "^1.2.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/duplexer3": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", - "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", - "dev": true - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dev": true, - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.5.52", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.52.tgz", - "integrity": "sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==" - }, - "node_modules/embla-carousel": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.5.2.tgz", - "integrity": "sha512-xQ9oVLrun/eCG/7ru3R+I5bJ7shsD8fFwLEY7yPe27/+fDHCNj0OT5EoG5ZbFyOxOcG6yTwW8oTz/dWyFnyGpg==", - "license": "MIT" - }, - "node_modules/embla-carousel-react": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-8.5.2.tgz", - "integrity": "sha512-Tmx+uY3MqseIGdwp0ScyUuxpBgx5jX1f7od4Cm5mDwg/dptEiTKf9xp6tw0lZN2VA9JbnVMl/aikmbc53c6QFA==", - "license": "MIT", - "dependencies": { - "embla-carousel": "8.5.2", - "embla-carousel-reactive-utils": "8.5.2" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" - } - }, - "node_modules/embla-carousel-reactive-utils": { - "version": "8.5.2", - "resolved": "https://registry.npmjs.org/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.5.2.tgz", - "integrity": "sha512-QC8/hYSK/pEmqEdU1IO5O+XNc/Ptmmq7uCB44vKplgLKhB/l0+yvYx0+Cv0sF6Ena8Srld5vUErZkT+yTahtDg==", - "license": "MIT", - "peerDependencies": { - "embla-carousel": "8.5.2" - } - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/enquirer": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", - "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/environment": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", - "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dev": true, - "optional": true, - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/es-abstract": { - "version": "1.23.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", - "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", - "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.9", - "string.prototype.trimend": "^1.0.8", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.6", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-define-property": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.18", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz", - "integrity": "sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.0.3", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "iterator.prototype": "^1.1.2", - "safe-array-concat": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "peer": true - }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", - "dependencies": { - "es-errors": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", - "dev": true, - "dependencies": { - "hasown": "^2.0.0" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-goat": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", - "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", - "dev": true - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", - "dev": true, - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "14.1.4", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.4.tgz", - "integrity": "sha512-cihIahbhYAWwXJwZkAaRPpUi5t9aOi/HdfWXOjZeUOqNWXHD8X22kd1KG58Dc3MVaRx3HoR/oMGk2ltcrqDn8g==", - "dev": true, - "dependencies": { - "@next/eslint-plugin-next": "14.1.4", - "@rushstack/eslint-patch": "^1.3.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/parser": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", - "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "6.21.0", - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/typescript-estree": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/scope-manager": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", - "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", - "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/typescript-estree": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", - "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "@typescript-eslint/visitor-keys": "6.21.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-next/node_modules/@typescript-eslint/visitor-keys": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", - "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.21.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/eslint-config-next/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/eslint-config-next/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dev": true, - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", - "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz", - "integrity": "sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==", - "dev": true, - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.29.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", - "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlastindex": "^1.2.3", - "array.prototype.flat": "^1.3.2", - "array.prototype.flatmap": "^1.3.2", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.15.0" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", - "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.23.2", - "aria-query": "^5.3.0", - "array-includes": "^3.1.7", - "array.prototype.flatmap": "^1.3.2", - "ast-types-flow": "^0.0.8", - "axe-core": "=4.7.0", - "axobject-query": "^3.2.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "es-iterator-helpers": "^1.0.15", - "hasown": "^2.0.0", - "jsx-ast-utils": "^3.3.5", - "language-tags": "^1.0.9", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.34.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz", - "integrity": "sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.7", - "array.prototype.findlast": "^1.2.4", - "array.prototype.flatmap": "^1.3.2", - "array.prototype.toreversed": "^1.1.2", - "array.prototype.tosorted": "^1.1.3", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.17", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.7", - "object.fromentries": "^2.0.7", - "object.hasown": "^1.1.3", - "object.values": "^1.1.7", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.10" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-simple-import-sort": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-12.1.0.tgz", - "integrity": "sha512-Y2fqAfC11TcG/WP3TrI1Gi3p3nc8XJyEOJYHyEPEGI/UAgNx6akxxlX74p7SbAQdLcgASKhj8M0GKvH3vq/+ig==", - "dev": true, - "peerDependencies": { - "eslint": ">=5.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/event-stream": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz", - "integrity": "sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==", - "dev": true, - "dependencies": { - "duplexer": "~0.1.1", - "from": "~0", - "map-stream": "~0.1.0", - "pause-stream": "0.0.11", - "split": "0.3", - "stream-combiner": "~0.0.4", - "through": "~2.3.1" - } - }, - "node_modules/eventemitter2": { - "version": "6.4.7", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz", - "integrity": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==", - "dev": true - }, - "node_modules/eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "peer": true, - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "dependencies": { - "pify": "^2.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expect": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", - "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", - "dev": true, - "dependencies": { - "@jest/expect-utils": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, - "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" - } - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "dev": true, - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "dependencies": { - "pend": "~1.2.0" - } - }, - "node_modules/fetch-mock": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/fetch-mock/-/fetch-mock-12.3.0.tgz", - "integrity": "sha512-+ZHzLuzrKpP3u5PZo8ghFP1Kr3UJUTZ5PT/uQZtLv7UagDCVRt1bSzVg6MoTFdjQ0GXsx/crq2t0tGabkbH2yA==", - "dependencies": { - "@types/glob-to-regexp": "^0.4.4", - "dequal": "^2.0.3", - "glob-to-regexp": "^0.4.1", - "is-subset-of": "^3.1.10", - "regexparam": "^3.0.0" - }, - "engines": { - "node": ">=18.11.0" - } - }, - "node_modules/fetch-retry": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-6.0.0.tgz", - "integrity": "sha512-BUFj1aMubgib37I3v4q78fYo63Po7t4HUPTpQ6/QE6yK6cIQrP+W43FYToeTEyg5m2Y7eFUtijUuAv/PDlWuag==" - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "dev": true, - "dependencies": { - "array-back": "^3.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/find-replace/node_modules/array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", - "dev": true, - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true - }, - "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/framer-motion": { - "version": "11.3.28", - "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.3.28.tgz", - "integrity": "sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==", - "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "@emotion/is-prop-valid": "*", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/is-prop-valid": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/from": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/from/-/from-0.1.7.tgz", - "integrity": "sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==", - "dev": true - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-east-asian-width": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", - "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", - "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", - "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "function-bind": "^1.1.2", - "get-proto": "^1.0.0", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-nonce": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", - "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", - "engines": { - "node": ">=6" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", - "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/get-stdin": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", - "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.3.tgz", - "integrity": "sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==", - "dev": true, - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/getos": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz", - "integrity": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==", - "dev": true, - "dependencies": { - "async": "^3.2.0" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/git-hooks-list": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz", - "integrity": "sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==", - "dev": true, - "funding": { - "url": "https://github.com/fisker/git-hooks-list?sponsor=1" - } - }, - "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/global-directory": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", - "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", - "dev": true, - "dependencies": { - "ini": "4.1.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-directory/node_modules/ini": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", - "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", - "dev": true, - "dependencies": { - "ini": "2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dev": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/goober": { - "version": "2.1.16", - "resolved": "https://registry.npmjs.org/goober/-/goober-2.1.16.tgz", - "integrity": "sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==", - "peerDependencies": { - "csstype": "^3.0.10" - } - }, - "node_modules/gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/got": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/got/-/got-10.7.0.tgz", - "integrity": "sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==", - "dev": true, - "dependencies": { - "@sindresorhus/is": "^2.0.0", - "@szmarczak/http-timer": "^4.0.0", - "@types/cacheable-request": "^6.0.1", - "cacheable-lookup": "^2.0.0", - "cacheable-request": "^7.0.1", - "decompress-response": "^5.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^5.0.0", - "lowercase-keys": "^2.0.0", - "mimic-response": "^2.1.0", - "p-cancelable": "^2.0.0", - "p-event": "^4.0.0", - "responselike": "^2.0.0", - "to-readable-stream": "^2.0.0", - "type-fest": "^0.10.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/got/node_modules/type-fest": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz", - "integrity": "sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/graphql": { - "version": "16.8.1", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-16.8.1.tgz", - "integrity": "sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==", - "engines": { - "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" - } - }, - "node_modules/graphql-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-6.1.0.tgz", - "integrity": "sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.2.0", - "cross-fetch": "^3.1.5" - }, - "peerDependencies": { - "graphql": "14 - 16" - } - }, - "node_modules/graphql-tag": { - "version": "2.12.6", - "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz", - "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==", - "dependencies": { - "tslib": "^2.1.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "license": "BSD-3-Clause", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/html-dom-parser": { - "version": "5.0.13", - "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-5.0.13.tgz", - "integrity": "sha512-B7JonBuAfG32I7fDouUQEogBrz3jK9gAuN1r1AaXpED6dIhtg/JwiSRhjGL7aOJwRz3HU4efowCjQBaoXiREqg==", - "license": "MIT", - "dependencies": { - "domhandler": "5.0.3", - "htmlparser2": "10.0.0" - } - }, - "node_modules/html-encoding-sniffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", - "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", - "dev": true, - "dependencies": { - "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true - }, - "node_modules/html-react-parser": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-5.2.2.tgz", - "integrity": "sha512-yA5012CJGSFWYZsgYzfr6HXJgDap38/AEP4ra8Cw+WHIi2ZRDXRX/QVYdumRf1P8zKyScKd6YOrWYvVEiPfGKg==", - "license": "MIT", - "dependencies": { - "domhandler": "5.0.3", - "html-dom-parser": "5.0.13", - "react-property": "2.0.2", - "style-to-js": "1.1.16" - }, - "peerDependencies": { - "@types/react": "0.14 || 15 || 16 || 17 || 18 || 19", - "react": "0.14 || 15 || 16 || 17 || 18 || 19" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/htmlparser2": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.0.0.tgz", - "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.2.1", - "entities": "^6.0.0" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", - "integrity": "sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/http-assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", - "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", - "dev": true, - "dependencies": { - "deep-equal": "~1.0.1", - "http-errors": "~1.8.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "dev": true, - "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http-signature": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz", - "integrity": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==", - "dev": true, - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^2.0.2", - "sshpk": "^1.14.1" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/husky": { - "version": "9.0.11", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.0.11.tgz", - "integrity": "sha512-AB6lFlbwwyIqMdHYhwPe+kjOC3Oc5P3nThEoW/AaO2BX3vJDjWPFxYLxokUZOo6RNX20He3AaT8sESs9NJcmEw==", - "dev": true, - "bin": { - "husky": "bin.mjs" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ics": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/ics/-/ics-3.8.1.tgz", - "integrity": "sha512-UqQlfkajfhrS4pUGQfGIJMYz/Jsl/ob3LqcfEhUmLbwumg+ZNkU0/6S734Vsjq3/FYNpEcZVKodLBoe+zBM69g==", - "dependencies": { - "nanoid": "^3.1.23", - "runes2": "^1.1.2", - "yup": "^1.2.0" - } - }, - "node_modules/ics/node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/image-size": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", - "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", - "dev": true, - "optional": true, - "bin": { - "image-size": "bin/image-size.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/immer": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz", - "integrity": "sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" - } - }, - "node_modules/immutable": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", - "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", - "devOptional": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-in-the-middle": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.11.2.tgz", - "integrity": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==", - "dependencies": { - "acorn": "^8.8.2", - "acorn-import-attributes": "^1.9.5", - "cjs-module-lexer": "^1.2.2", - "module-details-from-path": "^1.0.3" - } - }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "dev": true, - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/inflation": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/inflation/-/inflation-2.1.0.tgz", - "integrity": "sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/inline-style-parser": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz", - "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==", - "license": "MIT" - }, - "node_modules/input-otp": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.2.tgz", - "integrity": "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==", - "license": "MIT", - "peerDependencies": { - "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc", - "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc" - } - }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", - "dev": true, - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/intl-messageformat": { - "version": "10.5.14", - "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.5.14.tgz", - "integrity": "sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==", - "license": "BSD-3-Clause", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/fast-memoize": "2.2.0", - "@formatjs/icu-messageformat-parser": "2.7.8", - "tslib": "^2.4.0" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-d": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-d/-/is-d-1.0.0.tgz", - "integrity": "sha512-IK3iBV/PkPB/CHpzt/37n+Wr1jpg7H/oSw2TKaNDS2dbLRwP7EiH7AToDWdySa3TNXgCO8Wdl5llPJYsE7Mb+Q==", - "dev": true, - "dependencies": { - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", - "dev": true, - "dependencies": { - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-in-ci": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-1.0.0.tgz", - "integrity": "sha512-eUuAjybVTHMYWm/U+vBO1sY/JOCgoPCXRxzdju0K+K0BiGW0SChEL1MLC0PoCIR1OlPo5YAp8HuQoUlsWEICwg==", - "dev": true, - "bin": { - "is-in-ci": "cli.js" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", - "dev": true, - "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-npm": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", - "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true - }, - "node_modules/is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", - "dependencies": { - "@types/estree": "*" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-subset-of": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/is-subset-of/-/is-subset-of-3.1.10.tgz", - "integrity": "sha512-avvaYgVmYWyaZ1NDFiv4y9JGkrE2je3op1Po4VYKKJKR8H2qVPsg1GZuuXl5elCTxTlwAIsrAjWAs4BVrISFRw==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", - "dependencies": { - "typedescriptor": "3.0.2" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", - "dev": true, - "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", - "dev": true - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.3.tgz", - "integrity": "sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-what": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", - "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==", - "dev": true - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-instrument": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", - "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", - "dev": true, - "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", - "dev": true, - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/iterator.prototype": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", - "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.4", - "set-function-name": "^2.0.1" - } - }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", - "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", - "dev": true, - "dependencies": { - "@jest/core": "^29.7.0", - "@jest/types": "^29.6.3", - "import-local": "^3.0.2", - "jest-cli": "^29.7.0" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-changed-files": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", - "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", - "dev": true, - "dependencies": { - "execa": "^5.0.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/jest-changed-files/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/jest-circus": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", - "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/expect": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^1.0.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^29.7.0", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "p-limit": "^3.1.0", - "pretty-format": "^29.7.0", - "pure-rand": "^6.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", - "dev": true, - "dependencies": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-config": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", - "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-jest": "^29.7.0", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-circus": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-runner": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-config/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-config/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-config/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-docblock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", - "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", - "dev": true, - "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", - "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "jest-util": "^29.7.0", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-each/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-each/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-environment-jsdom": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", - "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/jsdom": "^20.0.0", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0", - "jsdom": "^20.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jest-environment-node": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", - "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-mock": "^29.7.0", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-haste-map": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", - "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.6.3", - "jest-util": "^29.7.0", - "jest-worker": "^29.7.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } - }, - "node_modules/jest-leak-detector": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", - "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", - "dev": true, - "dependencies": { - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-leak-detector/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-matcher-utils": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", - "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-matcher-utils/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-message-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", - "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^29.6.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^29.7.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-message-util/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-mock": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", - "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-regex-util": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", - "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", - "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "resolve": "^1.20.0", - "resolve.exports": "^2.0.0", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", - "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", - "dev": true, - "dependencies": { - "jest-regex-util": "^29.6.3", - "jest-snapshot": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", - "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", - "dev": true, - "dependencies": { - "@jest/console": "^29.7.0", - "@jest/environment": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^29.7.0", - "jest-environment-node": "^29.7.0", - "jest-haste-map": "^29.7.0", - "jest-leak-detector": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-resolve": "^29.7.0", - "jest-runtime": "^29.7.0", - "jest-util": "^29.7.0", - "jest-watcher": "^29.7.0", - "jest-worker": "^29.7.0", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runtime": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", - "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", - "dev": true, - "dependencies": { - "@jest/environment": "^29.7.0", - "@jest/fake-timers": "^29.7.0", - "@jest/globals": "^29.7.0", - "@jest/source-map": "^29.6.3", - "@jest/test-result": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-mock": "^29.7.0", - "jest-regex-util": "^29.6.3", - "jest-resolve": "^29.7.0", - "jest-snapshot": "^29.7.0", - "jest-util": "^29.7.0", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runtime/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/jest-runtime/node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-snapshot": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", - "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-jsx": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^29.7.0", - "@jest/transform": "^29.7.0", - "@jest/types": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^29.7.0", - "graceful-fs": "^4.2.9", - "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.7.0", - "semver": "^7.5.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-util": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", - "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", - "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", - "dev": true, - "dependencies": { - "@jest/types": "^29.6.3", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^29.6.3", - "leven": "^3.1.0", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-validate/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, - "node_modules/jest-watcher": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", - "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", - "dev": true, - "dependencies": { - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.13.1", - "jest-util": "^29.7.0", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", - "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", - "dev": true, - "dependencies": { - "@types/node": "*", - "jest-util": "^29.7.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/joi": { - "version": "17.12.3", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.12.3.tgz", - "integrity": "sha512-2RRziagf555owrm9IRVtdKynOBeITiDpuZqIpgwqXShPncPKNiRQoiGsl/T8SQdq+8ugRzH2LqY67irr2y/d+g==", - "dev": true, - "dependencies": { - "@hapi/hoek": "^9.3.0", - "@hapi/topo": "^5.1.0", - "@sideway/address": "^4.1.5", - "@sideway/formula": "^3.0.1", - "@sideway/pinpoint": "^2.0.0" - } - }, - "node_modules/jose": { - "version": "5.9.6", - "resolved": "https://registry.npmjs.org/jose/-/jose-5.9.6.tgz", - "integrity": "sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==", - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==", - "dev": true - }, - "node_modules/jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", - "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", - "dev": true, - "dependencies": { - "abab": "^2.0.6", - "acorn": "^8.8.1", - "acorn-globals": "^7.0.0", - "cssom": "^0.5.0", - "cssstyle": "^2.3.0", - "data-urls": "^3.0.2", - "decimal.js": "^10.4.2", - "domexception": "^4.0.0", - "escodegen": "^2.0.0", - "form-data": "^4.0.0", - "html-encoding-sniffer": "^3.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.1", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.2", - "parse5": "^7.1.1", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.1.2", - "w3c-xmlserializer": "^4.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^2.0.0", - "whatwg-mimetype": "^3.0.0", - "whatwg-url": "^11.0.0", - "ws": "^8.11.0", - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsdom/node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/jsdom/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jsdom/node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jsdom/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, - "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "license": "MIT" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-sort-cli": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/json-sort-cli/-/json-sort-cli-4.0.4.tgz", - "integrity": "sha512-DdlQQuQXu8Deujb+A/ECcUVmC/uAWciDKSLB3lES4Q60gOYCf9D1gesMUMPZczUX7YUPupjIG4J4e5hX6VGZWA==", - "dev": true, - "dependencies": { - "ast-monkey-traverse": "^4.0.16", - "chalk": "^5.3.0", - "codsen-utils": "^1.6.4", - "fs-extra": "^11.2.0", - "globby": "^14.0.1", - "is-d": "^1.0.0", - "meow": "^13.2.0", - "p-filter": "^4.1.0", - "p-reduce": "^3.0.0", - "sort-package-json": "^2.10.0", - "update-notifier": "^7.0.0" - }, - "bin": { - "jsonsort": "cli.js", - "sortjson": "cli.js" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/json-sort-cli/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/json-sort-cli/node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/json-sort-cli/node_modules/globby": { - "version": "14.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", - "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", - "dev": true, - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/json-sort-cli/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/json-sort-cli/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "dev": true - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", - "dev": true, - "engines": [ - "node >= 0.2.0" - ] - }, - "node_modules/JSONStream": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", - "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", - "dev": true, - "dependencies": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" - }, - "bin": { - "JSONStream": "bin.js" - }, - "engines": { - "node": "*" - } - }, - "node_modules/jsprim": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz", - "integrity": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/kdbush": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/kdbush/-/kdbush-4.0.2.tgz", - "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==" - }, - "node_modules/keygrip": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", - "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", - "dev": true, - "dependencies": { - "tsscmp": "1.0.6" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/koa": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.3.tgz", - "integrity": "sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==", - "dev": true, - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/koa-bodyparser": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/koa-bodyparser/-/koa-bodyparser-4.4.1.tgz", - "integrity": "sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==", - "dev": true, - "dependencies": { - "co-body": "^6.0.0", - "copy-to": "^2.0.1", - "type-is": "^1.6.18" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/koa-compose": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/koa-compose/-/koa-compose-4.1.0.tgz", - "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==", - "dev": true - }, - "node_modules/koa-compress": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/koa-compress/-/koa-compress-3.1.0.tgz", - "integrity": "sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==", - "dev": true, - "dependencies": { - "bytes": "^3.0.0", - "compressible": "^2.0.0", - "koa-is-json": "^1.0.0", - "statuses": "^1.0.0" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/koa-conditional-get": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/koa-conditional-get/-/koa-conditional-get-2.0.0.tgz", - "integrity": "sha512-FTZYr681zfyW0bz8FDc55RJrRnicz6KPv2oA3GOf6knksJd0uJdfenKud+RtBjHzO0g1tVHNjwN6gk7OfHAtbQ==", - "dev": true - }, - "node_modules/koa-convert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", - "integrity": "sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==", - "dev": true, - "dependencies": { - "co": "^4.6.0", - "koa-compose": "^4.1.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/koa-etag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/koa-etag/-/koa-etag-3.0.0.tgz", - "integrity": "sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==", - "dev": true, - "dependencies": { - "etag": "^1.3.0", - "mz": "^2.1.0" - } - }, - "node_modules/koa-is-json": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/koa-is-json/-/koa-is-json-1.0.0.tgz", - "integrity": "sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==", - "dev": true - }, - "node_modules/koa-json": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/koa-json/-/koa-json-2.0.2.tgz", - "integrity": "sha512-8+dz0T2ekDuNN1svYoKPCV2txotQ3Ufg8Fn5bft1T48MPJWiC/HKmkk+3xj9EC/iNZuFYeLRazN2h2o3RSUXuQ==", - "dev": true, - "dependencies": { - "koa-is-json": "1", - "streaming-json-stringify": "3" - } - }, - "node_modules/koa-morgan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/koa-morgan/-/koa-morgan-1.0.1.tgz", - "integrity": "sha512-JOUdCNlc21G50afBXfErUrr1RKymbgzlrO5KURY+wmDG1Uvd2jmxUJcHgylb/mYXy2SjiNZyYim/ptUBGsIi3A==", - "dev": true, - "dependencies": { - "morgan": "^1.6.1" - } - }, - "node_modules/koa-range": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/koa-range/-/koa-range-0.3.0.tgz", - "integrity": "sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==", - "dev": true, - "dependencies": { - "stream-slice": "^0.1.2" - }, - "engines": { - "node": ">=7" - } - }, - "node_modules/koa-route": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/koa-route/-/koa-route-3.2.0.tgz", - "integrity": "sha512-8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA==", - "dev": true, - "dependencies": { - "debug": "*", - "methods": "~1.1.0", - "path-to-regexp": "^1.2.0" - } - }, - "node_modules/koa-route/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", - "dev": true - }, - "node_modules/koa-route/node_modules/path-to-regexp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz", - "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==", - "dev": true, - "dependencies": { - "isarray": "0.0.1" - } - }, - "node_modules/koa-send": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/koa-send/-/koa-send-5.0.1.tgz", - "integrity": "sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "http-errors": "^1.7.3", - "resolve-path": "^1.4.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/koa-static": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/koa-static/-/koa-static-5.0.0.tgz", - "integrity": "sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==", - "dev": true, - "dependencies": { - "debug": "^3.1.0", - "koa-send": "^5.0.0" - }, - "engines": { - "node": ">= 7.6.0" - } - }, - "node_modules/koa-static/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/ky": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/ky/-/ky-1.7.2.tgz", - "integrity": "sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sindresorhus/ky?sponsor=1" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", - "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", - "dev": true, - "dependencies": { - "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/latest-version": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-9.0.0.tgz", - "integrity": "sha512-7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==", - "dev": true, - "dependencies": { - "package-json": "^10.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lazy-ass": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz", - "integrity": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==", - "dev": true, - "engines": { - "node": "> 0.8" - } - }, - "node_modules/less": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", - "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", - "dev": true, - "dependencies": { - "copy-anything": "^2.0.1", - "parse-node-version": "^1.0.1", - "tslib": "^2.3.0" - }, - "bin": { - "lessc": "bin/lessc" - }, - "engines": { - "node": ">=6" - }, - "optionalDependencies": { - "errno": "^0.1.1", - "graceful-fs": "^4.1.2", - "image-size": "~0.5.0", - "make-dir": "^2.1.0", - "mime": "^1.4.1", - "needle": "^3.1.0", - "source-map": "~0.6.0" - } - }, - "node_modules/less/node_modules/copy-anything": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", - "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", - "dev": true, - "dependencies": { - "is-what": "^3.14.1" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/less/node_modules/is-what": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/libphonenumber-js": { - "version": "1.10.60", - "resolved": "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.60.tgz", - "integrity": "sha512-Ctgq2lXUpEJo5j1762NOzl2xo7z7pqmVWYai0p07LvAkQ32tbPv3wb+tcUeHEiXhKU5buM4H9MXsXo6OlM6C2g==" - }, - "node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lint-staged": { - "version": "15.2.10", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.10.tgz", - "integrity": "sha512-5dY5t743e1byO19P9I4b3x8HJwalIznL5E1FWYnU6OWw33KxNBSLAc6Cy7F2PsFEO8FKnLwjwm5hx7aMF0jzZg==", - "dev": true, - "dependencies": { - "chalk": "~5.3.0", - "commander": "~12.1.0", - "debug": "~4.3.6", - "execa": "~8.0.1", - "lilconfig": "~3.1.2", - "listr2": "~8.2.4", - "micromatch": "~4.0.8", - "pidtree": "~0.6.0", - "string-argv": "~0.3.2", - "yaml": "~2.5.0" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, - "engines": { - "node": ">=18.12.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" - } - }, - "node_modules/lint-staged/node_modules/ansi-escapes": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", - "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", - "dev": true, - "dependencies": { - "environment": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", - "dev": true, - "dependencies": { - "restore-cursor": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/cli-truncate": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", - "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", - "dev": true, - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/commander": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", - "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", - "dev": true, - "engines": { - "node": ">=18" - } - }, - "node_modules/lint-staged/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/lint-staged/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true - }, - "node_modules/lint-staged/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/lint-staged/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/listr2": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.2.5.tgz", - "integrity": "sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==", - "dev": true, - "dependencies": { - "cli-truncate": "^4.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^6.1.0", - "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/lint-staged/node_modules/log-update": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", - "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", - "dev": true, - "dependencies": { - "ansi-escapes": "^7.0.0", - "cli-cursor": "^5.0.0", - "slice-ansi": "^7.1.0", - "strip-ansi": "^7.1.0", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", - "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", - "dev": true, - "dependencies": { - "get-east-asian-width": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/log-update/node_modules/slice-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", - "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/restore-cursor": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", - "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", - "dev": true, - "dependencies": { - "onetime": "^7.0.0", - "signal-exit": "^4.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/restore-cursor/node_modules/onetime": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", - "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", - "dev": true, - "dependencies": { - "mimic-function": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/lint-staged/node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/wrap-ansi": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", - "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/listr2": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz", - "integrity": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==", - "dev": true, - "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.16", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.5.1", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } - } - }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/load-module": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/load-module/-/load-module-3.0.0.tgz", - "integrity": "sha512-ZqprfrTx4vfH5+1mgpspPh5JYsNyA193NkMUdb3GwpmVqMczOh8cUDJgZBmEZVlSR42JBGYTUxlBAX9LHIBtIA==", - "dev": true, - "dependencies": { - "array-back": "^4.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "peer": true, - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/local-web-server": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/local-web-server/-/local-web-server-4.2.1.tgz", - "integrity": "sha512-v71LZool2w7uYA+tDP5HhfjzUxz5SFfcrPPB/zC98yFFawt7A6fcmAr2MR4Q9AHk/A8oyd/wrhEJBJLndwHxNQ==", - "dev": true, - "dependencies": { - "lws": "^3.1.0", - "lws-basic-auth": "^2.0.0", - "lws-blacklist": "^3.0.0", - "lws-body-parser": "^2.0.0", - "lws-compress": "^2.0.0", - "lws-conditional-get": "^2.0.0", - "lws-cors": "^3.0.0", - "lws-index": "^2.0.0", - "lws-json": "^2.0.0", - "lws-log": "^2.0.0", - "lws-mime": "^2.0.0", - "lws-range": "^3.0.0", - "lws-request-monitor": "^2.0.0", - "lws-rewrite": "^3.1.1", - "lws-spa": "^3.0.0", - "lws-static": "^2.0.0", - "node-version-matches": "^2.0.1" - }, - "bin": { - "ws": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/localStorage": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/localStorage/-/localStorage-1.0.4.tgz", - "integrity": "sha512-r35zrihcDiX+dqWlJSeIwS9nrF95OQTgqMFm3FB2D/+XgdmZtcutZOb7t0xXkhOEM8a9kpuu7cc28g1g36I5DQ==", - "engines": { - "node": ">= v0.2.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "node_modules/lodash.assignwith": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz", - "integrity": "sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g==", - "dev": true - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "license": "MIT" - }, - "node_modules/lodash.isempty": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz", - "integrity": "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", - "dev": true - }, - "node_modules/lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==", - "dev": true - }, - "node_modules/lodash.transform": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz", - "integrity": "sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", - "dev": true, - "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/lws": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lws/-/lws-3.1.0.tgz", - "integrity": "sha512-I8rTgZxz8OJL0hjdlDxs6WpcVG7WSyalVHPQXXK+WPNVjm3KhkT5gV0Qmsgm2FRLbRUp15tso80xmDxMsyt7zA==", - "dev": true, - "dependencies": { - "ansi-escape-sequences": "^5.1.2", - "array-back": "^4.0.1", - "byte-size": "^6.2.0", - "command-line-args": "^5.1.1", - "command-line-usage": "^6.1.0", - "create-mixin": "^3.0.0", - "koa": "^2.11.0", - "load-module": "^3.0.0", - "lodash.assignwith": "^4.2.0", - "node-version-matches": "^2.0.1", - "open": "^7.0.4", - "qrcode-terminal": "^0.12.0", - "reduce-flatten": "^3.0.0", - "typical": "^6.0.0", - "walk-back": "^4.0.0" - }, - "bin": { - "lws": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-basic-auth": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-basic-auth/-/lws-basic-auth-2.0.0.tgz", - "integrity": "sha512-zzyoGFLQPuKaQJvHMLmmSyfT6lIvocwcDXllTVW5brD0t0YgHYopILkzja+x+MIlJX/YhNKniaTSasujniYVjw==", - "dev": true, - "dependencies": { - "basic-auth": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-blacklist": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lws-blacklist/-/lws-blacklist-3.0.0.tgz", - "integrity": "sha512-KNXGDBmbj+UGfWMBAefe2vrfuWpEQms/9Fd7kfMScTqAKF6nrVoEs4pkxfefArG3bX0bu7jWLyB4tJGma5WC6Q==", - "dev": true, - "dependencies": { - "array-back": "^4.0.1", - "path-to-regexp": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-body-parser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-body-parser/-/lws-body-parser-2.0.0.tgz", - "integrity": "sha512-QFDzln3sSdKWL9fVNWy2+ZmrKy/XaYRO0/FFB0MBrDCsNnzepeCD4I7rOOfyuphLn42yR8XUpWdcJ3Ii5aauRA==", - "dev": true, - "dependencies": { - "koa-bodyparser": "^4.2.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-compress": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-compress/-/lws-compress-2.0.0.tgz", - "integrity": "sha512-5qDXI9pukVYWm07WjAOfpItLXKtL8lCHvjmW4RiXULhTRJj1qqBjNcmqReyk8L7NLUKhc+8eqoDDJFKURQEp0w==", - "dev": true, - "dependencies": { - "koa-compress": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-conditional-get": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-conditional-get/-/lws-conditional-get-2.0.0.tgz", - "integrity": "sha512-U05yDlFJKIYa7gJZYfnc1HIEuXbKpDJztgkvNYyxCqJC28j/k9ORoNnFNOIHpBh/jlPJgV8x7uH34mIxFAryWA==", - "dev": true, - "dependencies": { - "koa-conditional-get": "^2.0.0", - "koa-etag": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-cors": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lws-cors/-/lws-cors-3.1.1.tgz", - "integrity": "sha512-JMqRHdZ8wS17LB9MbHZvOAiDE/2MD3TSODvEAmNkIPEvutKq1Z6wfuFbfiNjAQRGyImUfiUM99vJOFHmLCg2cw==", - "dev": true, - "dependencies": { - "@koa/cors": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-index": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-index/-/lws-index-2.0.0.tgz", - "integrity": "sha512-qfkeQmKYnd13LmQubzI5LtFV2N8PJQG4QvgSoefoiB3dWre9k2T4C7ajjOTKO8mgSzYpUEREduNcQcLyt62n0g==", - "dev": true, - "dependencies": { - "serve-index-75lb": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-json/-/lws-json-2.0.0.tgz", - "integrity": "sha512-vqUFrAQ5BGpkMS2Mm/ZhgvUMi6Tgia7YtESG7pKjNoiSsD+TxncG0nqp8YjUh2xrEzi/SYFc/ed+9ZOl/t0A0g==", - "dev": true, - "dependencies": { - "koa-json": "^2.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-log/-/lws-log-2.0.0.tgz", - "integrity": "sha512-YveoazSZ0Qb1Tljdm8G8yn9c+mAMXgvLMACZzh5aZIk7p8YJwiXf9r1S+xY7wbXEcKG629KfVO0B5G5gRFcyDQ==", - "dev": true, - "dependencies": { - "koa-morgan": "^1.0.1", - "stream-log-stats": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-mime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-mime/-/lws-mime-2.0.0.tgz", - "integrity": "sha512-mfrAgRQ5+hkQ7LJ6EAgwnUeymNeYxwLXZY3UQ6C2hSTr7BqMSzm9k5O0C8wWP2dzdhChzITYKwzWbUnAYVBwtA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-range": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lws-range/-/lws-range-3.0.0.tgz", - "integrity": "sha512-7ZhA/LqQnKjolKBo/2BFj9DyDDXcJGY3v05TwYRD0qDGrxW4vuatEjluC3SV7ZO/k4PxDLdxuk+RCgL5t3ThtQ==", - "dev": true, - "dependencies": { - "koa-range": "^0.3.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-request-monitor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-request-monitor/-/lws-request-monitor-2.0.0.tgz", - "integrity": "sha512-ZTo0/pS42qiejcYlL+wlpurSbDSS0J7pDDohqBx7jjUQkgni2Qd8cPzn/kW8QI82gXgDmdZH+ps0vheLHlgdgg==", - "dev": true, - "dependencies": { - "byte-size": "^6.2.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-rewrite": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lws-rewrite/-/lws-rewrite-3.1.1.tgz", - "integrity": "sha512-cOeaPXIlLUVLxS6BZ52QzZVzI8JjCzlWD4RWizB5Hd+0YGO0SPa3Vgk7CIghtAOsSdjtXg/wSOap2H1h+tw8BQ==", - "dev": true, - "dependencies": { - "array-back": "^4.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "koa-route": "^3.2.0", - "path-to-regexp": "^6.1.0" - }, - "bin": { - "lws-rewrite": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-spa": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lws-spa/-/lws-spa-3.0.0.tgz", - "integrity": "sha512-Tz10LfuOTUsRG6z+OCJ/vBN+4LQWoAGIJ1R02CFPrDk0pY3rHezM7/cCpq6Z6dXD+ipdNE8alkVn4zL2M+eVGg==", - "dev": true, - "dependencies": { - "koa-send": "^5.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lws-static": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lws-static/-/lws-static-2.0.0.tgz", - "integrity": "sha512-P25A0+IXdkB6Y6gZAG7X0mnaa+FJ8aTiWLUgM5kazaWmruRO7lyhSjitsA3y5TLI3DpPCZn0mWE4SRREujUZLg==", - "dev": true, - "dependencies": { - "koa-static": "^5.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "dev": true, - "peer": true, - "bin": { - "lz-string": "bin/bin.js" - } - }, - "node_modules/magic-string": { - "version": "0.30.14", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.14.tgz", - "integrity": "sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dev": true, - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/map-stream": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", - "integrity": "sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==", - "dev": true - }, - "node_modules/math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/meow": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", - "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "optional": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", - "dev": true - }, - "node_modules/module-details-from-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz", - "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==" - }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/morgan/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/mustache": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", - "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", - "bin": { - "mustache": "bin/mustache" - } - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.9.tgz", - "integrity": "sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.js" - }, - "engines": { - "node": "^18 || >=20" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/needle": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", - "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.3", - "sax": "^1.2.4" - }, - "bin": { - "needle": "bin/needle" - }, - "engines": { - "node": ">= 4.4.x" - } - }, - "node_modules/needle/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "peer": true - }, - "node_modules/netlify-plugin-cypress": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/netlify-plugin-cypress/-/netlify-plugin-cypress-2.2.1.tgz", - "integrity": "sha512-No93crt1+vaszMQ2UDWbXVvdBSwN1MQZff9cW8YrpA/er+PixjV2h0JbHgsRLUl/7Pe+NGjlcP/txQvvViK2zw==", - "dev": true, - "dependencies": { - "common-tags": "1.8.0", - "debug": "4.1.1", - "got": "10.7.0", - "local-web-server": "^4.2.1", - "puppeteer": "18.1.0", - "ramda": "0.27.1" - }, - "engines": { - "node": ">=10.18.1" - } - }, - "node_modules/netlify-plugin-cypress/node_modules/common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/netlify-plugin-cypress/node_modules/debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "deprecated": "Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/next": { - "version": "14.2.18", - "resolved": "https://registry.npmjs.org/next/-/next-14.2.18.tgz", - "integrity": "sha512-H9qbjDuGivUDEnK6wa+p2XKO+iMzgVgyr9Zp/4Iv29lKa+DYaxJGjOeEA+5VOvJh/M7HLiskehInSa0cWxVXUw==", - "license": "MIT", - "dependencies": { - "@next/env": "14.2.18", - "@swc/helpers": "0.5.5", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001579", - "graceful-fs": "^4.2.11", - "postcss": "8.4.31", - "styled-jsx": "5.1.1" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=18.17.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "14.2.18", - "@next/swc-darwin-x64": "14.2.18", - "@next/swc-linux-arm64-gnu": "14.2.18", - "@next/swc-linux-arm64-musl": "14.2.18", - "@next/swc-linux-x64-gnu": "14.2.18", - "@next/swc-linux-x64-musl": "14.2.18", - "@next/swc-win32-arm64-msvc": "14.2.18", - "@next/swc-win32-ia32-msvc": "14.2.18", - "@next/swc-win32-x64-msvc": "14.2.18" - }, - "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_modules/next-auth": { - "version": "5.0.0-beta.19", - "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-5.0.0-beta.19.tgz", - "integrity": "sha512-YHu1igcAxZPh8ZB7GIM93dqgY6gcAzq66FOhQFheAdOx1raxNcApt05nNyNCSB6NegSiyJ4XOPsaNow4pfDmsg==", - "dependencies": { - "@auth/core": "0.37.2" - }, - "peerDependencies": { - "@simplewebauthn/browser": "^9.0.1", - "@simplewebauthn/server": "^9.0.2", - "next": "^14.0.0-0 || ^15.0.0-0", - "nodemailer": "^6.6.5", - "react": "^18.2.0 || ^19.0.0-0" - }, - "peerDependenciesMeta": { - "@simplewebauthn/browser": { - "optional": true - }, - "@simplewebauthn/server": { - "optional": true - }, - "nodemailer": { - "optional": true - } - } - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" - }, - "node_modules/node-version-matches": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-version-matches/-/node-version-matches-2.0.1.tgz", - "integrity": "sha512-oqk6+05FC0dNVY5NuXuhPEMq+m1b9ZjS9SIhVE9EjwCHZspnmjSO8npbKAEieinR8GeEgbecoQcYIvI/Kwcf6Q==", - "dev": true, - "dependencies": { - "semver": "^6.3.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/node-version-matches/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/nwsapi": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.10.tgz", - "integrity": "sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==", - "dev": true - }, - "node_modules/oauth4webapi": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/oauth4webapi/-/oauth4webapi-3.1.4.tgz", - "integrity": "sha512-eVfN3nZNbok2s/ROifO0UAc5G8nRoLSbrcKJ09OqmucgnhXEfdIQOR4gq1eJH1rN3gV7rNw62bDEgftsgFtBEg==", - "funding": { - "url": "https://github.com/sponsors/panva" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", - "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", - "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.hasown": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.4.tgz", - "integrity": "sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==", - "dev": true, - "dependencies": { - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", - "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/only": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/only/-/only-0.0.2.tgz", - "integrity": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==", - "dev": true - }, - "node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ospath": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz", - "integrity": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==", - "dev": true - }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-event": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", - "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", - "dev": true, - "dependencies": { - "p-timeout": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-filter": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.1.0.tgz", - "integrity": "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==", - "dev": true, - "dependencies": { - "p-map": "^7.0.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-filter/node_modules/p-map": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz", - "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", - "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/package-json": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-10.0.1.tgz", - "integrity": "sha512-ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==", - "dev": true, - "dependencies": { - "ky": "^1.2.0", - "registry-auth-token": "^5.0.2", - "registry-url": "^6.0.1", - "semver": "^7.6.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-node-version": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", - "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "dev": true, - "dependencies": { - "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-to-regexp": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", - "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/pause-stream": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz", - "integrity": "sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==", - "dev": true, - "dependencies": { - "through": "~2.3" - } - }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", - "dev": true - }, - "node_modules/pg-int8": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pg-protocol": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz", - "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==" - }, - "node_modules/pg-types": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - "dependencies": { - "pg-int8": "1.0.1", - "postgres-array": "~2.0.0", - "postgres-bytea": "~1.0.0", - "postgres-date": "~1.0.4", - "postgres-interval": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/postcss-load-config/node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", - "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", - "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", - "dev": true, - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", - "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/postgres-array": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/postgres-bytea": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postgres-date": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postgres-interval": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - "dependencies": { - "xtend": "^4.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/preact": { - "version": "10.11.3", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.11.3.tgz", - "integrity": "sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/preact-render-to-string": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-5.2.3.tgz", - "integrity": "sha512-aPDxUn5o3GhWdtJtW0svRC2SS/l8D9MAgo2+AWml+BhDImb27ALf04Q2d+AHqUUOc6RdSXFIBVa2gxzgMKgtZA==", - "dependencies": { - "pretty-format": "^3.8.0" - }, - "peerDependencies": { - "preact": ">=10" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", - "dev": true, - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-format": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz", - "integrity": "sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==" - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dev": true, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/property-expr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", - "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/proxy-from-env": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz", - "integrity": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==", - "dev": true - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", - "dev": true, - "optional": true - }, - "node_modules/ps-tree": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.2.0.tgz", - "integrity": "sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==", - "dev": true, - "dependencies": { - "event-stream": "=3.3.4" - }, - "bin": { - "ps-tree": "bin/ps-tree.js" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", - "dev": true - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pupa": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", - "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", - "dev": true, - "dependencies": { - "escape-goat": "^4.0.0" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/puppeteer": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.1.0.tgz", - "integrity": "sha512-2RCVWIF+pZOSfksWlQU0Hh6CeUT5NYt66CDDgRyuReu6EvBAk1y+/Q7DuzYNvGChSecGMb7QPN0hkxAa3guAog==", - "deprecated": "< 21.8.0 is no longer supported", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "cross-fetch": "3.1.5", - "debug": "4.3.4", - "devtools-protocol": "0.0.1045489", - "extract-zip": "2.0.1", - "https-proxy-agent": "5.0.1", - "progress": "2.0.3", - "proxy-from-env": "1.1.0", - "rimraf": "3.0.2", - "tar-fs": "2.1.1", - "unbzip2-stream": "1.4.3", - "ws": "8.9.0" - }, - "engines": { - "node": ">=14.1.0" - } - }, - "node_modules/puppeteer/node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", - "dev": true, - "dependencies": { - "node-fetch": "2.6.7" - } - }, - "node_modules/puppeteer/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/puppeteer/node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true - }, - "node_modules/pure-rand": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", - "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] - }, - "node_modules/qrcode-terminal": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", - "integrity": "sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==", - "dev": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" - } - }, - "node_modules/qs": { - "version": "6.10.4", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.4.tgz", - "integrity": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==", - "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", - "dev": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ramda": { - "version": "0.27.1", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.1.tgz", - "integrity": "sha512-PgIdVpn5y5Yns8vqb8FzBUEYn98V3xcPgawAkkgj0YJ0qDsnHCiNmZYfOGMgOvoB0eWFLpYbhxUR3mxfDIMvpw==", - "dev": true - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "peer": true, - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-aria": { - "version": "3.37.0", - "resolved": "https://registry.npmjs.org/react-aria/-/react-aria-3.37.0.tgz", - "integrity": "sha512-u3WUEMTcbQFaoHauHO3KhPaBYzEv1o42EdPcLAs05GBw9Q6Axlqwo73UFgMrsc2ElwLAZ4EKpSdWHLo1R5gfiw==", - "dependencies": { - "@internationalized/string": "^3.2.5", - "@react-aria/breadcrumbs": "^3.5.20", - "@react-aria/button": "^3.11.1", - "@react-aria/calendar": "^3.7.0", - "@react-aria/checkbox": "^3.15.1", - "@react-aria/color": "^3.0.3", - "@react-aria/combobox": "^3.11.1", - "@react-aria/datepicker": "^3.13.0", - "@react-aria/dialog": "^3.5.21", - "@react-aria/disclosure": "^3.0.1", - "@react-aria/dnd": "^3.8.1", - "@react-aria/focus": "^3.19.1", - "@react-aria/gridlist": "^3.10.1", - "@react-aria/i18n": "^3.12.5", - "@react-aria/interactions": "^3.23.0", - "@react-aria/label": "^3.7.14", - "@react-aria/link": "^3.7.8", - "@react-aria/listbox": "^3.14.0", - "@react-aria/menu": "^3.17.0", - "@react-aria/meter": "^3.4.19", - "@react-aria/numberfield": "^3.11.10", - "@react-aria/overlays": "^3.25.0", - "@react-aria/progress": "^3.4.19", - "@react-aria/radio": "^3.10.11", - "@react-aria/searchfield": "^3.8.0", - "@react-aria/select": "^3.15.1", - "@react-aria/selection": "^3.22.0", - "@react-aria/separator": "^3.4.5", - "@react-aria/slider": "^3.7.15", - "@react-aria/ssr": "^3.9.7", - "@react-aria/switch": "^3.6.11", - "@react-aria/table": "^3.16.1", - "@react-aria/tabs": "^3.9.9", - "@react-aria/tag": "^3.4.9", - "@react-aria/textfield": "^3.16.0", - "@react-aria/tooltip": "^3.7.11", - "@react-aria/utils": "^3.27.0", - "@react-aria/visually-hidden": "^3.8.19", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/react-aria-components": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/react-aria-components/-/react-aria-components-1.6.0.tgz", - "integrity": "sha512-YfG9PUE7XrXtDDAqT4pLTGyYQaiHHTBFdAK/wNgGsypVnQSdzmyYlV3Ty8aHlZJI6hP9RWkbywvosXkU7KcPHg==", - "dependencies": { - "@internationalized/date": "^3.7.0", - "@internationalized/string": "^3.2.5", - "@react-aria/autocomplete": "3.0.0-alpha.37", - "@react-aria/collections": "3.0.0-alpha.7", - "@react-aria/color": "^3.0.3", - "@react-aria/disclosure": "^3.0.1", - "@react-aria/dnd": "^3.8.1", - "@react-aria/focus": "^3.19.1", - "@react-aria/interactions": "^3.23.0", - "@react-aria/live-announcer": "^3.4.1", - "@react-aria/menu": "^3.17.0", - "@react-aria/toolbar": "3.0.0-beta.12", - "@react-aria/tree": "3.0.0-beta.3", - "@react-aria/utils": "^3.27.0", - "@react-aria/virtualizer": "^4.1.1", - "@react-stately/autocomplete": "3.0.0-alpha.0", - "@react-stately/color": "^3.8.2", - "@react-stately/disclosure": "^3.0.1", - "@react-stately/layout": "^4.1.1", - "@react-stately/menu": "^3.9.1", - "@react-stately/selection": "^3.19.0", - "@react-stately/table": "^3.13.1", - "@react-stately/utils": "^3.10.5", - "@react-stately/virtualizer": "^4.2.1", - "@react-types/color": "^3.0.2", - "@react-types/form": "^3.7.9", - "@react-types/grid": "^3.2.11", - "@react-types/shared": "^3.27.0", - "@react-types/table": "^3.10.4", - "@swc/helpers": "^0.5.0", - "client-only": "^0.0.1", - "react-aria": "^3.37.0", - "react-stately": "^3.35.0", - "use-sync-external-store": "^1.2.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1", - "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/react-day-picker": { - "version": "9.0.8", - "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-9.0.8.tgz", - "integrity": "sha512-dZM94abRNnc2jC/wkWn56358GHJcfAHfyC2Th9asyIUQhFIC5D2Ef5qUG9n1b5t8PeCJst7eCWJ6b+XZaAjxhA==", - "license": "MIT", - "dependencies": { - "date-fns": "^3.6.0" - }, - "funding": { - "type": "individual", - "url": "https://github.com/sponsors/gpbl" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-feather": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/react-feather/-/react-feather-2.0.10.tgz", - "integrity": "sha512-BLhukwJ+Z92Nmdcs+EMw6dy1Z/VLiJTzEQACDUEnWMClhYnFykJCGWQx+NmwP/qQHGX/5CzQ+TGi8ofg2+HzVQ==", - "dependencies": { - "prop-types": "^15.7.2" - }, - "peerDependencies": { - "react": ">=16.8.6" - } - }, - "node_modules/react-hook-form": { - "version": "7.51.2", - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.2.tgz", - "integrity": "sha512-y++lwaWjtzDt/XNnyGDQy6goHskFualmDlf+jzEZvjvz6KWDf7EboL7pUvRCzPTJd0EOPpdekYaQLEvvG6m6HA==", - "engines": { - "node": ">=12.22.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/react-hook-form" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-international-phone": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/react-international-phone/-/react-international-phone-4.2.6.tgz", - "integrity": "sha512-El/ZVYmov5uGuk07nrfxe7M3/4Y8HhA9c3aCpAwilbPU8DekISwNSZMplqxzvxS+TIavIh28ZMDDx1u/4GqULg==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-intl": { - "version": "6.6.8", - "resolved": "https://registry.npmjs.org/react-intl/-/react-intl-6.6.8.tgz", - "integrity": "sha512-M0pkhzcgV31h++2901BiRXWl69hp2zPyLxRrSwRjd1ErXbNoubz/f4M6DrRTd4OiSUrT4ajRQzrmtS5plG4FtA==", - "license": "BSD-3-Clause", - "dependencies": { - "@formatjs/ecma402-abstract": "2.0.0", - "@formatjs/icu-messageformat-parser": "2.7.8", - "@formatjs/intl": "2.10.4", - "@formatjs/intl-displaynames": "6.6.8", - "@formatjs/intl-listformat": "7.5.7", - "@types/hoist-non-react-statics": "^3.3.1", - "@types/react": "16 || 17 || 18", - "hoist-non-react-statics": "^3.3.2", - "intl-messageformat": "10.5.14", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "react": "^16.6.0 || 17 || 18", - "typescript": "^4.7 || 5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.2.tgz", - "integrity": "sha512-+PbtI3VuDV0l6CleQMsx2gtK0JZbZKbpdu5ynr+lbsuvtmgbNcS3VM0tuY2QjFNOcWxvXeHjDpy42RO+4U2rug==", - "license": "MIT" - }, - "node_modules/react-remove-scroll": { - "version": "2.5.7", - "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.7.tgz", - "integrity": "sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==", - "dependencies": { - "react-remove-scroll-bar": "^2.3.4", - "react-style-singleton": "^2.2.1", - "tslib": "^2.1.0", - "use-callback-ref": "^1.3.0", - "use-sidecar": "^1.1.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-remove-scroll-bar": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", - "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", - "dependencies": { - "react-style-singleton": "^2.2.1", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-stately": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/react-stately/-/react-stately-3.35.0.tgz", - "integrity": "sha512-1BH21J/TOHpyZe7c+f1BU2bnRWaBDTjLH0WdBuzNfPOXu7RBG3ebPIRvqd7UkPaVfIcol2QJnxe8S0a314JWKA==", - "dependencies": { - "@react-stately/calendar": "^3.7.0", - "@react-stately/checkbox": "^3.6.11", - "@react-stately/collections": "^3.12.1", - "@react-stately/color": "^3.8.2", - "@react-stately/combobox": "^3.10.2", - "@react-stately/data": "^3.12.1", - "@react-stately/datepicker": "^3.12.0", - "@react-stately/disclosure": "^3.0.1", - "@react-stately/dnd": "^3.5.1", - "@react-stately/form": "^3.1.1", - "@react-stately/list": "^3.11.2", - "@react-stately/menu": "^3.9.1", - "@react-stately/numberfield": "^3.9.9", - "@react-stately/overlays": "^3.6.13", - "@react-stately/radio": "^3.10.10", - "@react-stately/searchfield": "^3.5.9", - "@react-stately/select": "^3.6.10", - "@react-stately/selection": "^3.19.0", - "@react-stately/slider": "^3.6.1", - "@react-stately/table": "^3.13.1", - "@react-stately/tabs": "^3.7.1", - "@react-stately/toggle": "^3.8.1", - "@react-stately/tooltip": "^3.5.1", - "@react-stately/tree": "^3.8.7", - "@react-types/shared": "^3.27.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1" - } - }, - "node_modules/react-style-singleton": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", - "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", - "dependencies": { - "get-nonce": "^1.0.0", - "invariant": "^2.2.4", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-to-print": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/react-to-print/-/react-to-print-3.0.2.tgz", - "integrity": "sha512-FS/Z4LLq0bgWaxd7obygFQ8yRFdKW74iE8fIVjFFsPJWIXmuL8CIO+4me1Hj44lrlxQ00gscSNb3BRM8olbwXg==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ~19" - } - }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/readable-stream/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dev": true, - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reduce-flatten": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-3.0.1.tgz", - "integrity": "sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", - "integrity": "sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.1", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexparam": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/regexparam/-/regexparam-3.0.0.tgz", - "integrity": "sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", - "dev": true, - "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/registry-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", - "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", - "dev": true, - "dependencies": { - "rc": "1.2.8" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/request-progress": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", - "integrity": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==", - "dev": true, - "dependencies": { - "throttleit": "^1.0.0" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-in-the-middle": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.3.0.tgz", - "integrity": "sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==", - "dependencies": { - "debug": "^4.1.1", - "module-details-from-path": "^1.0.3", - "resolve": "^1.22.1" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true - }, - "node_modules/reserved-words": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz", - "integrity": "sha512-0S5SrIUJ9LfpbVl4Yzij6VipUdafHrOTzvmfazSw/jeZrZtQK303OPZW+obtkaw7jQlTQppy0UvZWm9872PbRw==", - "dev": true - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-path": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz", - "integrity": "sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==", - "dev": true, - "dependencies": { - "http-errors": "~1.6.2", - "path-is-absolute": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/resolve-path/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/resolve-path/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/resolve-path/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/resolve-path/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/resolve.exports": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", - "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dev": true, - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "dev": true - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "3.29.5", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", - "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/runes2": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/runes2/-/runes2-1.1.4.tgz", - "integrity": "sha512-LNPnEDPOOU4ehF71m5JoQyzT2yxwD6ZreFJ7MxZUAoMKNMY1XrAo60H1CUoX5ncSm0rIuKlqn9JZNRrRkNou2g==" - }, - "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-array-concat": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", - "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "get-intrinsic": "^1.2.4", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", - "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-regex": "^1.1.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "node_modules/sass": { - "version": "1.77.5", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.5.tgz", - "integrity": "sha512-oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==", - "devOptional": true, - "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/sax": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", - "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", - "dev": true, - "optional": true - }, - "node_modules/saxes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", - "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", - "dev": true, - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=v12.22.7" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-dts": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.2.tgz", - "integrity": "sha512-MpNwH0dZJHinVxk9bT8XUdjKTxMYrA5bLtrrGmFA6PTLwlOKnhi67XoRd6/ty+Djt6ZC0slR57qFhZDNMI6DhQ==", - "dev": true, - "peerDependencies": { - "typescript": ">=4.1.0" - } - }, - "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "peer": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-index-75lb": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/serve-index-75lb/-/serve-index-75lb-2.0.1.tgz", - "integrity": "sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ==", - "dev": true, - "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.18", - "parseurl": "~1.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-index-75lb/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index-75lb/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index-75lb/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index-75lb/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/serve-index-75lb/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index-75lb/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/server-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz", - "integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==" - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dev": true, - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", - "dev": true - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/shimmer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz", - "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==" - }, - "node_modules/side-channel": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", - "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3", - "side-channel-list": "^1.0.0", - "side-channel-map": "^1.0.1", - "side-channel-weakmap": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-list": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", - "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", - "dependencies": { - "es-errors": "^1.3.0", - "object-inspect": "^1.13.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-map": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", - "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel-weakmap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", - "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.5", - "object-inspect": "^1.13.3", - "side-channel-map": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/slugify": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", - "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/sonner": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/sonner/-/sonner-1.7.0.tgz", - "integrity": "sha512-W6dH7m5MujEPyug3lpI2l3TC3Pp1+LTgK0Efg+IHDrBbtEjyCmCHHo6yfNBOsf1tFZ6zf+jceWwB38baC8yO9g==", - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc", - "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc" - } - }, - "node_modules/sort-object-keys": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz", - "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==", - "dev": true - }, - "node_modules/sort-package-json": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.1.tgz", - "integrity": "sha512-d76wfhgUuGypKqY72Unm5LFnMpACbdxXsLPcL27pOsSrmVqH3PztFp1uq+Z22suk15h7vXmTesuh2aEjdCqb5w==", - "dev": true, - "dependencies": { - "detect-indent": "^7.0.1", - "detect-newline": "^4.0.0", - "get-stdin": "^9.0.0", - "git-hooks-list": "^3.0.0", - "globby": "^13.1.2", - "is-plain-obj": "^4.1.0", - "semver": "^7.6.0", - "sort-object-keys": "^1.1.3" - }, - "bin": { - "sort-package-json": "cli.js" - } - }, - "node_modules/sort-package-json/node_modules/detect-newline": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", - "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sort-package-json/node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", - "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", - "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sort-package-json/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==", - "dev": true, - "dependencies": { - "through": "2" - }, - "engines": { - "node": "*" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/sshpk": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", - "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", - "dev": true, - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stacktrace-parser/node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/start-server-and-test": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/start-server-and-test/-/start-server-and-test-2.0.3.tgz", - "integrity": "sha512-QsVObjfjFZKJE6CS6bSKNwWZCKBG6975/jKRPPGFfFh+yOQglSeGXiNWjzgQNXdphcBI9nXbyso9tPfX4YAUhg==", - "dev": true, - "dependencies": { - "arg": "^5.0.2", - "bluebird": "3.7.2", - "check-more-types": "2.24.0", - "debug": "4.3.4", - "execa": "5.1.1", - "lazy-ass": "1.6.0", - "ps-tree": "1.2.0", - "wait-on": "7.2.0" - }, - "bin": { - "server-test": "src/bin/start.js", - "start-server-and-test": "src/bin/start.js", - "start-test": "src/bin/start.js" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/start-server-and-test/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/start-server-and-test/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/start-server-and-test/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/stream-combiner": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz", - "integrity": "sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==", - "dev": true, - "dependencies": { - "duplexer": "~0.1.1" - } - }, - "node_modules/stream-log-stats": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/stream-log-stats/-/stream-log-stats-3.0.2.tgz", - "integrity": "sha512-393j7aeF9iRdHvyANqEQU82UQmpw2CTxgsT83caefh+lOxavVLbVrw8Mr4zjXeZLh2+xeHZMKfVx4T0rJ/EchA==", - "dev": true, - "dependencies": { - "ansi-escape-sequences": "^5.1.2", - "byte-size": "^6.2.0", - "common-log-format": "^1.0.0", - "JSONStream": "^1.3.5", - "lodash.throttle": "^4.1.1", - "stream-via": "^1.0.4", - "table-layout": "~1.0.0" - }, - "bin": { - "log-stats": "bin/cli.js" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/stream-slice": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz", - "integrity": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==", - "dev": true - }, - "node_modules/stream-via": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/stream-via/-/stream-via-1.0.4.tgz", - "integrity": "sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streaming-json-stringify": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/streaming-json-stringify/-/streaming-json-stringify-3.1.0.tgz", - "integrity": "sha512-axtfs3BDxAsrZ9swD163FBrXZ8dhJJp6kUI6C97TvUZG9RHKfbg9nFbXqEheFNOb3IYMEt2ag9F62sWLFUZ4ug==", - "dev": true, - "dependencies": { - "json-stringify-safe": "5", - "readable-stream": "2" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, - "engines": { - "node": ">=0.6.19" - } - }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dev": true, - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz", - "integrity": "sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.7", - "regexp.prototype.flags": "^1.5.2", - "set-function-name": "^2.0.2", - "side-channel": "^1.0.6" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", - "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.0", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", - "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", - "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dev": true, - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/stubborn-fs": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/stubborn-fs/-/stubborn-fs-1.2.5.tgz", - "integrity": "sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==", - "dev": true - }, - "node_modules/style-to-js": { - "version": "1.1.16", - "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.16.tgz", - "integrity": "sha512-/Q6ld50hKYPH3d/r6nr117TZkHR0w0kGGIVfpG9N6D8NymRPM9RqCUv4pRpJ62E5DqOYx2AFpbZMyCPnjQCnOw==", - "license": "MIT", - "dependencies": { - "style-to-object": "1.0.8" - } - }, - "node_modules/style-to-object": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.8.tgz", - "integrity": "sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==", - "license": "MIT", - "dependencies": { - "inline-style-parser": "0.2.4" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/stylus": { - "version": "0.62.0", - "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.62.0.tgz", - "integrity": "sha512-v3YCf31atbwJQIMtPNX8hcQ+okD4NQaTuKGUWfII8eaqn+3otrbttGL1zSMZAAtiPsBztQnujVBugg/cXFUpyg==", - "dev": true, - "dependencies": { - "@adobe/css-tools": "~4.3.1", - "debug": "^4.3.2", - "glob": "^7.1.6", - "sax": "~1.3.0", - "source-map": "^0.7.3" - }, - "bin": { - "stylus": "bin/stylus" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://opencollective.com/stylus" - } - }, - "node_modules/stylus/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/stylus/node_modules/sax": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", - "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", - "dev": true - }, - "node_modules/stylus/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/supercluster": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/supercluster/-/supercluster-8.0.1.tgz", - "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", - "dependencies": { - "kdbush": "^4.0.2" - } - }, - "node_modules/superjson": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", - "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", - "dependencies": { - "copy-anything": "^3.0.2" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/svgo": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", - "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.3.1", - "css-what": "^6.1.0", - "csso": "^5.0.5", - "picocolors": "^1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" - } - }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", - "dev": true - }, - "node_modules/table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "dev": true, - "dependencies": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/table-layout/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/terser": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", - "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", - "peer": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", - "peer": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "peer": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "peer": true - }, - "node_modules/terser/node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "peer": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dev": true, - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/test-exclude/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/throttleit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.1.tgz", - "integrity": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, - "node_modules/tiny-case": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz", - "integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==" - }, - "node_modules/tmp": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", - "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", - "dev": true, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", - "dev": true - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-readable-stream": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-2.1.0.tgz", - "integrity": "sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - }, - "node_modules/tough-cookie": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", - "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", - "dev": true, - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/ts-api-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", - "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", - "dev": true, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/ts-node": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", - "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", - "dev": true, - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", - "dev": true, - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" - }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "dev": true, - "engines": { - "node": ">=0.6.x" - } - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dev": true, - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", - "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", - "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", - "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", - "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-proto": "^1.0.3", - "is-typed-array": "^1.1.13", - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedescriptor": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/typedescriptor/-/typedescriptor-3.0.2.tgz", - "integrity": "sha512-hyVbaCUd18UiXk656g/imaBLMogpdijIEpnhWYrSda9rhvO4gOU16n2nh7xG5lv/rjumnZzGOdz0CEGTmFe0fQ==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info." - }, - "node_modules/typescript": { - "version": "5.4.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", - "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", - "devOptional": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/typescript-plugin-css-modules": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/typescript-plugin-css-modules/-/typescript-plugin-css-modules-5.1.0.tgz", - "integrity": "sha512-6h+sLBa4l+XYSTn/31vZHd/1c3SvAbLpobY6FxDiUOHJQG1eD9Gh3eCs12+Eqc+TCOAdxcO+zAPvUq0jBfdciw==", - "dev": true, - "dependencies": { - "@types/postcss-modules-local-by-default": "^4.0.2", - "@types/postcss-modules-scope": "^3.0.4", - "dotenv": "^16.4.2", - "icss-utils": "^5.1.0", - "less": "^4.2.0", - "lodash.camelcase": "^4.3.0", - "postcss": "^8.4.35", - "postcss-load-config": "^3.1.4", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.4", - "postcss-modules-scope": "^3.1.1", - "reserved-words": "^0.1.2", - "sass": "^1.70.0", - "source-map-js": "^1.0.2", - "stylus": "^0.62.0", - "tsconfig-paths": "^4.2.0" - }, - "peerDependencies": { - "typescript": ">=4.0.0" - } - }, - "node_modules/typescript-plugin-css-modules/node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/typescript-plugin-css-modules/node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/typescript-plugin-css-modules/node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/typescript-plugin-css-modules/node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", - "dev": true, - "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/typical": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/typical/-/typical-6.0.1.tgz", - "integrity": "sha512-+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/unbzip2-stream": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", - "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", - "dev": true, - "dependencies": { - "buffer": "^5.2.1", - "through": "^2.3.8" - } - }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unplugin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.0.1.tgz", - "integrity": "sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==", - "dependencies": { - "acorn": "^8.8.1", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.5.0" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.2.0", - "picocolors": "^1.1.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/update-notifier": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-7.3.1.tgz", - "integrity": "sha512-+dwUY4L35XFYEzE+OAL3sarJdUioVovq+8f7lcIJ7wnmnYQV5UD1Y/lcwaMSyaQ6Bj3JMj1XSTjZbNLHn/19yA==", - "dev": true, - "dependencies": { - "boxen": "^8.0.1", - "chalk": "^5.3.0", - "configstore": "^7.0.0", - "is-in-ci": "^1.0.0", - "is-installed-globally": "^1.0.0", - "is-npm": "^6.0.0", - "latest-version": "^9.0.0", - "pupa": "^3.1.0", - "semver": "^7.6.3", - "xdg-basedir": "^5.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/yeoman/update-notifier?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/update-notifier/node_modules/is-installed-globally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz", - "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", - "dev": true, - "dependencies": { - "global-directory": "^4.0.1", - "is-path-inside": "^4.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/update-notifier/node_modules/is-path-inside": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", - "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-parse": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", - "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", - "dev": true, - "dependencies": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "node_modules/urlpattern-polyfill": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", - "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==" - }, - "node_modules/use-callback-ref": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", - "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sidecar": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", - "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", - "dependencies": { - "detect-node-es": "^1.1.0", - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/usehooks-ts": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/usehooks-ts/-/usehooks-ts-3.1.0.tgz", - "integrity": "sha512-bBIa7yUyPhE1BCc0GmR96VU/15l/9gP1Ch5mYdLcFBaFGQsdmXkvjV0TtOqW1yUd6VjIwDunm+flSciCQXujiw==", - "dependencies": { - "lodash.debounce": "^4.0.8" - }, - "engines": { - "node": ">=16.15.0" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/uuid": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.0.5.tgz", - "integrity": "sha512-508e6IcKLrhxKdBbcA2b4KQZlLVp2+J5UwQ6F7Drckkc5N9ZJwFa4TgWtsww9UG8fGHbm6gbV19TdM5pQ4GaIA==", - "funding": [ - "https://github.com/sponsors/broofa", - "https://github.com/sponsors/ctavan" - ], - "license": "MIT", - "bin": { - "uuid": "dist/esm/bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/v8-to-istanbul": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", - "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^2.0.0" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true - }, - "node_modules/w3c-xmlserializer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", - "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", - "dev": true, - "dependencies": { - "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/wait-on": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", - "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", - "dev": true, - "dependencies": { - "axios": "^1.6.1", - "joi": "^17.11.0", - "lodash": "^4.17.21", - "minimist": "^1.2.8", - "rxjs": "^7.8.1" - }, - "bin": { - "wait-on": "bin/wait-on" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/walk-back": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/walk-back/-/walk-back-4.0.0.tgz", - "integrity": "sha512-kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dev": true, - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/watchpack": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", - "peer": true, - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/webpack": { - "version": "5.96.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz", - "integrity": "sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==", - "peer": true, - "dependencies": { - "@types/eslint-scope": "^3.7.7", - "@types/estree": "^1.0.6", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.14.0", - "browserslist": "^4.24.0", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.1", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-virtual-modules": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", - "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" - }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "peer": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "peer": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/whatwg-encoding": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", - "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", - "dev": true, - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/whatwg-mimetype": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", - "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/when-exit": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/when-exit/-/when-exit-2.1.3.tgz", - "integrity": "sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==", - "dev": true - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dev": true, - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", - "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", - "dev": true, - "dependencies": { - "is-map": "^2.0.3", - "is-set": "^2.0.3", - "is-weakmap": "^2.0.2", - "is-weakset": "^2.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", - "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", - "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/widest-line": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-5.0.0.tgz", - "integrity": "sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==", - "dev": true, - "dependencies": { - "string-width": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/widest-line/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true - }, - "node_modules/widest-line/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/widest-line/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "dev": true, - "dependencies": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/wordwrapjs/node_modules/reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/wordwrapjs/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/ws": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz", - "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xdg-basedir": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", - "integrity": "sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", - "dev": true - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yaml": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.1.tgz", - "integrity": "sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==", - "dev": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/ylru": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ylru/-/ylru-1.4.0.tgz", - "integrity": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yup": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/yup/-/yup-1.4.0.tgz", - "integrity": "sha512-wPbgkJRCqIf+OHyiTBQoJiP5PFuAXaWiJK6AmYkzQAh5/c2K9hzSApBZG5wV9KoKSePF7sAxmNSvh/13YHkFDg==", - "dependencies": { - "property-expr": "^2.0.5", - "tiny-case": "^1.0.3", - "toposort": "^2.0.2", - "type-fest": "^2.19.0" - } - }, - "node_modules/yup/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.22.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz", - "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - }, - "node_modules/zustand": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.2.tgz", - "integrity": "sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==", - "dependencies": { - "use-sync-external-store": "1.2.0" - }, - "engines": { - "node": ">=12.7.0" - }, - "peerDependencies": { - "@types/react": ">=16.8", - "immer": ">=9.0.6", - "react": ">=16.8" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "immer": { - "optional": true - }, - "react": { - "optional": true - } - } - } - } -} diff --git a/package.json b/package.json index a664d87f6..f228d44f2 100644 --- a/package.json +++ b/package.json @@ -1,131 +1,19 @@ { - "name": "web", - "version": "0.1.0", - "private": true, - "type": "module", + "name": "scandic", + "packageManager": "yarn@4.5.1", "scripts": { - "prebuild": "npm run lint && npm run test:unit", - "build": "next build", - "predev": "rm -rf .next", - "dev": "PORT=3000 NEXT_PUBLIC_PORT=3000 next dev", - "prelint": "rm -rf .next", - "lint": "next lint --max-warnings 0 && tsc", - "prelint:fix": "rm -rf .next", - "lint:fix": "next lint --fix --max-warnings 0 && tsc", - "prepare": "husky", - "start": "node .next/standalone/server.js", - "test:component": "cypress open --component", - "test:component:headless": "cypress run --component", - "test:e2e": "start-server-and-test test:setup http://127.0.0.1:3000/en/sponsoring \"cypress open --e2e\"", - "test:e2e:headless": "start-server-and-test test:setup http://127.0.0.1:3000/en/sponsoring \"cypress run --e2e\"", - "test:setup": "npm run build && npm run start", - "preinstall": "export $(cat .env.local | grep -v '^#' | xargs)", - "test:unit": "jest", - "test:unit:watch": "jest --watch" - }, - "dependencies": { - "@azure/monitor-opentelemetry-exporter": "^1.0.0-beta.27", - "@contentstack/live-preview-utils": "^3.0.0", - "@hookform/error-message": "^2.0.1", - "@hookform/resolvers": "^3.3.4", - "@netlify/blobs": "^8.1.0", - "@netlify/functions": "^3.0.0", - "@netlify/plugin-nextjs": "^5.9.4", - "@opentelemetry/api": "^1.9.0", - "@opentelemetry/sdk-metrics": "^1.25.1", - "@radix-ui/react-dialog": "^1.1.1", - "@radix-ui/react-slot": "^1.0.2", - "@radix-ui/react-visually-hidden": "^1.1.0", - "@react-aria/ssr": "^3.9.5", - "@scandic-hotels/design-system": "git+https://x-token-auth:$DESIGN_SYSTEM_ACCESS_TOKEN@bitbucket.org/scandic-swap/design-system.git#v0.1.0-rc.9", - "@sentry/nextjs": "^8.41.0", - "@t3-oss/env-nextjs": "^0.9.2", - "@tanstack/react-query": "^5.28.6", - "@tanstack/react-query-devtools": "^5.64.2", - "@tanstack/react-table": "^8.20.5", - "@trpc/client": "^11.0.0-rc.467", - "@trpc/react-query": "^11.0.0-rc.467", - "@trpc/server": "^11.0.0-rc.467", - "@tsparticles/confetti": "^3.5.0", - "@types/geojson": "^7946.0.16", - "@types/supercluster": "^7.1.3", - "@vercel/otel": "^1.9.1", - "@vis.gl/react-google-maps": "^1.2.0", - "class-variance-authority": "^0.7.0", - "clean-deep": "^3.4.0", - "contentstack": "^3.23.0", - "dayjs": "^1.11.10", - "deepmerge": "^4.3.1", - "downshift": "^9.0.8", - "embla-carousel": "^8.5.2", - "embla-carousel-react": "^8.5.2", - "fast-deep-equal": "^3.1.3", - "fetch-retry": "^6.0.0", - "framer-motion": "^11.3.28", - "graphql": "^16.8.1", - "graphql-request": "^6.1.0", - "graphql-tag": "^2.12.6", - "html-react-parser": "^5.2.2", - "ics": "^3.8.1", - "immer": "10.1.1", - "input-otp": "^1.4.2", - "json-stable-stringify-without-jsonify": "^1.0.1", - "libphonenumber-js": "^1.10.60", - "nanoid": "^5.0.9", - "next": "^14.2.18", - "next-auth": "5.0.0-beta.19", - "react": "^18", - "react-aria-components": "^1.6.0", - "react-day-picker": "^9.0.8", - "react-dom": "^18", - "react-feather": "^2.0.10", - "react-hook-form": "^7.51.2", - "react-international-phone": "^4.2.6", - "react-intl": "^6.6.8", - "react-to-print": "^3.0.2", - "server-only": "^0.0.1", - "slugify": "^1.6.6", - "sonner": "^1.7.0", - "supercluster": "^8.0.1", - "superjson": "^2.2.1", - "usehooks-ts": "3.1.0", - "uuid": "^11.0.5", - "zod": "^3.22.4", - "zustand": "^4.5.2" + "build": "yarn workspace @scandic-hotels/design-system build && yarn workspace @scandic-hotels/scandic-web build", + "lint": "yarn workspace @scandic-hotels/scandic-web lint", + "postinstall": "husky" }, + "workspaces": [ + "apps/*", + "packages/*" + ], "devDependencies": { - "@svgr/webpack": "^8.1.0", - "@testing-library/jest-dom": "^6.4.6", - "@testing-library/react": "^16.0.0", - "@testing-library/user-event": "^14.5.2", - "@types/jest": "^29.5.12", - "@types/json-stable-stringify-without-jsonify": "^1.0.2", - "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", - "@typescript-eslint/eslint-plugin": "^8.17.0", - "@typescript-eslint/parser": "^8.17.0", - "cypress": "^13.6.6", - "dotenv": "^16.4.5", - "eslint": "^8", - "eslint-config-next": "^14.0.4", - "eslint-plugin-import": "^2.29.1", - "eslint-plugin-simple-import-sort": "^12.1.0", - "husky": "^9.0.11", - "jest": "^29.7.0", - "jest-environment-jsdom": "^29.7.0", - "jiti": "^1.21.0", - "json-sort-cli": "^4.0.4", - "lint-staged": "^15.2.2", - "netlify-plugin-cypress": "^2.2.1", - "prettier": "^3.2.5", - "schema-dts": "^1.1.2", - "start-server-and-test": "^2.0.3", - "ts-node": "^10.9.2", - "typescript": "^5", - "typescript-plugin-css-modules": "^5.1.0" - }, - "engines": { - "node": "18" + "husky": "^9.1.7", + "lint-staged": "^15.2.2" } } diff --git a/packages/design-system/.eslintrc.cjs b/packages/design-system/.eslintrc.cjs new file mode 100644 index 000000000..29cb6d5a0 --- /dev/null +++ b/packages/design-system/.eslintrc.cjs @@ -0,0 +1,14 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react-hooks/recommended', 'plugin:storybook/recommended'], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parser: '@typescript-eslint/parser', + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/packages/design-system/.gitignore b/packages/design-system/.gitignore new file mode 100644 index 000000000..554e9bab3 --- /dev/null +++ b/packages/design-system/.gitignore @@ -0,0 +1,26 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +storybook-static diff --git a/packages/design-system/.npmignore b/packages/design-system/.npmignore new file mode 100644 index 000000000..ab1fd176e --- /dev/null +++ b/packages/design-system/.npmignore @@ -0,0 +1,2 @@ +# this file is here to avoid having dist folder excluded by .gitignore +# without this file here the dist folder would not end up in the package distribution diff --git a/packages/design-system/.prettierignore b/packages/design-system/.prettierignore new file mode 100644 index 000000000..6ab75eb64 --- /dev/null +++ b/packages/design-system/.prettierignore @@ -0,0 +1,10 @@ +# Directories: +node_modules/ +out/ +dist/ +.vscode/* +.husky/* + +# Files: +!.vscode/launch.json +.prettierignore \ No newline at end of file diff --git a/packages/design-system/.prettierrc b/packages/design-system/.prettierrc new file mode 100644 index 000000000..b2725437b --- /dev/null +++ b/packages/design-system/.prettierrc @@ -0,0 +1,8 @@ +{ + "semi": false, + "singleQuote": true, + "trailingComma": "es5", + "printWidth": 80, + "tabWidth": 2, + "endOfLine": "lf" +} diff --git a/packages/design-system/.storybook/main.ts b/packages/design-system/.storybook/main.ts new file mode 100644 index 000000000..60f01056c --- /dev/null +++ b/packages/design-system/.storybook/main.ts @@ -0,0 +1,35 @@ +import { withoutVitePlugins } from '@storybook/builder-vite' + +import type { StorybookConfig } from '@storybook/react-vite' + +const config: StorybookConfig = { + stories: ['../lib/**/*.mdx', '../lib/**/*.stories.@(js|jsx|mjs|ts|tsx)'], + typescript: { + check: false, + reactDocgen: 'react-docgen-typescript', + }, + staticDirs: ['../public'], + addons: [ + '@storybook/addon-links', + '@storybook/addon-essentials', + '@storybook/addon-onboarding', + '@storybook/addon-interactions', + ], + framework: { + name: '@storybook/react-vite', + options: {}, + }, + docs: { + autodocs: true, + }, + viteFinal: async (config) => { + return { + ...config, + plugins: await withoutVitePlugins(config.plugins, [ + 'vite:lib-inject-css', + 'vite:dts', + ]), + } + }, +} +export default config diff --git a/packages/design-system/.storybook/manager.js b/packages/design-system/.storybook/manager.js new file mode 100644 index 000000000..f8f0cbeb6 --- /dev/null +++ b/packages/design-system/.storybook/manager.js @@ -0,0 +1,7 @@ +import { addons } from '@storybook/manager-api' + +addons.setConfig({ + sidebar: { + collapsedRoots: ['current-web'], + }, +}) diff --git a/packages/design-system/.storybook/preview.ts b/packages/design-system/.storybook/preview.ts new file mode 100644 index 000000000..6b9d5d4d0 --- /dev/null +++ b/packages/design-system/.storybook/preview.ts @@ -0,0 +1,21 @@ +import type { Preview } from '@storybook/react' + +import '../lib/style-new.css' + +const preview: Preview = { + parameters: { + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/i, + }, + }, + options: { + storySort: { + order: ['*', 'Current web'], + }, + }, + }, +} + +export default preview diff --git a/packages/design-system/README.md b/packages/design-system/README.md new file mode 100644 index 000000000..0d6babedd --- /dev/null +++ b/packages/design-system/README.md @@ -0,0 +1,30 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: + +- Configure the top-level `parserOptions` property like this: + +```js +export default { + // other rules... + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module', + project: ['./tsconfig.json', './tsconfig.node.json'], + tsconfigRootDir: __dirname, + }, +} +``` + +- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` +- Optionally add `plugin:@typescript-eslint/stylistic-type-checked` +- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list diff --git a/packages/design-system/example/CurrentWeb/index.tsx b/packages/design-system/example/CurrentWeb/index.tsx new file mode 100644 index 000000000..e88f4fdae --- /dev/null +++ b/packages/design-system/example/CurrentWeb/index.tsx @@ -0,0 +1,12 @@ +import { Button } from '../../dist/current' + +import '../../dist/assets/style-current.css' + +export default function CurrentWeb() { + return ( +
+

Current Web components:

+ +
+ ) +} diff --git a/packages/design-system/example/index.html b/packages/design-system/example/index.html new file mode 100644 index 000000000..4563c252d --- /dev/null +++ b/packages/design-system/example/index.html @@ -0,0 +1,12 @@ + + + + + + Vite + React + TS + + +
+ + + diff --git a/packages/design-system/example/main.module.css b/packages/design-system/example/main.module.css new file mode 100644 index 000000000..80e55d8d7 --- /dev/null +++ b/packages/design-system/example/main.module.css @@ -0,0 +1,3 @@ +.mainCard { + background: blue; +} diff --git a/packages/design-system/example/main.tsx b/packages/design-system/example/main.tsx new file mode 100644 index 000000000..bc6b1b511 --- /dev/null +++ b/packages/design-system/example/main.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' + +import '../dist/assets/style-new.css' + +import CurrentWeb from './CurrentWeb' +import { Card } from '../' + +import styles from './main.module.css' + +ReactDOM.createRoot(document.getElementById('root')!).render( + + + + +) diff --git a/packages/design-system/example/vite-env.d.ts b/packages/design-system/example/vite-env.d.ts new file mode 100644 index 000000000..d3a8309b5 --- /dev/null +++ b/packages/design-system/example/vite-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/packages/design-system/lib/components/Card/Card.stories.ts b/packages/design-system/lib/components/Card/Card.stories.ts new file mode 100644 index 000000000..f589adb97 --- /dev/null +++ b/packages/design-system/lib/components/Card/Card.stories.ts @@ -0,0 +1,27 @@ +import type { Meta, StoryObj } from '@storybook/react' +import { Card } from './Card.tsx' + +const meta = { + title: 'Components/Layout/Card', + component: Card, + argTypes: { + intent: { + control: 'select', + options: ['basic', 'border'], + }, + }, + args: { + intent: 'basic', + }, +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Default: Story = {} + +export const WithBorder: Story = { + args: { + intent: 'border', + }, +} diff --git a/packages/design-system/lib/components/Card/Card.tsx b/packages/design-system/lib/components/Card/Card.tsx new file mode 100644 index 000000000..861a2e55b --- /dev/null +++ b/packages/design-system/lib/components/Card/Card.tsx @@ -0,0 +1,26 @@ +import styles from './card.module.css' + +import { cva, type VariantProps } from 'class-variance-authority' + +const card = cva(styles.card, { + variants: { + intent: { + basic: styles.basic, + border: styles.border, + }, + }, + // compoundVariants: [ + // { intent: "primary", size: "medium", className: styles.primaryMedium }, + // ], + defaultVariants: { + intent: 'basic', + }, +}) + +export interface CardProps + extends React.HTMLAttributes, + VariantProps {} + +export function Card({ className, intent }: CardProps) { + return
Card
+} diff --git a/packages/design-system/lib/components/Card/card.module.css b/packages/design-system/lib/components/Card/card.module.css new file mode 100644 index 000000000..11ab486c9 --- /dev/null +++ b/packages/design-system/lib/components/Card/card.module.css @@ -0,0 +1,13 @@ +.card { + background: #fff; +} + +.basic { + outline: solid 1px green; +} + +.border { + border-style: solid; + border-width: 3px; + border-color: var(--color-brand-main-normal); +} diff --git a/packages/design-system/lib/components/Card/index.tsx b/packages/design-system/lib/components/Card/index.tsx new file mode 100644 index 000000000..423e583d4 --- /dev/null +++ b/packages/design-system/lib/components/Card/index.tsx @@ -0,0 +1 @@ +export { Card } from './Card' diff --git a/packages/design-system/lib/components/CurrentWeb/Button/Button.stories.tsx b/packages/design-system/lib/components/CurrentWeb/Button/Button.stories.tsx new file mode 100644 index 000000000..95798645f --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Button/Button.stories.tsx @@ -0,0 +1,82 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import { Button } from './Button' +import { TestIcon } from '../Icon/TestIcon' + +import '../../../style-current.css' + +const meta = { + title: 'Current web/Controls/Button', + component: Button, + decorators: [ + (Story) => ( +
+ +
+ ), + ], + parameters: { + layout: 'centered', + }, +} satisfies Meta + +export default meta +type Story = StoryObj + +export const Primary: Story = { + args: { + children: 'Primary Button', + }, +} + +export const Secondary: Story = { + args: { + children: 'Secondary Button', + intent: 'secondary', + }, +} + +export const Large: Story = { + args: { + children: 'Large Button', + size: 'large', + }, +} + +export const Small: Story = { + args: { + children: 'Small Button', + size: 'small', + }, +} + +export const Disabled: Story = { + args: { + children: 'Disabled Button', + isDisabled: true, + }, +} + +export const LeadingIcon: Story = { + args: { + children: [, 'Button'], + }, +} + +export const TrailingIcon: Story = { + args: { + children: ['Button', ], + }, +} + +export const WithIcons: Story = { + args: { + children: [ + , + , + 'Button', + , + , + ], + }, +} diff --git a/packages/design-system/lib/components/CurrentWeb/Button/Button.tsx b/packages/design-system/lib/components/CurrentWeb/Button/Button.tsx new file mode 100644 index 000000000..79bd8f614 --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Button/Button.tsx @@ -0,0 +1,50 @@ +'use client' + +import styles from './button.module.css' + +import { Button as ButtonComponent } from 'react-aria-components' +import { cva } from 'class-variance-authority' + +import type { ButtonProps as ButtonComponentProps } from 'react-aria-components' +import type { ComponentProps } from '../../../types' + +const config = { + variants: { + intent: { + primary: styles.primary, + secondary: styles.secondary, + }, + size: { + small: styles.small, + normal: styles.normal, + large: styles.large, + }, + }, + defaultVariants: { + intent: 'primary', + size: 'normal', + }, +} as const + +const button = cva(styles.button, config) + +export type ButtonProps = ComponentProps< + ButtonComponentProps, + typeof button, + never, + 'intent' | 'size' +> + +export function Button({ + children, + className, + intent = config.defaultVariants.intent, + size = config.defaultVariants.size, + ...props +}: ButtonProps) { + return ( + + {children} + + ) +} diff --git a/packages/design-system/lib/components/CurrentWeb/Button/button.module.css b/packages/design-system/lib/components/CurrentWeb/Button/button.module.css new file mode 100644 index 000000000..ab1a41ad4 --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Button/button.module.css @@ -0,0 +1,82 @@ +.button { + display: flex; + align-items: center; + gap: 4px; + padding: 8px 24px; + background: none; + color: var(--Base-Text-Inverted); + border: none; + border-radius: 50px; + cursor: pointer; + transition: background-color 300ms ease; + font-family: Helvetica; + font-weight: 400; +} + +/* Primary styles */ +.primary { + background-color: var(--Primary-Fill-Strong-Default); + border: 2px solid transparent; + outline: 1px solid transparent; +} + +.primary:hover { + background: var(--Primary-Fill-Strong-Hovered); +} + +.primary:active, +.primary:focus { + border: 2px solid var(--Base-Text-Inverted); + outline: 1px solid var(--Primary-Border-Strong); +} + +/* Secondary styles */ +.secondary { + border: 1px solid var(--Base-Border-Normal); + background-color: var(--Base-Background-Normal); + color: var(--Primary-Text-Strong); +} + +.secondary:hover { + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + outline: 2px solid var(--Primary-Border-Hovered); + outline-offset: -1px; +} + +.secondary:active, +.secondary:focus { + border: 1px solid var(--Primary-Border-Strong); + outline: 1px solid var(--Base-Border-Normal); + outline-offset: -4px; +} + +/* Disabled styles */ +.button:disabled { + background-color: var(--Base-Fill-Disabled); + color: var(--Base-Text-Disabled); + cursor: not-allowed; + border: none; + outline: none; +} + +/* Sizes */ +.large { + font-size: var(--typography-body-regular-font-size); + line-height: var(--typography-body-regular-line-height); + letter-spacing: var(--typography-body-regular-letter-spacing); +} + +.normal { + font-size: 16px; + line-height: 24px; + letter-spacing: 0.096px; +} + +.small { + font-weight: 700; + font-size: 16px; + line-height: 24px; + letter-spacing: 0.096px; +} diff --git a/packages/design-system/lib/components/CurrentWeb/Button/index.tsx b/packages/design-system/lib/components/CurrentWeb/Button/index.tsx new file mode 100644 index 000000000..4d0a670f4 --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Button/index.tsx @@ -0,0 +1 @@ +export { Button } from './Button' diff --git a/packages/design-system/lib/components/CurrentWeb/Icon/TestIcon.tsx b/packages/design-system/lib/components/CurrentWeb/Icon/TestIcon.tsx new file mode 100644 index 000000000..0066d348a --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Icon/TestIcon.tsx @@ -0,0 +1,29 @@ +export function TestIcon({ color = '#291710' }: { color?: string }) { + return ( + + + + + + + + + ) +} diff --git a/packages/design-system/lib/components/CurrentWeb/Icon/index.tsx b/packages/design-system/lib/components/CurrentWeb/Icon/index.tsx new file mode 100644 index 000000000..638388765 --- /dev/null +++ b/packages/design-system/lib/components/CurrentWeb/Icon/index.tsx @@ -0,0 +1 @@ +export { TestIcon } from './TestIcon' diff --git a/packages/design-system/lib/current.ts b/packages/design-system/lib/current.ts new file mode 100644 index 000000000..9d907745f --- /dev/null +++ b/packages/design-system/lib/current.ts @@ -0,0 +1 @@ +export { Button } from './components/CurrentWeb/Button' diff --git a/packages/design-system/lib/docs/colors.mdx b/packages/design-system/lib/docs/colors.mdx new file mode 100644 index 000000000..bfcabb265 --- /dev/null +++ b/packages/design-system/lib/docs/colors.mdx @@ -0,0 +1,25 @@ +import { + Meta, + Title, + Subtitle, + ColorPalette, + ColorItem, +} from '@storybook/blocks' + +import * as colors from '../styles/colors' + + + +Colors + + + {Object.keys(colors).map((key) => { + const skipKeys = ['colors', 'tokens', 'Old'] + if (!skipKeys.includes(key)) { + return Object.keys(colors[key]).map((modeKey) => { + return + }) + } + return null + })} + diff --git a/packages/design-system/lib/docs/current-web/colors.mdx b/packages/design-system/lib/docs/current-web/colors.mdx new file mode 100644 index 000000000..a3013a8f9 --- /dev/null +++ b/packages/design-system/lib/docs/current-web/colors.mdx @@ -0,0 +1,27 @@ +import { + Meta, + Title, + Subtitle, + ColorPalette, + ColorItem, +} from '@storybook/blocks' + +import * as colors from '../../styles/colors' + +import '../../style-current.css' + + + +Colors + + + {Object.keys(colors).map((key) => { + const skipKeys = ['colors', 'tokens', 'New'] + if (!skipKeys.includes(key)) { + return Object.keys(colors[key]).map((modeKey) => { + return + }) + } + return null + })} + diff --git a/packages/design-system/lib/docs/tokens.mdx b/packages/design-system/lib/docs/tokens.mdx new file mode 100644 index 000000000..94c20c840 --- /dev/null +++ b/packages/design-system/lib/docs/tokens.mdx @@ -0,0 +1,84 @@ +import { + Meta, + Title, + Subtitle, + ColorPalette, + ColorItem, +} from '@storybook/blocks' + +import { tokens as allTokens } from '../styles/colors' +import {capitalizeFirstLetter} from '../utils' + +export const data = Object.entries(allTokens).reduce((acc, curr) => { + const [name, value] = curr + const nameParts = name.split('-') + if (nameParts.length == 2) { + if (!acc['color']) { + acc['color'] = {} + } + nameParts.unshift('color') + } + + const title = nameParts[0].toLowerCase() + const subtitle = nameParts[1].toLowerCase() + const token = nameParts[2].toLowerCase() + + if (!acc[title]) { + acc[title] = {} + } + + if (!acc[title][subtitle]) { + acc[title][subtitle] = {} + } + + acc[title][subtitle][token] = value + + return acc + }, {}) + + + + +
+{ + Object.keys(data).map(t => { + if (t === 'color') { + return null + } + return ( + <> + {capitalizeFirstLetter(t)} + { + Object.keys(data[t]).map(s => { + return ( + <> + {capitalizeFirstLetter(s)} + { + (typeof data[t][s] === 'string') ? null : ( + + { + Object.keys(data[t][s]).map(v => { + return ( + + ) + }) + } + + ) + } + + ) + }) + } + + ) + }) +} +
diff --git a/packages/design-system/lib/generate.ts b/packages/design-system/lib/generate.ts new file mode 100644 index 000000000..ee7a4960b --- /dev/null +++ b/packages/design-system/lib/generate.ts @@ -0,0 +1,318 @@ +import fs from 'node:fs' + +import { sortObjectByKey } from './utils.ts' + +type FigmaNumberVariable = { + name: string + type: 'number' + isAlias: boolean + value: number +} + +type FigmaColorVariable = + | { + name: string + type: 'color' + isAlias: true + value: { + collection: string + name: string + } + } + | { + name: string + type: 'color' + isAlias: false + value: string + } + +type FigmaDropShadowEffect = { + type: 'DROP_SHADOW' + color: { + r: number + g: number + b: number + a: number + } + offset: { + x: number + y: number + } + radius: number + spread: number +} + +type FigmaEffectVariable = { + name: string + type: 'effect' + isAlias: boolean + value: { + effects: Array + } +} + +type FigmaTypographyValue = { + fontSize: number + fontFamily: string + fontWeight: 'Black' | 'Bold' | 'SemiBold' | 'Regular' + lineHeight: number + lineHeightUnit: 'PIXELS' | 'PERCENT' + letterSpacing: number + letterSpacingUnit: 'PIXELS' | 'PERCENT' + textCase: 'UPPER' | 'ORIGINAL' + textDecoration: 'NONE' +} + +type FigmaTypographyVariable = { + name: string + type: 'typography' + isAlias: boolean + value: FigmaTypographyValue +} + +type FigmaVariable = + | FigmaNumberVariable + | FigmaColorVariable + | FigmaEffectVariable + | FigmaTypographyVariable + +type FigmaMode = { + name: string + variables: FigmaVariable[] +} + +type FigmaCollection = { + name: string + modes: FigmaMode[] +} + +type FigmaVariableData = { + version: string + metadata: unknown + collections: FigmaCollection[] +} + +function kebabify(str: string) { + return str.replaceAll('/', '-').replaceAll(' ', '-').replace(/\(|\)/g, '') +} + +// This parses output JSON from https://github.com/mark-nicepants/variables2json-docs +const json: FigmaVariableData = JSON.parse( + fs.readFileSync('./variables.json', { encoding: 'utf-8' }) +) + +const colorGroupsByMode: Record< + string, + Record> +> = {} +const allColorsByMode: Record> = {} +const allTokens: Record = {} +const allTypographyTokens: Record = {} +const allNumberedTokens: Record = {} + +json.collections.forEach((collection) => { + collection.modes.forEach((mode) => { + mode.variables.forEach((variable) => { + if (variable.type === 'color') { + if (variable.isAlias === true) { + // Token + const name = kebabify(variable.name) + const value = kebabify(variable.value.name) + + allTokens[name] = value + } else { + const name = kebabify(variable.name) + const value = variable.value.replaceAll(' ', '').toLowerCase() + + // Assign all colors per mode + const parsedModeName = mode.name + .split(' ') + .map((word) => word.charAt(0).toUpperCase() + word.slice(1)) + .join('') + + if (!allColorsByMode[parsedModeName]) { + allColorsByMode[parsedModeName] = {} + } + allColorsByMode[parsedModeName][name] = value + + const parts = name.split('-') + const groupName = parts[0] + if (!colorGroupsByMode[parsedModeName]) { + colorGroupsByMode[parsedModeName] = {} + } + if (!colorGroupsByMode[parsedModeName][groupName]) { + colorGroupsByMode[parsedModeName][groupName] = {} + } + + colorGroupsByMode[parsedModeName][groupName][name] = value + } + } else if (variable.type === 'typography') { + // Make variables for each value + const name = 'typography-' + kebabify(variable.name) + + Object.keys(variable.value).forEach((valueKey) => { + const value = variable.value[valueKey as keyof FigmaTypographyValue] + const typeographyVal = `${name}-${valueKey}` + + const unitValue = + variable.value[`${valueKey}Unit` as keyof FigmaTypographyValue] + + if (unitValue) { + if (unitValue === 'PERCENT') { + allTypographyTokens[typeographyVal] = value + '%' + return + } else if (unitValue === 'PIXELS') { + allTypographyTokens[typeographyVal] = value + 'px' + return + } + } + + // Skip making css variables for units, they are already handled + if (valueKey.includes('Unit')) { + return + } + + if (valueKey === 'fontSize') { + allTypographyTokens[typeographyVal] = value + 'px' + return + } + + allTypographyTokens[typeographyVal] = value + }) + } else if (variable.type === 'number') { + if (collection.name === 'Text sizes') { + const modeName = kebabify(mode.name) + const name = `typography-${kebabify(variable.name)}-${modeName}-fontSize` + allTypographyTokens[name] = variable.value.toString() + 'px' + return + } else if (collection.name === 'Layout') { + const collectionName = kebabify(collection.name) + const modeName = kebabify(mode.name) + + const name = `${collectionName}-${modeName}-${kebabify(variable.name)}` + allNumberedTokens[name] = variable.value + 'px' + return + } else if (collection.name === 'Spacing') { + const collectionName = kebabify(collection.name) + + let unitName = variable.name + + // Special namings for spacing + if (unitName === 'x025') { + unitName = 'x-quarter' + } else if (unitName === 'x05') { + unitName = 'x-half' + } else if (unitName === 'x15') { + unitName = 'x-one-and-half' + } + + const name = `${collectionName}-${kebabify(unitName)}` + allNumberedTokens[name] = variable.value + 'px' + return + } + const collectionName = kebabify(collection.name) + + const name = `${collectionName}-${kebabify(variable.name)}` + allNumberedTokens[name] = variable.value + 'px' + } + }) + }) +}) + +// Create ts file with all colors and color tokens for displaying swatches in Storybook +const tsOutput = [ + '/* This file is generated, do not edit manually! */', + `export const colors = ${JSON.stringify(allColorsByMode, null, 2)} as const`, + '', + `export const tokens = ${JSON.stringify(allTokens, null, 2)} as const`, + '', +] +for (const [modeName, values] of Object.entries(colorGroupsByMode)) { + tsOutput.push(`export const ${modeName} = { `) + for (const [name, value] of Object.entries(values)) { + tsOutput.push(`${name}: ${JSON.stringify(value, null, 2)},`) + } + tsOutput.push('} as const;') + tsOutput.push('') +} +fs.writeFileSync('./styles/colors.ts', tsOutput.join('\n'), { + encoding: 'utf-8', +}) + +// Write a css file for each mode available of core colors +const cssOutput = [ + '/* This file is generated, do not edit manually! */', + ':root {', +] +for (const [, values] of Object.entries(sortObjectByKey(allColorsByMode))) { + for (const [name, value] of Object.entries(sortObjectByKey(values))) { + cssOutput.push(` --${name}: ${value};`) + } +} +cssOutput.push('}') +cssOutput.push('') // New line at end of file +fs.writeFileSync(`./styles/modes.css`, cssOutput.join('\n'), { + encoding: 'utf-8', +}) + +// All css files, regardless of mode, should have the same tokens. Generate one file for all tokens +const cssTokensOutput = [ + '/* This file is generated, do not edit manually! */', + ':root {', +] +for (const [token, value] of Object.entries(sortObjectByKey(allTokens))) { + cssTokensOutput.push(` --${token}: var(--${value});`) +} +cssTokensOutput.push('}') +cssTokensOutput.push('') // New line at end of file +fs.writeFileSync(`./styles/tokens.css`, cssTokensOutput.join('\n'), { + encoding: 'utf-8', +}) + +// All css files, regardless of mode, should have the same typography tokens. +const typographyOutput = [ + '/* This file is generated, do not edit manually! */', + ':root {', +] +for (const [token, value] of Object.entries( + sortObjectByKey(allTypographyTokens) +)) { + // TODO: handle fontSize for other consumers than CSS modules + // Css modules needs fontsizes to be written as numerical values appended with the unit + const isNumericalValue = + typeof value === 'number' || + token.includes('fontSize') || + token.includes('lineHeight') || + token.includes('letterSpacing') + + const valueOutput = isNumericalValue ? value : `'${value.toLowerCase()}'` + + typographyOutput.push(` --${token}: ${valueOutput};`) +} +typographyOutput.push('}') +typographyOutput.push('') // New line at end of file +fs.writeFileSync(`./styles/typography.css`, typographyOutput.join('\n'), { + encoding: 'utf-8', +}) + +// All css files, regardless of mode, should have the same typography tokens. +const numberedTokensOutput = [ + '/* This file is generated, do not edit manually! */', + ':root {', +] +for (const [token, value] of Object.entries( + sortObjectByKey(allNumberedTokens) +)) { + const valueOutput = value + + numberedTokensOutput.push(` --${token}: ${valueOutput};`) +} +numberedTokensOutput.push('}') +numberedTokensOutput.push('') // New line at end of file +fs.writeFileSync( + `./styles/numberedTokens.css`, + numberedTokensOutput.join('\n'), + { + encoding: 'utf-8', + } +) diff --git a/packages/design-system/lib/new.ts b/packages/design-system/lib/new.ts new file mode 100644 index 000000000..f74d72cb4 --- /dev/null +++ b/packages/design-system/lib/new.ts @@ -0,0 +1 @@ +export { Card } from './components/Card' diff --git a/packages/design-system/lib/style-current.css b/packages/design-system/lib/style-current.css new file mode 100644 index 000000000..1b685b03f --- /dev/null +++ b/packages/design-system/lib/style-current.css @@ -0,0 +1,6 @@ +@import url('./styles/globals.css'); +@import url('./styles/typography.css'); +@import url('./styles/tokens.css'); + +/* Stylesheet specific for theme */ +@import url('./styles/old.css'); diff --git a/packages/design-system/lib/style-new.css b/packages/design-system/lib/style-new.css new file mode 100644 index 000000000..3a5166fec --- /dev/null +++ b/packages/design-system/lib/style-new.css @@ -0,0 +1,8 @@ +@import url('./styles/globals.css'); +@import url('./styles/typography.css'); +@import url('./styles/tokens.css'); +@import url('./styles/numberedTokens.css'); +@import url('./styles/modes.css'); + +/* Stylesheet specific for theme */ +@import url('./styles/new.css'); diff --git a/packages/design-system/lib/styles/colors.ts b/packages/design-system/lib/styles/colors.ts new file mode 100644 index 000000000..fd21fcba6 --- /dev/null +++ b/packages/design-system/lib/styles/colors.ts @@ -0,0 +1,628 @@ +/* This file is generated, do not edit manually! */ +export const colors = { + Scandic: { + 'Scandic-Brand-Scandic-Red': '#cd0921', + 'Scandic-Brand-Burgundy': '#4d001b', + 'Scandic-Brand-Pale-Peach': '#f7e1d5', + 'Scandic-Brand-Dark-Green': '#093021', + 'Scandic-Brand-Light-Green': '#d2edaf', + 'Scandic-Brand-Dark-Grey': '#291710', + 'Scandic-Brand-Warm-White': '#faf6f2', + 'Scandic-Brand-Light-Blue': '#b5e0ff', + 'Scandic-Brand-Dark-Blue': '#0d1440', + 'Scandic-Brand-Pale-Yellow': '#fff0c2', + 'Scandic-Red-00': '#ffebeb', + 'Scandic-Red-10': '#f7c1c2', + 'Scandic-Red-20': '#f79499', + 'Scandic-Red-30': '#f26b74', + 'Scandic-Red-40': '#ed4251', + 'Scandic-Red-50': '#e32034', + 'Scandic-Red-60': '#cd0921', + 'Scandic-Red-70': '#ad0015', + 'Scandic-Red-80': '#8d0011', + 'Scandic-Red-90': '#6d000d', + 'Scandic-Red-100': '#4d001b', + 'Scandic-Peach-00': '#fff3ed', + 'Scandic-Beige-00': '#faf6f2', + 'Scandic-Beige-10': '#f2ece6', + 'Scandic-Beige-20': '#e3d9d1', + 'Scandic-Beige-30': '#d1c4ba', + 'Scandic-Beige-40': '#b8a79a', + 'Scandic-Beige-50': '#9c8a7e', + 'Scandic-Beige-60': '#806e63', + 'Scandic-Beige-70': '#6b584d', + 'Scandic-Beige-80': '#533f35', + 'Scandic-Beige-90': '#3e2b23', + 'Scandic-Beige-100': '#291710', + 'Scandic-Peach-10': '#f7e1d5', + 'Scandic-Peach-20': '#f4d5c8', + 'Scandic-Peach-30': '#f0c1b6', + 'Scandic-Peach-40': '#e9aba3', + 'Scandic-Peach-50': '#de9490', + 'Scandic-Peach-60': '#cd797c', + 'Scandic-Peach-70': '#b05b65', + 'Scandic-Peach-80': '#8f4350', + 'Scandic-Peach-90': '#642636', + 'Scandic-Peach-100': '#4d0f25', + 'Scandic-Green-00': '#f3fce8', + 'Scandic-Green-10': '#e1f3ca', + 'Scandic-Green-20': '#d2edaf', + 'Scandic-Green-30': '#acdb8a', + 'Scandic-Green-40': '#7cb865', + 'Scandic-Green-50': '#539e49', + 'Scandic-Green-60': '#348337', + 'Scandic-Green-70': '#256931', + 'Scandic-Green-80': '#164e29', + 'Scandic-Green-90': '#093021', + 'Scandic-Green-100': '#091f16', + 'Scandic-Blue-00': '#e8f6ff', + 'Scandic-Blue-10': '#cfebff', + 'Scandic-Blue-20': '#b5e0ff', + 'Scandic-Blue-30': '#93c9f5', + 'Scandic-Blue-40': '#79aee7', + 'Scandic-Blue-50': '#5b8fd4', + 'Scandic-Blue-60': '#3f6dbd', + 'Scandic-Blue-70': '#284ea0', + 'Scandic-Blue-80': '#18347f', + 'Scandic-Blue-90': '#0d1f5f', + 'Scandic-Blue-100': '#0d1440', + 'Scandic-Yellow-00': '#fff8e3', + 'Scandic-Yellow-10': '#fff0c2', + 'Scandic-Yellow-20': '#fade89', + 'Scandic-Yellow-30': '#f7ce52', + 'Scandic-Yellow-40': '#edb532', + 'Scandic-Yellow-50': '#e59515', + 'Scandic-Yellow-60': '#d17308', + 'Scandic-Yellow-70': '#a85211', + 'Scandic-Yellow-80': '#7d370f', + 'Scandic-Yellow-90': '#4f2313', + 'Scandic-Yellow-100': '#301508', + 'Go-Brand-Lavender': '#dcd7ff', + 'Go-Beige-00': '#faf8f2', + 'Go-Beige-10': '#f0ede4', + 'Go-Beige-20': '#e0dcce', + 'Go-Beige-30': '#c8c4b6', + 'Go-Beige-40': '#b0aca0', + 'Go-Beige-50': '#918f83', + 'Go-Beige-60': '#78766d', + 'Go-Beige-70': '#63615a', + 'Go-Beige-80': '#4f4d49', + 'Go-Beige-90': '#373633', + 'Go-Beige-100': '#1f1e1d', + 'Go-Brand-Obsidian': '#2d163a', + 'Go-Brand-Lemon': '#f5ff73', + 'Go-Brand-Linen': '#e0dcce', + 'Go-Brand-Chartreuse': '#85ff52', + 'Go-Brand-Pine': '#21331f', + 'Go-Brand-Aqua': '#73fcee', + 'Go-Brand-Powder-rose': '#ecc8c9', + 'Go-Brand-Coral': '#fa3737', + 'UI-Grey-00': '#f9f6f4', + 'UI-Opacity-White-100': '#ffffff', + 'UI-Opacity-White-90': '#ffffffe6', + 'UI-Opacity-White-80': '#ffffffcc', + 'UI-Opacity-White-70': '#ffffffb3', + 'UI-Opacity-White-60': '#ffffff99', + 'UI-Opacity-White-50': '#ffffff80', + 'UI-Opacity-White-40': '#ffffff66', + 'UI-Opacity-White-30': '#ffffff4d', + 'UI-Opacity-White-20': '#ffffff33', + 'UI-Opacity-White-10': '#ffffff1a', + 'UI-Opacity-White-0': '#ffffff00', + 'UI-Opacity-Almost-Black-100': '#1f1c1b', + 'UI-Opacity-Almost-Black-90': '#1f1c1be6', + 'UI-Opacity-Almost-Black-80': '#1f1c1bcc', + 'UI-Opacity-Almost-Black-70': '#1f1c1bb3', + 'UI-Opacity-Almost-Black-60': '#1f1c1b99', + 'UI-Opacity-Almost-Black-50': '#1f1c1b80', + 'UI-Opacity-Almost-Black-40': '#1f1c1b66', + 'UI-Opacity-Almost-Black-30': '#1f1c1b4d', + 'UI-Opacity-Almost-Black-20': '#1f1c1b33', + 'UI-Opacity-Almost-Black-10': '#1f1c1b1a', + 'UI-Opacity-Almost-Black-0': '#1f1c1b00', + 'UI-Grey-10': '#ebe8e6', + 'UI-Grey-20': '#d6d2d0', + 'UI-Grey-30': '#c2bdba', + 'UI-Grey-40': '#a8a4a2', + 'UI-Grey-50': '#8c8987', + 'UI-Grey-60': '#787472', + 'UI-Grey-70': '#635f5d', + 'UI-Grey-80': '#57514e', + 'UI-Grey-90': '#403937', + 'UI-Grey-100': '#26201e', + 'Go-Purple-00': '#f4f2ff', + 'Go-Purple-10': '#dcd7ff', + 'Go-Purple-20': '#cabffc', + 'Go-Purple-30': '#baa7f7', + 'Go-Purple-40': '#ab8ef0', + 'Go-Purple-50': '#9c75e6', + 'Go-Purple-60': '#8c5bd5', + 'Go-Purple-70': '#733cb2', + 'Go-Purple-80': '#5e2a8c', + 'Go-Purple-90': '#451f61', + 'Go-Purple-100': '#2d163a', + 'Go-Yellow-00': '#fdffe8', + 'Go-Yellow-10': '#faffc4', + 'Go-Yellow-20': '#f8ff9c', + 'Go-Yellow-30': '#f5ff73', + 'Go-Yellow-40': '#edea39', + 'Go-Yellow-50': '#dec614', + 'Go-Yellow-60': '#ba8d07', + 'Go-Yellow-70': '#966400', + 'Go-Yellow-80': '#754403', + 'Go-Yellow-90': '#572701', + 'Go-Yellow-100': '#3b1300', + 'Go-Green-00': '#edffe5', + 'Go-Green-10': '#cdffb8', + 'Go-Green-20': '#a7ff82', + 'Go-Green-30': '#85ff52', + 'Go-Green-40': '#66e03a', + 'Go-Green-50': '#45b222', + 'Go-Green-60': '#2e7f18', + 'Go-Green-70': '#2a601e', + 'Go-Green-80': '#26461f', + 'Go-Green-90': '#21331f', + 'Go-Green-100': '#162115', + }, +} as const + +export const tokens = { + 'Base-Background-Primary-Normal': 'Scandic-Beige-00', + 'Base-Background-Primary-Elevated': 'Scandic-Beige-00', + 'Base-Surface-Primary-light-Normal': 'UI-Opacity-White-100', + 'Base-Surface-Primary-dark-Normal': 'Scandic-Peach-10', + 'Base-Surface-Secondary-light-Normal': 'Scandic-Beige-00', + 'Base-Surface-Secondary-light-Hover': 'Scandic-Peach-10', + 'Base-Surface-Secondary-light-Hover-alt': 'Scandic-Peach-20', + 'Base-Surface-Primary-dark-Hover': 'Scandic-Peach-20', + 'Base-Surface-Primary-light-Hover': 'UI-Grey-00', + 'Base-Surface-Primary-light-Hover-alt': 'Scandic-Beige-10', + 'Base-Surface-Subtle-Normal': 'Scandic-Beige-10', + 'Base-Surface-Subtle-Hover': 'Scandic-Beige-20', + 'Base-Text-High-contrast': 'Scandic-Red-100', + 'Base-Icon-Low-contrast': 'Scandic-Peach-70', + 'Base-Text-Medium-contrast': 'Scandic-Peach-80', + 'Base-Text-Accent': 'Scandic-Red-60', + 'Base-Text-Disabled': 'UI-Grey-40', + 'Base-Text-Inverted': 'UI-Opacity-White-100', + 'Base-Border-Normal': 'Scandic-Beige-40', + 'Base-Border-Hover': 'Scandic-Peach-80', + 'Base-Border-Subtle': 'Scandic-Beige-20', + 'Base-Border-Inverted': 'UI-Opacity-White-100', + 'Base-Button-Primary-Fill-Normal': 'Scandic-Red-60', + 'Base-Interactive-Surface-Primary-normal': 'Scandic-Red-80', + 'Base-Interactive-Surface-Secondary-normal': 'Scandic-Green-70', + 'Base-Interactive-Surface-Tertiary-normal': 'Scandic-Blue-60', + 'Base-Button-Primary-Fill-Hover': 'Scandic-Red-70', + 'Base-Button-Primary-Fill-Disabled': 'UI-Grey-20', + 'Base-Button-Primary-On-Fill-Normal': 'UI-Opacity-White-100', + 'Base-Button-Primary-On-Fill-Hover': 'UI-Opacity-White-100', + 'Base-Button-Primary-On-Fill-Disabled': 'UI-Grey-40', + 'Base-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Base-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Base-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Base-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Base-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Base-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Base-Button-Secondary-On-Fill-Normal': 'Scandic-Red-100', + 'Base-Button-Secondary-On-Fill-Hover': 'Scandic-Peach-80', + 'Base-Button-Secondary-On-Fill-Disabled': 'UI-Grey-40', + 'Base-Button-Secondary-Border-Normal': 'Scandic-Red-100', + 'Base-Button-Secondary-Border-Hover': 'Scandic-Peach-80', + 'Base-Button-Secondary-Border-Disabled': 'UI-Grey-30', + 'Base-Button-Tertiary-Fill-Normal': 'Scandic-Red-100', + 'Base-Button-Tertiary-Fill-Hover': 'Scandic-Red-90', + 'Base-Button-Tertiary-Fill-Disabled': 'UI-Grey-20', + 'Base-Button-Tertiary-On-Fill-Normal': 'UI-Opacity-White-100', + 'Base-Button-Tertiary-On-Fill-Hover': 'UI-Opacity-White-100', + 'Base-Button-Tertiary-On-Fill-Disabled': 'UI-Grey-40', + 'Base-Button-Tertiary-Border-Normal': 'UI-Opacity-White-0', + 'Base-Button-Tertiary-Border-Hover': 'UI-Opacity-White-0', + 'Base-Button-Tertiary-Border-Disabled': 'UI-Opacity-White-0', + 'Base-Button-Inverted-Fill-Normal': 'UI-Opacity-White-100', + 'Base-Button-Inverted-Fill-Hover': 'Scandic-Beige-10', + 'Base-Button-Inverted-Fill-Hover-alt': 'Scandic-Peach-10', + 'Base-Button-Inverted-Fill-Disabled': 'UI-Grey-20', + 'Base-Button-Inverted-On-Fill-Normal': 'Scandic-Red-100', + 'Base-Button-Inverted-On-Fill-Hover': 'Scandic-Red-90', + 'Base-Button-Inverted-On-Fill-Disabled': 'UI-Grey-40', + 'Base-Button-Inverted-Border-Normal': 'UI-Opacity-White-0', + 'Base-Button-Inverted-Border-Hover': 'UI-Opacity-White-0', + 'Base-Button-Inverted-Border-Disabled': 'UI-Opacity-White-0', + 'UI-Text-High-contrast': 'UI-Grey-100', + 'UI-Input-Controls-Surface-Normal': 'UI-Opacity-White-100', + 'UI-Semantic-Information': 'Scandic-Blue-70', + 'UI-Semantic-Success': 'Scandic-Green-60', + 'UI-Semantic-Warning': 'Scandic-Yellow-60', + 'UI-Semantic-Error': 'Scandic-Red-70', + 'UI-Input-Controls-Surface-Hover': 'Scandic-Beige-10', + 'UI-Input-Controls-Surface-Disabled': 'UI-Grey-10', + 'UI-Input-Controls-Fill-Normal': 'UI-Opacity-White-100', + 'UI-Input-Controls-Fill-Selected': 'Scandic-Blue-80', + 'UI-Input-Controls-Fill-Selected-hover': 'Scandic-Blue-70', + 'UI-Input-Controls-Fill-Disabled': 'UI-Grey-60', + 'UI-Input-Controls-On-Fill-Normal': 'UI-Opacity-White-100', + 'UI-Input-Controls-Border-Normal': 'Scandic-Beige-50', + 'UI-Input-Controls-Border-Hover': 'Scandic-Beige-70', + 'UI-Input-Controls-Border-Focus': 'Scandic-Blue-80', + 'UI-Input-Controls-Border-Disabled': 'UI-Grey-40', + 'UI-Input-Controls-Border-Error': 'Scandic-Red-70', + 'UI-Input-Controls-Border-KeyboardFocus': 'Scandic-Blue-50', + 'UI-Text-Medium-contrast': 'UI-Grey-80', + 'UI-Text-Active': 'Scandic-Blue-90', + 'UI-Text-Error': 'Scandic-Red-70', + 'UI-Text-Placeholder': 'UI-Grey-60', + 'Primary-Light-Surface-Normal': 'Scandic-Peach-10', + 'Primary-Light-Surface-Hover': 'Scandic-Peach-20', + 'Primary-Light-On-Surface-Text': 'Scandic-Red-100', + 'Primary-Light-On-Surface-Accent': 'Scandic-Red-60', + 'Primary-Light-On-Surface-Divider': 'Scandic-Peach-30', + 'Primary-Light-On-Surface-Divider-subtle': 'Scandic-Beige-10', + 'Primary-Light-Button-Primary-Fill-Normal': 'Scandic-Red-100', + 'Primary-Light-Button-Primary-Fill-Hover': 'Scandic-Red-80', + 'Primary-Light-Button-Primary-Fill-Disabled': 'UI-Opacity-Almost-Black-10', + 'Primary-Light-Button-Primary-On-Fill-Normal': 'Scandic-Peach-10', + 'Primary-Light-Button-Primary-On-Fill-Hover': 'Scandic-Peach-30', + 'Primary-Light-Button-Primary-On-Fill-Disabled': 'UI-Opacity-Almost-Black-20', + 'Primary-Light-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Primary-Light-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Primary-Light-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Primary-Light-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Primary-Light-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Primary-Light-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Primary-Light-Button-Secondary-On-Fill-Normal': 'Scandic-Red-100', + 'Primary-Light-Button-Secondary-On-Fill-Hover': 'Scandic-Red-80', + 'Primary-Light-Button-Secondary-On-Fill-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Primary-Light-Button-Secondary-Border-Normal': 'Scandic-Red-100', + 'Primary-Light-Button-Secondary-Border-Hover': 'Scandic-Red-80', + 'Primary-Light-Button-Secondary-Border-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Primary-Dim-Surface-Normal': 'Scandic-Peach-30', + 'Primary-Dim-Surface-Hover': 'Scandic-Peach-40', + 'Primary-Dim-On-Surface-Text': 'Scandic-Red-100', + 'Primary-Dim-On-Surface-Accent': 'Scandic-Peach-80', + 'Primary-Dim-On-Surface-Divider': 'Scandic-Peach-40', + 'Primary-Dim-Button-Primary-Fill-Normal': 'Scandic-Red-100', + 'Primary-Dim-Button-Primary-Fill-Hover': 'Scandic-Red-80', + 'Primary-Dim-Button-Primary-Fill-Disabled': 'UI-Opacity-Almost-Black-10', + 'Primary-Dim-Button-Primary-On-Fill-Normal': 'Scandic-Peach-10', + 'Primary-Dim-Button-Primary-On-Fill-Hover': 'Scandic-Peach-30', + 'Primary-Dim-Button-Primary-On-Fill-Disabled': 'UI-Opacity-Almost-Black-20', + 'Primary-Dim-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Primary-Dim-Button-Secondary-On-Fill-Normal': 'Scandic-Red-100', + 'Primary-Dim-Button-Secondary-On-Fill-Hover': 'Scandic-Red-80', + 'Primary-Dim-Button-Secondary-On-Fill-Disabled': 'UI-Opacity-Almost-Black-20', + 'Primary-Dim-Button-Secondary-Border-Normal': 'Scandic-Red-100', + 'Primary-Dim-Button-Secondary-Border-Hover': 'Scandic-Red-80', + 'Primary-Dim-Button-Secondary-Border-Disabled': 'UI-Opacity-Almost-Black-20', + 'Primary-Strong-Surface-Normal': 'Scandic-Red-60', + 'Primary-Strong-Surface-Hover': 'Scandic-Red-70', + 'Primary-Strong-On-Surface-Text': 'UI-Opacity-White-100', + 'Primary-Strong-On-Surface-Accent': 'Scandic-Peach-10', + 'Primary-Strong-On-Surface-Divider': 'Scandic-Red-70', + 'Primary-Strong-Button-Primary-Fill-Normal': 'UI-Opacity-White-100', + 'Primary-Strong-Button-Primary-Fill-Hover': 'Scandic-Red-00', + 'Primary-Strong-Button-Primary-Fill-Disabled': 'UI-Opacity-White-20', + 'Primary-Strong-Button-Primary-On-Fill-Normal': 'Scandic-Red-70', + 'Primary-Strong-Button-Primary-On-Fill-Hover': 'Scandic-Red-70', + 'Primary-Strong-Button-Primary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Primary-Strong-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Primary-Strong-Button-Secondary-On-Fill-Normal': 'UI-Opacity-White-100', + 'Primary-Strong-Button-Secondary-On-Fill-Hover': 'Scandic-Red-00', + 'Primary-Strong-Button-Secondary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Primary-Strong-Button-Secondary-Border-Normal': 'UI-Opacity-White-100', + 'Primary-Strong-Button-Secondary-Border-Hover': 'Scandic-Peach-00', + 'Primary-Strong-Button-Secondary-Border-Disabled': 'UI-Opacity-White-20', + 'Primary-Dark-Surface-Normal': 'Scandic-Red-100', + 'Primary-Dark-Surface-Hover': 'Scandic-Red-90', + 'Primary-Dark-On-Surface-Text': 'Scandic-Peach-10', + 'Primary-Dark-On-Surface-Accent': 'Scandic-Peach-50', + 'Primary-Dark-On-Surface-Divider': 'Scandic-Peach-80', + 'Primary-Dark-Button-Primary-Fill-Normal': 'Scandic-Peach-10', + 'Primary-Dark-Button-Primary-Fill-Hover': 'Scandic-Peach-20', + 'Primary-Dark-Button-Primary-Fill-Disabled': 'UI-Opacity-White-20', + 'Primary-Dark-Button-Primary-On-Fill-Normal': 'Scandic-Red-100', + 'Primary-Dark-Button-Primary-On-Fill-Hover': 'Scandic-Red-80', + 'Primary-Dark-Button-Primary-On-Fill-Disabled': 'UI-Opacity-White-30', + 'Primary-Dark-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Primary-Dark-Button-Secondary-On-Fill-Normal': 'Scandic-Peach-10', + 'Primary-Dark-Button-Secondary-On-Fill-Hover': 'Scandic-Peach-30', + 'Primary-Dark-Button-Secondary-On-Fill-Disabled': 'UI-Opacity-White-30', + 'Primary-Dark-Button-Secondary-Border-Normal': 'Scandic-Peach-10', + 'Primary-Dark-Button-Secondary-Border-Hover': 'Scandic-Peach-30', + 'Primary-Dark-Button-Secondary-Border-Disabled': 'UI-Opacity-White-20', + 'Secondary-Light-Surface-Normal': 'Scandic-Green-20', + 'Secondary-Dark-Surface-Normal': 'Scandic-Green-90', + 'Tertiary-Light-Surface-Normal': 'Scandic-Yellow-10', + 'Tertiary-Light-Surface-Hover': 'Scandic-Yellow-00', + 'Tertiary-Light-On-Surface-Text': 'Scandic-Blue-100', + 'Tertiary-Light-On-Surface-Accent': 'Scandic-Yellow-50', + 'Tertiary-Light-On-Surface-Divider': 'Scandic-Yellow-20', + 'Tertiary-Light-Button-Primary-Fill-Normal': 'Scandic-Blue-100', + 'Tertiary-Light-Button-Primary-Fill-Hover': 'Scandic-Blue-90', + 'Tertiary-Light-Button-Primary-Fill-Disabled': 'UI-Opacity-Almost-Black-10', + 'Tertiary-Light-Button-Primary-On-Fill-Normal': 'Scandic-Yellow-10', + 'Tertiary-Light-Button-Primary-On-Fill-Hover': 'Scandic-Yellow-00', + 'Tertiary-Light-Button-Primary-On-Fill-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Tertiary-Light-Button-Primary-Border-Normal': 'Scandic-Yellow-10', + 'Tertiary-Light-Button-Primary-Border-Hover': 'Scandic-Yellow-00', + 'Tertiary-Light-Button-Primary-Border-Disabled': 'UI-Opacity-Almost-Black-20', + 'Tertiary-Light-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Tertiary-Light-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Tertiary-Light-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Tertiary-Light-Button-Secondary-On-Fill-Normal': 'Scandic-Blue-100', + 'Tertiary-Light-Button-Secondary-On-Fill-Hover': 'Scandic-Blue-90', + 'Tertiary-Light-Button-Secondary-On-Fill-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Tertiary-Light-Button-Secondary-Border-Normal': 'Scandic-Blue-100', + 'Tertiary-Light-Button-Secondary-Border-Hover': 'Scandic-Blue-90', + 'Tertiary-Light-Button-Secondary-Border-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Secondary-Dark-Surface-Hover': 'Scandic-Green-80', + 'Secondary-Dark-On-Surface-Text': 'Scandic-Green-20', + 'Secondary-Dark-On-Surface-Accent': 'Scandic-Green-40', + 'Secondary-Dark-On-Surface-Divider': 'Scandic-Green-80', + 'Secondary-Dark-Button-Primary-Fill-Normal': 'Scandic-Green-20', + 'Secondary-Dark-Button-Primary-Fill-Hover': 'Scandic-Green-30', + 'Secondary-Dark-Button-Primary-Fill-Disabled': 'UI-Opacity-White-10', + 'Secondary-Dark-Button-Primary-On-Fill-Normal': 'Scandic-Green-90', + 'Secondary-Dark-Button-Primary-On-Fill-Hover': 'Scandic-Green-80', + 'Secondary-Dark-Button-Primary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Secondary-Dark-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Secondary-Dark-Button-Secondary-On-Fill-Normal': 'Scandic-Green-20', + 'Secondary-Dark-Button-Secondary-On-Fill-Hover': 'Scandic-Green-30', + 'Secondary-Dark-Button-Secondary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Secondary-Dark-Button-Secondary-Border-Normal': 'Scandic-Green-20', + 'Secondary-Dark-Button-Secondary-Border-Hover': 'Scandic-Green-30', + 'Secondary-Dark-Button-Secondary-Border-Disabled': 'UI-Opacity-White-20', + 'Secondary-Light-Surface-Hover': 'Scandic-Green-20', + 'Secondary-Light-On-Surface-Text': 'Scandic-Green-90', + 'Secondary-Light-On-Surface-Accent': 'Scandic-Green-50', + 'Secondary-Light-On-Surface-Divider': 'Scandic-Green-30', + 'Secondary-Light-Button-Primary-Fill-Normal': 'Scandic-Green-90', + 'Secondary-Light-Button-Primary-Fill-Hover': 'Scandic-Green-80', + 'Secondary-Light-Button-Primary-Fill-Disabled': 'UI-Opacity-Almost-Black-10', + 'Secondary-Light-Button-Primary-On-Fill-Normal': 'Scandic-Green-20', + 'Secondary-Light-Button-Primary-On-Fill-Hover': 'Scandic-Green-30', + 'Secondary-Light-Button-Primary-On-Fill-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Secondary-Light-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Secondary-Light-Button-Secondary-On-Fill-Normal': 'Scandic-Green-90', + 'Secondary-Light-Button-Secondary-On-Fill-Hover': 'Scandic-Green-80', + 'Secondary-Light-Button-Secondary-On-Fill-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Secondary-Light-Button-Secondary-Border-Normal': 'Scandic-Green-90', + 'Secondary-Light-Button-Secondary-Border-Hover': 'Scandic-Green-80', + 'Secondary-Light-Button-Secondary-Border-Disabled': + 'UI-Opacity-Almost-Black-20', + 'Tertiary-Dark-Surface-Normal': 'Scandic-Blue-100', + 'Tertiary-Dark-Surface-Hover': 'Scandic-Blue-90', + 'Tertiary-Dark-On-Surface-Text': 'Scandic-Yellow-10', + 'Tertiary-Dark-On-Surface-Accent': 'Scandic-Blue-40', + 'Tertiary-Dark-Button-Primary-Fill-Normal': 'Scandic-Yellow-10', + 'Tertiary-Dark-Button-Primary-Fill-Hover': 'Scandic-Yellow-20', + 'Tertiary-Dark-Button-Primary-Fill-Disabled': 'UI-Opacity-White-10', + 'Tertiary-Dark-Button-Primary-On-Fill-Normal': 'Scandic-Blue-100', + 'Tertiary-Dark-Button-Primary-On-Fill-Hover': 'Scandic-Blue-80', + 'Tertiary-Dark-Button-Primary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Tertiary-Dark-Button-Primary-Border-Normal': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Primary-Border-Hover': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Primary-Border-Disabled': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Secondary-Fill-Normal': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Secondary-Fill-Hover': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Secondary-Fill-Disabled': 'UI-Opacity-White-0', + 'Tertiary-Dark-Button-Secondary-On-Fill-Normal': 'Scandic-Yellow-10', + 'Tertiary-Dark-Button-Secondary-On-Fill-Hover': 'Scandic-Yellow-20', + 'Tertiary-Dark-Button-Secondary-On-Fill-Disabled': 'UI-Opacity-White-20', + 'Tertiary-Dark-Button-Secondary-Border-Normal': 'Scandic-Yellow-10', + 'Tertiary-Dark-Button-Secondary-Border-Hover': 'Scandic-Yellow-20', + 'Tertiary-Dark-Button-Secondary-Border-Disabled': 'UI-Opacity-White-20', + 'Tertiary-Dark-On-Surface-Divider': 'Scandic-Blue-80', + 'Base-Button-Text-Fill-Normal': 'UI-Opacity-White-0', + 'Base-Button-Text-Fill-Hover': 'UI-Opacity-White-0', + 'Base-Button-Text-Fill-Disabled': 'UI-Opacity-White-0', + 'Base-Button-Text-On-Fill-Normal': 'Scandic-Red-100', + 'Base-Button-Text-On-Fill-Hover': 'Scandic-Peach-80', + 'Base-Button-Text-On-Fill-Disabled': 'UI-Grey-40', + 'Base-Button-Text-Border-Normal': 'UI-Opacity-White-0', + 'Base-Button-Text-Border-Hover': 'UI-Opacity-White-0', + 'Base-Button-Text-Border-Disabled': 'UI-Opacity-White-0', +} as const + +export const Scandic = { + Scandic: { + 'Scandic-Brand-Scandic-Red': '#cd0921', + 'Scandic-Brand-Burgundy': '#4d001b', + 'Scandic-Brand-Pale-Peach': '#f7e1d5', + 'Scandic-Brand-Dark-Green': '#093021', + 'Scandic-Brand-Light-Green': '#d2edaf', + 'Scandic-Brand-Dark-Grey': '#291710', + 'Scandic-Brand-Warm-White': '#faf6f2', + 'Scandic-Brand-Light-Blue': '#b5e0ff', + 'Scandic-Brand-Dark-Blue': '#0d1440', + 'Scandic-Brand-Pale-Yellow': '#fff0c2', + 'Scandic-Red-00': '#ffebeb', + 'Scandic-Red-10': '#f7c1c2', + 'Scandic-Red-20': '#f79499', + 'Scandic-Red-30': '#f26b74', + 'Scandic-Red-40': '#ed4251', + 'Scandic-Red-50': '#e32034', + 'Scandic-Red-60': '#cd0921', + 'Scandic-Red-70': '#ad0015', + 'Scandic-Red-80': '#8d0011', + 'Scandic-Red-90': '#6d000d', + 'Scandic-Red-100': '#4d001b', + 'Scandic-Peach-00': '#fff3ed', + 'Scandic-Beige-00': '#faf6f2', + 'Scandic-Beige-10': '#f2ece6', + 'Scandic-Beige-20': '#e3d9d1', + 'Scandic-Beige-30': '#d1c4ba', + 'Scandic-Beige-40': '#b8a79a', + 'Scandic-Beige-50': '#9c8a7e', + 'Scandic-Beige-60': '#806e63', + 'Scandic-Beige-70': '#6b584d', + 'Scandic-Beige-80': '#533f35', + 'Scandic-Beige-90': '#3e2b23', + 'Scandic-Beige-100': '#291710', + 'Scandic-Peach-10': '#f7e1d5', + 'Scandic-Peach-20': '#f4d5c8', + 'Scandic-Peach-30': '#f0c1b6', + 'Scandic-Peach-40': '#e9aba3', + 'Scandic-Peach-50': '#de9490', + 'Scandic-Peach-60': '#cd797c', + 'Scandic-Peach-70': '#b05b65', + 'Scandic-Peach-80': '#8f4350', + 'Scandic-Peach-90': '#642636', + 'Scandic-Peach-100': '#4d0f25', + 'Scandic-Green-00': '#f3fce8', + 'Scandic-Green-10': '#e1f3ca', + 'Scandic-Green-20': '#d2edaf', + 'Scandic-Green-30': '#acdb8a', + 'Scandic-Green-40': '#7cb865', + 'Scandic-Green-50': '#539e49', + 'Scandic-Green-60': '#348337', + 'Scandic-Green-70': '#256931', + 'Scandic-Green-80': '#164e29', + 'Scandic-Green-90': '#093021', + 'Scandic-Green-100': '#091f16', + 'Scandic-Blue-00': '#e8f6ff', + 'Scandic-Blue-10': '#cfebff', + 'Scandic-Blue-20': '#b5e0ff', + 'Scandic-Blue-30': '#93c9f5', + 'Scandic-Blue-40': '#79aee7', + 'Scandic-Blue-50': '#5b8fd4', + 'Scandic-Blue-60': '#3f6dbd', + 'Scandic-Blue-70': '#284ea0', + 'Scandic-Blue-80': '#18347f', + 'Scandic-Blue-90': '#0d1f5f', + 'Scandic-Blue-100': '#0d1440', + 'Scandic-Yellow-00': '#fff8e3', + 'Scandic-Yellow-10': '#fff0c2', + 'Scandic-Yellow-20': '#fade89', + 'Scandic-Yellow-30': '#f7ce52', + 'Scandic-Yellow-40': '#edb532', + 'Scandic-Yellow-50': '#e59515', + 'Scandic-Yellow-60': '#d17308', + 'Scandic-Yellow-70': '#a85211', + 'Scandic-Yellow-80': '#7d370f', + 'Scandic-Yellow-90': '#4f2313', + 'Scandic-Yellow-100': '#301508', + }, + Go: { + 'Go-Brand-Lavender': '#dcd7ff', + 'Go-Beige-00': '#faf8f2', + 'Go-Beige-10': '#f0ede4', + 'Go-Beige-20': '#e0dcce', + 'Go-Beige-30': '#c8c4b6', + 'Go-Beige-40': '#b0aca0', + 'Go-Beige-50': '#918f83', + 'Go-Beige-60': '#78766d', + 'Go-Beige-70': '#63615a', + 'Go-Beige-80': '#4f4d49', + 'Go-Beige-90': '#373633', + 'Go-Beige-100': '#1f1e1d', + 'Go-Brand-Obsidian': '#2d163a', + 'Go-Brand-Lemon': '#f5ff73', + 'Go-Brand-Linen': '#e0dcce', + 'Go-Brand-Chartreuse': '#85ff52', + 'Go-Brand-Pine': '#21331f', + 'Go-Brand-Aqua': '#73fcee', + 'Go-Brand-Powder-rose': '#ecc8c9', + 'Go-Brand-Coral': '#fa3737', + 'Go-Purple-00': '#f4f2ff', + 'Go-Purple-10': '#dcd7ff', + 'Go-Purple-20': '#cabffc', + 'Go-Purple-30': '#baa7f7', + 'Go-Purple-40': '#ab8ef0', + 'Go-Purple-50': '#9c75e6', + 'Go-Purple-60': '#8c5bd5', + 'Go-Purple-70': '#733cb2', + 'Go-Purple-80': '#5e2a8c', + 'Go-Purple-90': '#451f61', + 'Go-Purple-100': '#2d163a', + 'Go-Yellow-00': '#fdffe8', + 'Go-Yellow-10': '#faffc4', + 'Go-Yellow-20': '#f8ff9c', + 'Go-Yellow-30': '#f5ff73', + 'Go-Yellow-40': '#edea39', + 'Go-Yellow-50': '#dec614', + 'Go-Yellow-60': '#ba8d07', + 'Go-Yellow-70': '#966400', + 'Go-Yellow-80': '#754403', + 'Go-Yellow-90': '#572701', + 'Go-Yellow-100': '#3b1300', + 'Go-Green-00': '#edffe5', + 'Go-Green-10': '#cdffb8', + 'Go-Green-20': '#a7ff82', + 'Go-Green-30': '#85ff52', + 'Go-Green-40': '#66e03a', + 'Go-Green-50': '#45b222', + 'Go-Green-60': '#2e7f18', + 'Go-Green-70': '#2a601e', + 'Go-Green-80': '#26461f', + 'Go-Green-90': '#21331f', + 'Go-Green-100': '#162115', + }, + UI: { + 'UI-Grey-00': '#f9f6f4', + 'UI-Opacity-White-100': '#ffffff', + 'UI-Opacity-White-90': '#ffffffe6', + 'UI-Opacity-White-80': '#ffffffcc', + 'UI-Opacity-White-70': '#ffffffb3', + 'UI-Opacity-White-60': '#ffffff99', + 'UI-Opacity-White-50': '#ffffff80', + 'UI-Opacity-White-40': '#ffffff66', + 'UI-Opacity-White-30': '#ffffff4d', + 'UI-Opacity-White-20': '#ffffff33', + 'UI-Opacity-White-10': '#ffffff1a', + 'UI-Opacity-White-0': '#ffffff00', + 'UI-Opacity-Almost-Black-100': '#1f1c1b', + 'UI-Opacity-Almost-Black-90': '#1f1c1be6', + 'UI-Opacity-Almost-Black-80': '#1f1c1bcc', + 'UI-Opacity-Almost-Black-70': '#1f1c1bb3', + 'UI-Opacity-Almost-Black-60': '#1f1c1b99', + 'UI-Opacity-Almost-Black-50': '#1f1c1b80', + 'UI-Opacity-Almost-Black-40': '#1f1c1b66', + 'UI-Opacity-Almost-Black-30': '#1f1c1b4d', + 'UI-Opacity-Almost-Black-20': '#1f1c1b33', + 'UI-Opacity-Almost-Black-10': '#1f1c1b1a', + 'UI-Opacity-Almost-Black-0': '#1f1c1b00', + 'UI-Grey-10': '#ebe8e6', + 'UI-Grey-20': '#d6d2d0', + 'UI-Grey-30': '#c2bdba', + 'UI-Grey-40': '#a8a4a2', + 'UI-Grey-50': '#8c8987', + 'UI-Grey-60': '#787472', + 'UI-Grey-70': '#635f5d', + 'UI-Grey-80': '#57514e', + 'UI-Grey-90': '#403937', + 'UI-Grey-100': '#26201e', + }, +} as const diff --git a/packages/design-system/lib/styles/fonts/Helvetica/helvetica.ttf b/packages/design-system/lib/styles/fonts/Helvetica/helvetica.ttf new file mode 100644 index 000000000..718f22d4a Binary files /dev/null and b/packages/design-system/lib/styles/fonts/Helvetica/helvetica.ttf differ diff --git a/packages/design-system/lib/styles/globals.css b/packages/design-system/lib/styles/globals.css new file mode 100644 index 000000000..750c8aba7 --- /dev/null +++ b/packages/design-system/lib/styles/globals.css @@ -0,0 +1,5 @@ +@font-face { + font-family: 'Helvetica'; + font-style: normal; + src: url('./fonts/Helvetica/helvetica.ttf') format('ttf'); +} diff --git a/packages/design-system/lib/styles/modes.css b/packages/design-system/lib/styles/modes.css new file mode 100644 index 000000000..6ed80cac9 --- /dev/null +++ b/packages/design-system/lib/styles/modes.css @@ -0,0 +1,165 @@ +/* This file is generated, do not edit manually! */ +:root { + --Go-Beige-00: #faf8f2; + --Go-Beige-10: #f0ede4; + --Go-Beige-20: #e0dcce; + --Go-Beige-30: #c8c4b6; + --Go-Beige-40: #b0aca0; + --Go-Beige-50: #918f83; + --Go-Beige-60: #78766d; + --Go-Beige-70: #63615a; + --Go-Beige-80: #4f4d49; + --Go-Beige-90: #373633; + --Go-Beige-100: #1f1e1d; + --Go-Brand-Aqua: #73fcee; + --Go-Brand-Chartreuse: #85ff52; + --Go-Brand-Coral: #fa3737; + --Go-Brand-Lavender: #dcd7ff; + --Go-Brand-Lemon: #f5ff73; + --Go-Brand-Linen: #e0dcce; + --Go-Brand-Obsidian: #2d163a; + --Go-Brand-Pine: #21331f; + --Go-Brand-Powder-rose: #ecc8c9; + --Go-Green-00: #edffe5; + --Go-Green-10: #cdffb8; + --Go-Green-20: #a7ff82; + --Go-Green-30: #85ff52; + --Go-Green-40: #66e03a; + --Go-Green-50: #45b222; + --Go-Green-60: #2e7f18; + --Go-Green-70: #2a601e; + --Go-Green-80: #26461f; + --Go-Green-90: #21331f; + --Go-Green-100: #162115; + --Go-Purple-00: #f4f2ff; + --Go-Purple-10: #dcd7ff; + --Go-Purple-20: #cabffc; + --Go-Purple-30: #baa7f7; + --Go-Purple-40: #ab8ef0; + --Go-Purple-50: #9c75e6; + --Go-Purple-60: #8c5bd5; + --Go-Purple-70: #733cb2; + --Go-Purple-80: #5e2a8c; + --Go-Purple-90: #451f61; + --Go-Purple-100: #2d163a; + --Go-Yellow-00: #fdffe8; + --Go-Yellow-10: #faffc4; + --Go-Yellow-20: #f8ff9c; + --Go-Yellow-30: #f5ff73; + --Go-Yellow-40: #edea39; + --Go-Yellow-50: #dec614; + --Go-Yellow-60: #ba8d07; + --Go-Yellow-70: #966400; + --Go-Yellow-80: #754403; + --Go-Yellow-90: #572701; + --Go-Yellow-100: #3b1300; + --Scandic-Beige-00: #faf6f2; + --Scandic-Beige-10: #f2ece6; + --Scandic-Beige-20: #e3d9d1; + --Scandic-Beige-30: #d1c4ba; + --Scandic-Beige-40: #b8a79a; + --Scandic-Beige-50: #9c8a7e; + --Scandic-Beige-60: #806e63; + --Scandic-Beige-70: #6b584d; + --Scandic-Beige-80: #533f35; + --Scandic-Beige-90: #3e2b23; + --Scandic-Beige-100: #291710; + --Scandic-Blue-00: #e8f6ff; + --Scandic-Blue-10: #cfebff; + --Scandic-Blue-20: #b5e0ff; + --Scandic-Blue-30: #93c9f5; + --Scandic-Blue-40: #79aee7; + --Scandic-Blue-50: #5b8fd4; + --Scandic-Blue-60: #3f6dbd; + --Scandic-Blue-70: #284ea0; + --Scandic-Blue-80: #18347f; + --Scandic-Blue-90: #0d1f5f; + --Scandic-Blue-100: #0d1440; + --Scandic-Brand-Burgundy: #4d001b; + --Scandic-Brand-Dark-Blue: #0d1440; + --Scandic-Brand-Dark-Green: #093021; + --Scandic-Brand-Dark-Grey: #291710; + --Scandic-Brand-Light-Blue: #b5e0ff; + --Scandic-Brand-Light-Green: #d2edaf; + --Scandic-Brand-Pale-Peach: #f7e1d5; + --Scandic-Brand-Pale-Yellow: #fff0c2; + --Scandic-Brand-Scandic-Red: #cd0921; + --Scandic-Brand-Warm-White: #faf6f2; + --Scandic-Green-00: #f3fce8; + --Scandic-Green-10: #e1f3ca; + --Scandic-Green-20: #d2edaf; + --Scandic-Green-30: #acdb8a; + --Scandic-Green-40: #7cb865; + --Scandic-Green-50: #539e49; + --Scandic-Green-60: #348337; + --Scandic-Green-70: #256931; + --Scandic-Green-80: #164e29; + --Scandic-Green-90: #093021; + --Scandic-Green-100: #091f16; + --Scandic-Peach-00: #fff3ed; + --Scandic-Peach-10: #f7e1d5; + --Scandic-Peach-20: #f4d5c8; + --Scandic-Peach-30: #f0c1b6; + --Scandic-Peach-40: #e9aba3; + --Scandic-Peach-50: #de9490; + --Scandic-Peach-60: #cd797c; + --Scandic-Peach-70: #b05b65; + --Scandic-Peach-80: #8f4350; + --Scandic-Peach-90: #642636; + --Scandic-Peach-100: #4d0f25; + --Scandic-Red-00: #ffebeb; + --Scandic-Red-10: #f7c1c2; + --Scandic-Red-20: #f79499; + --Scandic-Red-30: #f26b74; + --Scandic-Red-40: #ed4251; + --Scandic-Red-50: #e32034; + --Scandic-Red-60: #cd0921; + --Scandic-Red-70: #ad0015; + --Scandic-Red-80: #8d0011; + --Scandic-Red-90: #6d000d; + --Scandic-Red-100: #4d001b; + --Scandic-Yellow-00: #fff8e3; + --Scandic-Yellow-10: #fff0c2; + --Scandic-Yellow-20: #fade89; + --Scandic-Yellow-30: #f7ce52; + --Scandic-Yellow-40: #edb532; + --Scandic-Yellow-50: #e59515; + --Scandic-Yellow-60: #d17308; + --Scandic-Yellow-70: #a85211; + --Scandic-Yellow-80: #7d370f; + --Scandic-Yellow-90: #4f2313; + --Scandic-Yellow-100: #301508; + --UI-Grey-00: #f9f6f4; + --UI-Grey-10: #ebe8e6; + --UI-Grey-20: #d6d2d0; + --UI-Grey-30: #c2bdba; + --UI-Grey-40: #a8a4a2; + --UI-Grey-50: #8c8987; + --UI-Grey-60: #787472; + --UI-Grey-70: #635f5d; + --UI-Grey-80: #57514e; + --UI-Grey-90: #403937; + --UI-Grey-100: #26201e; + --UI-Opacity-Almost-Black-0: #1f1c1b00; + --UI-Opacity-Almost-Black-10: #1f1c1b1a; + --UI-Opacity-Almost-Black-20: #1f1c1b33; + --UI-Opacity-Almost-Black-30: #1f1c1b4d; + --UI-Opacity-Almost-Black-40: #1f1c1b66; + --UI-Opacity-Almost-Black-50: #1f1c1b80; + --UI-Opacity-Almost-Black-60: #1f1c1b99; + --UI-Opacity-Almost-Black-70: #1f1c1bb3; + --UI-Opacity-Almost-Black-80: #1f1c1bcc; + --UI-Opacity-Almost-Black-90: #1f1c1be6; + --UI-Opacity-Almost-Black-100: #1f1c1b; + --UI-Opacity-White-0: #ffffff00; + --UI-Opacity-White-10: #ffffff1a; + --UI-Opacity-White-20: #ffffff33; + --UI-Opacity-White-30: #ffffff4d; + --UI-Opacity-White-40: #ffffff66; + --UI-Opacity-White-50: #ffffff80; + --UI-Opacity-White-60: #ffffff99; + --UI-Opacity-White-70: #ffffffb3; + --UI-Opacity-White-80: #ffffffcc; + --UI-Opacity-White-90: #ffffffe6; + --UI-Opacity-White-100: #ffffff; +} diff --git a/packages/design-system/lib/styles/new.css b/packages/design-system/lib/styles/new.css new file mode 100644 index 000000000..a1ed16907 --- /dev/null +++ b/packages/design-system/lib/styles/new.css @@ -0,0 +1,134 @@ +/* This file is generated, do not edit manually! */ +:root { + --Go-Beige-00: #faf8f2; + --Go-Beige-10: #f0ede4; + --Go-Beige-20: #e0dcce; + --Go-Beige-30: #c8c4b6; + --Go-Beige-40: #b0aca0; + --Go-Beige-50: #918f83; + --Go-Beige-60: #78766d; + --Go-Beige-70: #63615a; + --Go-Beige-80: #4f4d49; + --Go-Beige-90: #373633; + --Go-Beige-100: #1f1e1d; + --Go-Brand-Aqua: #73fcee; + --Go-Brand-Chartreuse: #85ff52; + --Go-Brand-Coral: #fa3737; + --Go-Brand-Lavender: #dcd7ff; + --Go-Brand-Lemon: #f5ff73; + --Go-Brand-Linen: #e0dcce; + --Go-Brand-Obsidian: #2d163a; + --Go-Brand-Pine: #21331f; + --Go-Brand-Powderrose: #ecc8c9; + --Go-Green-00: #edffe5; + --Go-Green-10: #cdffb8; + --Go-Green-20: #a7ff82; + --Go-Green-30: #85ff52; + --Go-Green-40: #66e03a; + --Go-Green-50: #45b222; + --Go-Green-60: #2e7f18; + --Go-Green-70: #2a601e; + --Go-Green-80: #26461f; + --Go-Green-90: #21331f; + --Go-Green-100: #162115; + --Go-Purple-00: #f4f2ff; + --Go-Purple-10: #dcd7ff; + --Go-Purple-20: #cabffc; + --Go-Purple-30: #baa7f7; + --Go-Purple-40: #ab8ef0; + --Go-Purple-50: #9c75e6; + --Go-Purple-60: #8c5bd5; + --Go-Purple-70: #733cb2; + --Go-Purple-80: #5e2a8c; + --Go-Purple-90: #451f61; + --Go-Purple-100: #2d163a; + --Go-Yellow-00: #fdffe8; + --Go-Yellow-10: #faffc4; + --Go-Yellow-20: #f8ff9c; + --Go-Yellow-30: #f5ff73; + --Go-Yellow-40: #edea39; + --Go-Yellow-50: #dec614; + --Go-Yellow-60: #ba8d07; + --Go-Yellow-70: #966400; + --Go-Yellow-80: #754403; + --Go-Yellow-90: #572701; + --Go-Yellow-100: #3b1300; + --Main-Blue-00: #eaf2fc; + --Main-Blue-10: #c7d9f5; + --Main-Blue-20: #a5c2ee; + --Main-Blue-30: #84ace7; + --Main-Blue-40: #6697df; + --Main-Blue-50: #4983d8; + --Main-Blue-60: #2e70d1; + --Main-Blue-70: #1555b4; + --Main-Blue-80: #023d96; + --Main-Blue-90: #002a69; + --Main-Blue-100: #001b42; + --Main-Brand-Burgundy: #4d001b; + --Main-Brand-DarkBlue: #0d1440; + --Main-Brand-DarkGreen: #093021; + --Main-Brand-DarkGrey: #291710; + --Main-Brand-LightBlue: #b5e0ff; + --Main-Brand-LightGreen: #d2edaf; + --Main-Brand-PalePeach: #f7e1d5; + --Main-Brand-PaleYellow: #fff0c2; + --Main-Brand-ScandicRed: #cd0921; + --Main-Brand-WarmWhite: #faf6f2; + --Main-Green-00: #e7f5e1; + --Main-Green-10: #badda8; + --Main-Green-20: #99ca7e; + --Main-Green-30: #7ab859; + --Main-Green-40: #5fa53a; + --Main-Green-50: #47931f; + --Main-Green-60: #33800a; + --Main-Green-70: #286806; + --Main-Green-80: #1e4f03; + --Main-Green-90: #143701; + --Main-Green-100: #0e2600; + --Main-Grey-00: #f9f6f4; + --Main-Grey-10: #ebe8e6; + --Main-Grey-20: #d6d2d0; + --Main-Grey-30: #c2bdba; + --Main-Grey-40: #a8a4a2; + --Main-Grey-50: #8c8987; + --Main-Grey-60: #787472; + --Main-Grey-70: #635f5d; + --Main-Grey-80: #57514e; + --Main-Grey-90: #403937; + --Main-Grey-100: #26201e; + --Main-Grey-Almostblack: #1f1c1b; + --Main-Grey-White: #ffffff; + --Main-Red-00: #ffebeb; + --Main-Red-10: #f7c1c2; + --Main-Red-20: #f79499; + --Main-Red-30: #f26b74; + --Main-Red-40: #ed4251; + --Main-Red-50: #e32034; + --Main-Red-60: #cd0921; + --Main-Red-70: #ad0015; + --Main-Red-80: #8d0011; + --Main-Red-90: #6d000d; + --Main-Red-100: #4d001b; + --Main-Scandic-00: #ffebeb; + --Main-Scandic-10: #f7c1c2; + --Main-Scandic-20: #f79499; + --Main-Scandic-30: #f26b74; + --Main-Scandic-40: #ed4251; + --Main-Scandic-50: #e32034; + --Main-Scandic-60: #cd0921; + --Main-Scandic-70: #ad0015; + --Main-Scandic-80: #8d0011; + --Main-Scandic-90: #6d000d; + --Main-Scandic-100: #4d001b; + --Main-Yellow-00: #fff8e3; + --Main-Yellow-10: #fff0c2; + --Main-Yellow-20: #fade89; + --Main-Yellow-30: #f7ce52; + --Main-Yellow-40: #edb532; + --Main-Yellow-50: #e59515; + --Main-Yellow-60: #d17308; + --Main-Yellow-70: #a85211; + --Main-Yellow-80: #7d370f; + --Main-Yellow-90: #4f2313; + --Main-Yellow-100: #301508; +} diff --git a/packages/design-system/lib/styles/numberedTokens.css b/packages/design-system/lib/styles/numberedTokens.css new file mode 100644 index 000000000..9f78a9939 --- /dev/null +++ b/packages/design-system/lib/styles/numberedTokens.css @@ -0,0 +1,41 @@ +/* This file is generated, do not edit manually! */ +:root { + --Corner-radius-Large: 12px; + --Corner-radius-Medium: 8px; + --Corner-radius-Rounded: 250px; + --Corner-radius-Small: 4px; + --Corner-radius-xLarge: 16px; + --Layout-Desktop-Breakpoints-max-width: 1920px; + --Layout-Desktop-Breakpoints-min-width: 1367px; + --Layout-Desktop-Columns-Column: 12px; + --Layout-Desktop-Gutter-max-width: 24px; + --Layout-Desktop-Gutter-min-width: 16px; + --Layout-Desktop-Margin-Margin-max: 72px; + --Layout-Desktop-Margin-Margin-min: 40px; + --Layout-Mobile-Breakpoints-max-width: 767px; + --Layout-Mobile-Breakpoints-min-width: 320px; + --Layout-Mobile-Columns-Column: 4px; + --Layout-Mobile-Gutter-max-width: 16px; + --Layout-Mobile-Gutter-min-width: 16px; + --Layout-Mobile-Margin-Margin-max: 16px; + --Layout-Mobile-Margin-Margin-min: 16px; + --Layout-Tablet-Breakpoints-max-width: 1366px; + --Layout-Tablet-Breakpoints-min-width: 768px; + --Layout-Tablet-Columns-Column: 8px; + --Layout-Tablet-Gutter-max-width: 16px; + --Layout-Tablet-Gutter-min-width: 16px; + --Layout-Tablet-Margin-Margin-max: 32px; + --Layout-Tablet-Margin-Margin-min: 24px; + --Spacing-x0: 0px; + --Spacing-x1: 8px; + --Spacing-x2: 16px; + --Spacing-x3: 24px; + --Spacing-x4: 32px; + --Spacing-x5: 40px; + --Spacing-x6: 48px; + --Spacing-x7: 56px; + --Spacing-x9: 72px; + --Spacing-x-half: 4px; + --Spacing-x-one-and-half: 12px; + --Spacing-x-quarter: 2px; +} diff --git a/packages/design-system/lib/styles/old.css b/packages/design-system/lib/styles/old.css new file mode 100644 index 000000000..8dd7a8caa --- /dev/null +++ b/packages/design-system/lib/styles/old.css @@ -0,0 +1,134 @@ +/* This file is generated, do not edit manually! */ +:root { + --Go-Beige-00: #faf8f2; + --Go-Beige-10: #f0ede4; + --Go-Beige-20: #e0dcce; + --Go-Beige-30: #c8c4b6; + --Go-Beige-40: #b0aca0; + --Go-Beige-50: #918f83; + --Go-Beige-60: #78766d; + --Go-Beige-70: #63615a; + --Go-Beige-80: #4f4d49; + --Go-Beige-90: #373633; + --Go-Beige-100: #1f1e1d; + --Go-Brand-Aqua: #73fcee; + --Go-Brand-Chartreuse: #85ff52; + --Go-Brand-Coral: #fa3737; + --Go-Brand-Lavender: #dcd7ff; + --Go-Brand-Lemon: #f5ff73; + --Go-Brand-Linen: #e0dcce; + --Go-Brand-Obsidian: #2d163a; + --Go-Brand-Pine: #21331f; + --Go-Brand-Powderrose: #ecc8c9; + --Go-Green-00: #edffe5; + --Go-Green-10: #cdffb8; + --Go-Green-20: #a7ff82; + --Go-Green-30: #85ff52; + --Go-Green-40: #66e03a; + --Go-Green-50: #45b222; + --Go-Green-60: #2e7f18; + --Go-Green-70: #2a601e; + --Go-Green-80: #26461f; + --Go-Green-90: #21331f; + --Go-Green-100: #162115; + --Go-Purple-00: #f4f2ff; + --Go-Purple-10: #dcd7ff; + --Go-Purple-20: #cabffc; + --Go-Purple-30: #baa7f7; + --Go-Purple-40: #ab8ef0; + --Go-Purple-50: #9c75e6; + --Go-Purple-60: #8c5bd5; + --Go-Purple-70: #733cb2; + --Go-Purple-80: #5e2a8c; + --Go-Purple-90: #451f61; + --Go-Purple-100: #2d163a; + --Go-Yellow-00: #fdffe8; + --Go-Yellow-10: #faffc4; + --Go-Yellow-20: #f8ff9c; + --Go-Yellow-30: #f5ff73; + --Go-Yellow-40: #edea39; + --Go-Yellow-50: #dec614; + --Go-Yellow-60: #ba8d07; + --Go-Yellow-70: #966400; + --Go-Yellow-80: #754403; + --Go-Yellow-90: #572701; + --Go-Yellow-100: #3b1300; + --Main-Blue-00: #eaf2fc; + --Main-Blue-10: #c7d9f5; + --Main-Blue-20: #a5c2ee; + --Main-Blue-30: #84ace7; + --Main-Blue-40: #6697df; + --Main-Blue-50: #4983d8; + --Main-Blue-60: #2e70d1; + --Main-Blue-70: #1555b4; + --Main-Blue-80: #023d96; + --Main-Blue-90: #002a69; + --Main-Blue-100: #001b42; + --Main-Brand-Burgundy: #4d001b; + --Main-Brand-DarkBlue: #0d1440; + --Main-Brand-DarkGreen: #093021; + --Main-Brand-DarkGrey: #291710; + --Main-Brand-LightBlue: #b5e0ff; + --Main-Brand-LightGreen: #d2edaf; + --Main-Brand-PalePeach: #f7e1d5; + --Main-Brand-PaleYellow: #fff0c2; + --Main-Brand-ScandicRed: #cd0921; + --Main-Brand-WarmWhite: #faf6f2; + --Main-Green-00: #e7f5e1; + --Main-Green-10: #badda8; + --Main-Green-20: #99ca7e; + --Main-Green-30: #7ab859; + --Main-Green-40: #5fa53a; + --Main-Green-50: #47931f; + --Main-Green-60: #33800a; + --Main-Green-70: #286806; + --Main-Green-80: #1e4f03; + --Main-Green-90: #143701; + --Main-Green-100: #0e2600; + --Main-Grey-00: #f2f2f2; + --Main-Grey-10: #e7e7e8; + --Main-Grey-20: #d8d8da; + --Main-Grey-30: #ceced2; + --Main-Grey-40: #c5c5ca; + --Main-Grey-50: #a7a7ad; + --Main-Grey-60: #7e7e84; + --Main-Grey-70: #535358; + --Main-Grey-80: #2f2f32; + --Main-Grey-90: #1b1b1c; + --Main-Grey-100: #111112; + --Main-Grey-Almostblack: #1f1c1b; + --Main-Grey-White: #ffffff; + --Main-Red-00: #ffebeb; + --Main-Red-10: #f7c1c2; + --Main-Red-20: #f79499; + --Main-Red-30: #f26b74; + --Main-Red-40: #ed4251; + --Main-Red-50: #e32034; + --Main-Red-60: #cd0921; + --Main-Red-70: #ad0015; + --Main-Red-80: #8d0011; + --Main-Red-90: #6d000d; + --Main-Red-100: #4d001b; + --Main-Scandic-00: #edf7f7; + --Main-Scandic-10: #c5e3e5; + --Main-Scandic-20: #97d3d9; + --Main-Scandic-30: #74cbd2; + --Main-Scandic-40: #53c3cc; + --Main-Scandic-50: #26a7b2; + --Main-Scandic-60: #00838e; + --Main-Scandic-70: #055b62; + --Main-Scandic-80: #08393d; + --Main-Scandic-90: #082022; + --Main-Scandic-100: #061112; + --Main-Yellow-00: #fff8e3; + --Main-Yellow-10: #fff0c2; + --Main-Yellow-20: #fade89; + --Main-Yellow-30: #f7ce52; + --Main-Yellow-40: #edb532; + --Main-Yellow-50: #e59515; + --Main-Yellow-60: #d17308; + --Main-Yellow-70: #a85211; + --Main-Yellow-80: #7d370f; + --Main-Yellow-90: #4f2313; + --Main-Yellow-100: #301508; +} diff --git a/packages/design-system/lib/styles/tokens.css b/packages/design-system/lib/styles/tokens.css new file mode 100644 index 000000000..53ffe89ef --- /dev/null +++ b/packages/design-system/lib/styles/tokens.css @@ -0,0 +1,318 @@ +/* This file is generated, do not edit manually! */ +:root { + --Base-Background-Primary-Elevated: var(--Scandic-Beige-00); + --Base-Background-Primary-Normal: var(--Scandic-Beige-00); + --Base-Border-Hover: var(--Scandic-Peach-80); + --Base-Border-Inverted: var(--UI-Opacity-White-100); + --Base-Border-Normal: var(--Scandic-Beige-40); + --Base-Border-Subtle: var(--Scandic-Beige-20); + --Base-Button-Inverted-Border-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Inverted-Border-Hover: var(--UI-Opacity-White-0); + --Base-Button-Inverted-Border-Normal: var(--UI-Opacity-White-0); + --Base-Button-Inverted-Fill-Disabled: var(--UI-Grey-20); + --Base-Button-Inverted-Fill-Hover: var(--Scandic-Beige-10); + --Base-Button-Inverted-Fill-Hover-alt: var(--Scandic-Peach-10); + --Base-Button-Inverted-Fill-Normal: var(--UI-Opacity-White-100); + --Base-Button-Inverted-On-Fill-Disabled: var(--UI-Grey-40); + --Base-Button-Inverted-On-Fill-Hover: var(--Scandic-Red-90); + --Base-Button-Inverted-On-Fill-Normal: var(--Scandic-Red-100); + --Base-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Base-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Base-Button-Primary-Fill-Disabled: var(--UI-Grey-20); + --Base-Button-Primary-Fill-Hover: var(--Scandic-Red-70); + --Base-Button-Primary-Fill-Normal: var(--Scandic-Red-60); + --Base-Button-Primary-On-Fill-Disabled: var(--UI-Grey-40); + --Base-Button-Primary-On-Fill-Hover: var(--UI-Opacity-White-100); + --Base-Button-Primary-On-Fill-Normal: var(--UI-Opacity-White-100); + --Base-Button-Secondary-Border-Disabled: var(--UI-Grey-30); + --Base-Button-Secondary-Border-Hover: var(--Scandic-Peach-80); + --Base-Button-Secondary-Border-Normal: var(--Scandic-Red-100); + --Base-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Base-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Base-Button-Secondary-On-Fill-Disabled: var(--UI-Grey-40); + --Base-Button-Secondary-On-Fill-Hover: var(--Scandic-Peach-80); + --Base-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100); + --Base-Button-Tertiary-Border-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Tertiary-Border-Hover: var(--UI-Opacity-White-0); + --Base-Button-Tertiary-Border-Normal: var(--UI-Opacity-White-0); + --Base-Button-Tertiary-Fill-Disabled: var(--UI-Grey-20); + --Base-Button-Tertiary-Fill-Hover: var(--Scandic-Red-90); + --Base-Button-Tertiary-Fill-Normal: var(--Scandic-Red-100); + --Base-Button-Tertiary-On-Fill-Disabled: var(--UI-Grey-40); + --Base-Button-Tertiary-On-Fill-Hover: var(--UI-Opacity-White-100); + --Base-Button-Tertiary-On-Fill-Normal: var(--UI-Opacity-White-100); + --Base-Button-Text-Border-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Text-Border-Hover: var(--UI-Opacity-White-0); + --Base-Button-Text-Border-Normal: var(--UI-Opacity-White-0); + --Base-Button-Text-Fill-Disabled: var(--UI-Opacity-White-0); + --Base-Button-Text-Fill-Hover: var(--UI-Opacity-White-0); + --Base-Button-Text-Fill-Normal: var(--UI-Opacity-White-0); + --Base-Button-Text-On-Fill-Disabled: var(--UI-Grey-40); + --Base-Button-Text-On-Fill-Hover: var(--Scandic-Peach-80); + --Base-Button-Text-On-Fill-Normal: var(--Scandic-Red-100); + --Base-Icon-Low-contrast: var(--Scandic-Peach-70); + --Base-Interactive-Surface-Primary-normal: var(--Scandic-Red-80); + --Base-Interactive-Surface-Secondary-normal: var(--Scandic-Green-70); + --Base-Interactive-Surface-Tertiary-normal: var(--Scandic-Blue-60); + --Base-Surface-Primary-dark-Hover: var(--Scandic-Peach-20); + --Base-Surface-Primary-dark-Normal: var(--Scandic-Peach-10); + --Base-Surface-Primary-light-Hover: var(--UI-Grey-00); + --Base-Surface-Primary-light-Hover-alt: var(--Scandic-Beige-10); + --Base-Surface-Primary-light-Normal: var(--UI-Opacity-White-100); + --Base-Surface-Secondary-light-Hover: var(--Scandic-Peach-10); + --Base-Surface-Secondary-light-Hover-alt: var(--Scandic-Peach-20); + --Base-Surface-Secondary-light-Normal: var(--Scandic-Beige-00); + --Base-Surface-Subtle-Hover: var(--Scandic-Beige-20); + --Base-Surface-Subtle-Normal: var(--Scandic-Beige-10); + --Base-Text-Accent: var(--Scandic-Red-60); + --Base-Text-Disabled: var(--UI-Grey-40); + --Base-Text-High-contrast: var(--Scandic-Red-100); + --Base-Text-Inverted: var(--UI-Opacity-White-100); + --Base-Text-Medium-contrast: var(--Scandic-Peach-80); + --Primary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-20); + --Primary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Peach-20); + --Primary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Peach-10); + --Primary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-30); + --Primary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Red-80); + --Primary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Red-100); + --Primary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20); + --Primary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Peach-30); + --Primary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Peach-10); + --Primary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Primary-Dark-Button-Secondary-On-Fill-Disabled: var(--UI-Opacity-White-30); + --Primary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Peach-30); + --Primary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Peach-10); + --Primary-Dark-On-Surface-Accent: var(--Scandic-Peach-50); + --Primary-Dark-On-Surface-Divider: var(--Scandic-Peach-80); + --Primary-Dark-On-Surface-Text: var(--Scandic-Peach-10); + --Primary-Dark-Surface-Hover: var(--Scandic-Red-90); + --Primary-Dark-Surface-Normal: var(--Scandic-Red-100); + --Primary-Dim-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Primary-Fill-Disabled: var(--UI-Opacity-Almost-Black-10); + --Primary-Dim-Button-Primary-Fill-Hover: var(--Scandic-Red-80); + --Primary-Dim-Button-Primary-Fill-Normal: var(--Scandic-Red-100); + --Primary-Dim-Button-Primary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Dim-Button-Primary-On-Fill-Hover: var(--Scandic-Peach-30); + --Primary-Dim-Button-Primary-On-Fill-Normal: var(--Scandic-Peach-10); + --Primary-Dim-Button-Secondary-Border-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Dim-Button-Secondary-Border-Hover: var(--Scandic-Red-80); + --Primary-Dim-Button-Secondary-Border-Normal: var(--Scandic-Red-100); + --Primary-Dim-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Primary-Dim-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Dim-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-80); + --Primary-Dim-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100); + --Primary-Dim-On-Surface-Accent: var(--Scandic-Peach-80); + --Primary-Dim-On-Surface-Divider: var(--Scandic-Peach-40); + --Primary-Dim-On-Surface-Text: var(--Scandic-Red-100); + --Primary-Dim-Surface-Hover: var(--Scandic-Peach-40); + --Primary-Dim-Surface-Normal: var(--Scandic-Peach-30); + --Primary-Light-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Primary-Light-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Primary-Light-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Primary-Light-Button-Primary-Fill-Disabled: var( + --UI-Opacity-Almost-Black-10 + ); + --Primary-Light-Button-Primary-Fill-Hover: var(--Scandic-Red-80); + --Primary-Light-Button-Primary-Fill-Normal: var(--Scandic-Red-100); + --Primary-Light-Button-Primary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Peach-30); + --Primary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Peach-10); + --Primary-Light-Button-Secondary-Border-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Light-Button-Secondary-Border-Hover: var(--Scandic-Red-80); + --Primary-Light-Button-Secondary-Border-Normal: var(--Scandic-Red-100); + --Primary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Primary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Primary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Primary-Light-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Primary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-80); + --Primary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Red-100); + --Primary-Light-On-Surface-Accent: var(--Scandic-Red-60); + --Primary-Light-On-Surface-Divider: var(--Scandic-Peach-30); + --Primary-Light-On-Surface-Divider-subtle: var(--Scandic-Beige-10); + --Primary-Light-On-Surface-Text: var(--Scandic-Red-100); + --Primary-Light-Surface-Hover: var(--Scandic-Peach-20); + --Primary-Light-Surface-Normal: var(--Scandic-Peach-10); + --Primary-Strong-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-20); + --Primary-Strong-Button-Primary-Fill-Hover: var(--Scandic-Red-00); + --Primary-Strong-Button-Primary-Fill-Normal: var(--UI-Opacity-White-100); + --Primary-Strong-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20); + --Primary-Strong-Button-Primary-On-Fill-Hover: var(--Scandic-Red-70); + --Primary-Strong-Button-Primary-On-Fill-Normal: var(--Scandic-Red-70); + --Primary-Strong-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20); + --Primary-Strong-Button-Secondary-Border-Hover: var(--Scandic-Peach-00); + --Primary-Strong-Button-Secondary-Border-Normal: var(--UI-Opacity-White-100); + --Primary-Strong-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Primary-Strong-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-White-20 + ); + --Primary-Strong-Button-Secondary-On-Fill-Hover: var(--Scandic-Red-00); + --Primary-Strong-Button-Secondary-On-Fill-Normal: var(--UI-Opacity-White-100); + --Primary-Strong-On-Surface-Accent: var(--Scandic-Peach-10); + --Primary-Strong-On-Surface-Divider: var(--Scandic-Red-70); + --Primary-Strong-On-Surface-Text: var(--UI-Opacity-White-100); + --Primary-Strong-Surface-Hover: var(--Scandic-Red-70); + --Primary-Strong-Surface-Normal: var(--Scandic-Red-60); + --Secondary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-10); + --Secondary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Green-30); + --Secondary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Green-20); + --Secondary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20); + --Secondary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Green-80); + --Secondary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Green-90); + --Secondary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20); + --Secondary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Green-30); + --Secondary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Green-20); + --Secondary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Secondary-Dark-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-White-20 + ); + --Secondary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Green-30); + --Secondary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Green-20); + --Secondary-Dark-On-Surface-Accent: var(--Scandic-Green-40); + --Secondary-Dark-On-Surface-Divider: var(--Scandic-Green-80); + --Secondary-Dark-On-Surface-Text: var(--Scandic-Green-20); + --Secondary-Dark-Surface-Hover: var(--Scandic-Green-80); + --Secondary-Dark-Surface-Normal: var(--Scandic-Green-90); + --Secondary-Light-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Primary-Fill-Disabled: var( + --UI-Opacity-Almost-Black-10 + ); + --Secondary-Light-Button-Primary-Fill-Hover: var(--Scandic-Green-80); + --Secondary-Light-Button-Primary-Fill-Normal: var(--Scandic-Green-90); + --Secondary-Light-Button-Primary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Secondary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Green-30); + --Secondary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Green-20); + --Secondary-Light-Button-Secondary-Border-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Secondary-Light-Button-Secondary-Border-Hover: var(--Scandic-Green-80); + --Secondary-Light-Button-Secondary-Border-Normal: var(--Scandic-Green-90); + --Secondary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Secondary-Light-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Secondary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Green-80); + --Secondary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Green-90); + --Secondary-Light-On-Surface-Accent: var(--Scandic-Green-50); + --Secondary-Light-On-Surface-Divider: var(--Scandic-Green-30); + --Secondary-Light-On-Surface-Text: var(--Scandic-Green-90); + --Secondary-Light-Surface-Hover: var(--Scandic-Green-20); + --Secondary-Light-Surface-Normal: var(--Scandic-Green-20); + --Tertiary-Dark-Button-Primary-Border-Disabled: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Primary-Border-Hover: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Primary-Border-Normal: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Primary-Fill-Disabled: var(--UI-Opacity-White-10); + --Tertiary-Dark-Button-Primary-Fill-Hover: var(--Scandic-Yellow-20); + --Tertiary-Dark-Button-Primary-Fill-Normal: var(--Scandic-Yellow-10); + --Tertiary-Dark-Button-Primary-On-Fill-Disabled: var(--UI-Opacity-White-20); + --Tertiary-Dark-Button-Primary-On-Fill-Hover: var(--Scandic-Blue-80); + --Tertiary-Dark-Button-Primary-On-Fill-Normal: var(--Scandic-Blue-100); + --Tertiary-Dark-Button-Secondary-Border-Disabled: var(--UI-Opacity-White-20); + --Tertiary-Dark-Button-Secondary-Border-Hover: var(--Scandic-Yellow-20); + --Tertiary-Dark-Button-Secondary-Border-Normal: var(--Scandic-Yellow-10); + --Tertiary-Dark-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Tertiary-Dark-Button-Secondary-On-Fill-Disabled: var(--UI-Opacity-White-20); + --Tertiary-Dark-Button-Secondary-On-Fill-Hover: var(--Scandic-Yellow-20); + --Tertiary-Dark-Button-Secondary-On-Fill-Normal: var(--Scandic-Yellow-10); + --Tertiary-Dark-On-Surface-Accent: var(--Scandic-Blue-40); + --Tertiary-Dark-On-Surface-Divider: var(--Scandic-Blue-80); + --Tertiary-Dark-On-Surface-Text: var(--Scandic-Yellow-10); + --Tertiary-Dark-Surface-Hover: var(--Scandic-Blue-90); + --Tertiary-Dark-Surface-Normal: var(--Scandic-Blue-100); + --Tertiary-Light-Button-Primary-Border-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Tertiary-Light-Button-Primary-Border-Hover: var(--Scandic-Yellow-00); + --Tertiary-Light-Button-Primary-Border-Normal: var(--Scandic-Yellow-10); + --Tertiary-Light-Button-Primary-Fill-Disabled: var( + --UI-Opacity-Almost-Black-10 + ); + --Tertiary-Light-Button-Primary-Fill-Hover: var(--Scandic-Blue-90); + --Tertiary-Light-Button-Primary-Fill-Normal: var(--Scandic-Blue-100); + --Tertiary-Light-Button-Primary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Tertiary-Light-Button-Primary-On-Fill-Hover: var(--Scandic-Yellow-00); + --Tertiary-Light-Button-Primary-On-Fill-Normal: var(--Scandic-Yellow-10); + --Tertiary-Light-Button-Secondary-Border-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Tertiary-Light-Button-Secondary-Border-Hover: var(--Scandic-Blue-90); + --Tertiary-Light-Button-Secondary-Border-Normal: var(--Scandic-Blue-100); + --Tertiary-Light-Button-Secondary-Fill-Disabled: var(--UI-Opacity-White-0); + --Tertiary-Light-Button-Secondary-Fill-Hover: var(--UI-Opacity-White-0); + --Tertiary-Light-Button-Secondary-Fill-Normal: var(--UI-Opacity-White-0); + --Tertiary-Light-Button-Secondary-On-Fill-Disabled: var( + --UI-Opacity-Almost-Black-20 + ); + --Tertiary-Light-Button-Secondary-On-Fill-Hover: var(--Scandic-Blue-90); + --Tertiary-Light-Button-Secondary-On-Fill-Normal: var(--Scandic-Blue-100); + --Tertiary-Light-On-Surface-Accent: var(--Scandic-Yellow-50); + --Tertiary-Light-On-Surface-Divider: var(--Scandic-Yellow-20); + --Tertiary-Light-On-Surface-Text: var(--Scandic-Blue-100); + --Tertiary-Light-Surface-Hover: var(--Scandic-Yellow-00); + --Tertiary-Light-Surface-Normal: var(--Scandic-Yellow-10); + --UI-Input-Controls-Border-Disabled: var(--UI-Grey-40); + --UI-Input-Controls-Border-Error: var(--Scandic-Red-70); + --UI-Input-Controls-Border-Focus: var(--Scandic-Blue-80); + --UI-Input-Controls-Border-Hover: var(--Scandic-Beige-70); + --UI-Input-Controls-Border-KeyboardFocus: var(--Scandic-Blue-50); + --UI-Input-Controls-Border-Normal: var(--Scandic-Beige-50); + --UI-Input-Controls-Fill-Disabled: var(--UI-Grey-60); + --UI-Input-Controls-Fill-Normal: var(--UI-Opacity-White-100); + --UI-Input-Controls-Fill-Selected: var(--Scandic-Blue-80); + --UI-Input-Controls-Fill-Selected-hover: var(--Scandic-Blue-70); + --UI-Input-Controls-On-Fill-Normal: var(--UI-Opacity-White-100); + --UI-Input-Controls-Surface-Disabled: var(--UI-Grey-10); + --UI-Input-Controls-Surface-Hover: var(--Scandic-Beige-10); + --UI-Input-Controls-Surface-Normal: var(--UI-Opacity-White-100); + --UI-Semantic-Error: var(--Scandic-Red-70); + --UI-Semantic-Information: var(--Scandic-Blue-70); + --UI-Semantic-Success: var(--Scandic-Green-60); + --UI-Semantic-Warning: var(--Scandic-Yellow-60); + --UI-Text-Active: var(--Scandic-Blue-90); + --UI-Text-Error: var(--Scandic-Red-70); + --UI-Text-High-contrast: var(--UI-Grey-100); + --UI-Text-Medium-contrast: var(--UI-Grey-80); + --UI-Text-Placeholder: var(--UI-Grey-60); +} diff --git a/packages/design-system/lib/styles/typography.css b/packages/design-system/lib/styles/typography.css new file mode 100644 index 000000000..d811833af --- /dev/null +++ b/packages/design-system/lib/styles/typography.css @@ -0,0 +1,217 @@ +/* This file is generated, do not edit manually! */ +:root { + --typography-Body-Bold-Desktop-fontSize: 16px; + --typography-Body-Bold-fontFamily: 'fira sans'; + --typography-Body-Bold-fontSize: 16px; + --typography-Body-Bold-fontWeight: 'medium'; + --typography-Body-Bold-letterSpacing: 1.2000000476837158%; + --typography-Body-Bold-lineHeight: 150%; + --typography-Body-Bold-Mobile-fontSize: 16px; + --typography-Body-Bold-Tablet-estimate-fontSize: 16px; + --typography-Body-Bold-textCase: 'original'; + --typography-Body-Bold-textDecoration: 'none'; + --typography-Body-Inline-Desktop-fontSize: 16px; + --typography-Body-Inline-fontFamily: 'fira sans'; + --typography-Body-Inline-fontSize: 16px; + --typography-Body-Inline-fontWeight: 'regular'; + --typography-Body-Inline-letterSpacing: 1.2000000476837158%; + --typography-Body-Inline-lineHeight: 150%; + --typography-Body-Inline-Mobile-fontSize: 16px; + --typography-Body-Inline-Tablet-estimate-fontSize: 16px; + --typography-Body-Inline-textCase: 'original'; + --typography-Body-Inline-textDecoration: 'underline'; + --typography-Body-Link-Desktop-fontSize: 16px; + --typography-Body-Link-Mobile-fontSize: 16px; + --typography-Body-Link-Tablet-estimate-fontSize: 16px; + --typography-Body-Regular-Desktop-fontSize: 16px; + --typography-Body-Regular-fontFamily: 'fira sans'; + --typography-Body-Regular-fontSize: 16px; + --typography-Body-Regular-fontWeight: 'regular'; + --typography-Body-Regular-letterSpacing: 1.2000000476837158%; + --typography-Body-Regular-lineHeight: 150%; + --typography-Body-Regular-Mobile-fontSize: 16px; + --typography-Body-Regular-Tablet-estimate-fontSize: 16px; + --typography-Body-Regular-textCase: 'original'; + --typography-Body-Regular-textDecoration: 'none'; + --typography-Body-Underline-fontFamily: 'fira sans'; + --typography-Body-Underline-fontSize: 16px; + --typography-Body-Underline-fontWeight: 'medium'; + --typography-Body-Underline-letterSpacing: 1.2000000476837158%; + --typography-Body-Underline-lineHeight: 150%; + --typography-Body-Underline-textCase: 'original'; + --typography-Body-Underline-textDecoration: 'underline'; + --typography-Caption-Bold-Desktop-fontSize: 14px; + --typography-Caption-Bold-fontFamily: 'fira sans'; + --typography-Caption-Bold-fontSize: 14px; + --typography-Caption-Bold-fontWeight: 'medium'; + --typography-Caption-Bold-letterSpacing: 1.399999976158142%; + --typography-Caption-Bold-lineHeight: 139.9999976158142%; + --typography-Caption-Bold-Mobile-fontSize: 14px; + --typography-Caption-Bold-Tablet-estimate-fontSize: 14px; + --typography-Caption-Bold-textCase: 'original'; + --typography-Caption-Bold-textDecoration: 'none'; + --typography-Caption-Inline-Desktop-fontSize: 14px; + --typography-Caption-Inline-fontFamily: 'fira sans'; + --typography-Caption-Inline-fontSize: 14px; + --typography-Caption-Inline-fontWeight: 'regular'; + --typography-Caption-Inline-letterSpacing: 1.399999976158142%; + --typography-Caption-Inline-lineHeight: 139.9999976158142%; + --typography-Caption-Inline-Mobile-fontSize: 14px; + --typography-Caption-Inline-Tablet-estimate-fontSize: 14px; + --typography-Caption-Inline-textCase: 'original'; + --typography-Caption-Inline-textDecoration: 'underline'; + --typography-Caption-Labels-fontFamily: 'brandon text'; + --typography-Caption-Labels-fontSize: 14px; + --typography-Caption-Labels-fontWeight: 'bold'; + --typography-Caption-Labels-letterSpacing: 1.399999976158142%; + --typography-Caption-Labels-lineHeight: 150%; + --typography-Caption-Labels-textCase: 'upper'; + --typography-Caption-Labels-textDecoration: 'none'; + --typography-Caption-Link-Desktop-fontSize: 14px; + --typography-Caption-Link-Mobile-fontSize: 14px; + --typography-Caption-Link-Tablet-estimate-fontSize: 14px; + --typography-Caption-Regular-Desktop-fontSize: 14px; + --typography-Caption-Regular-fontFamily: 'fira sans'; + --typography-Caption-Regular-fontSize: 14px; + --typography-Caption-Regular-fontWeight: 'regular'; + --typography-Caption-Regular-letterSpacing: 1.399999976158142%; + --typography-Caption-Regular-lineHeight: 139.9999976158142%; + --typography-Caption-Regular-Mobile-fontSize: 14px; + --typography-Caption-Regular-Tablet-estimate-fontSize: 14px; + --typography-Caption-Regular-textCase: 'original'; + --typography-Caption-Regular-textDecoration: 'none'; + --typography-Caption-Underline-fontFamily: 'fira sans'; + --typography-Caption-Underline-fontSize: 14px; + --typography-Caption-Underline-fontWeight: 'medium'; + --typography-Caption-Underline-letterSpacing: 1.399999976158142%; + --typography-Caption-Underline-lineHeight: 139.9999976158142%; + --typography-Caption-Underline-textCase: 'original'; + --typography-Caption-Underline-textDecoration: 'underline'; + --typography-Foot-note-Bold-Desktop-fontSize: 12px; + --typography-Foot-note-Bold-Mobile-fontSize: 12px; + --typography-Foot-note-Bold-Tablet-estimate-fontSize: 12px; + --typography-Foot-note-Regular-Desktop-fontSize: 12px; + --typography-Foot-note-Regular-Mobile-fontSize: 12px; + --typography-Foot-note-Regular-Tablet-estimate-fontSize: 12px; + --typography-Footnote-Bold-fontFamily: 'fira sans'; + --typography-Footnote-Bold-fontSize: 12px; + --typography-Footnote-Bold-fontWeight: 'medium'; + --typography-Footnote-Bold-letterSpacing: 1.399999976158142%; + --typography-Footnote-Bold-lineHeight: 150%; + --typography-Footnote-Bold-textCase: 'original'; + --typography-Footnote-Bold-textDecoration: 'none'; + --typography-Footnote-Labels-fontFamily: 'brandon text'; + --typography-Footnote-Labels-fontSize: 12px; + --typography-Footnote-Labels-fontWeight: 'bold'; + --typography-Footnote-Labels-letterSpacing: 1.399999976158142%; + --typography-Footnote-Labels-lineHeight: 150%; + --typography-Footnote-Labels-textCase: 'upper'; + --typography-Footnote-Labels-textDecoration: 'none'; + --typography-Footnote-Regular-fontFamily: 'fira sans'; + --typography-Footnote-Regular-fontSize: 12px; + --typography-Footnote-Regular-fontWeight: 'regular'; + --typography-Footnote-Regular-letterSpacing: 1.399999976158142%; + --typography-Footnote-Regular-lineHeight: 150%; + --typography-Footnote-Regular-textCase: 'original'; + --typography-Footnote-Regular-textDecoration: 'none'; + --typography-Preamble-Desktop-fontSize: 20px; + --typography-Preamble-fontFamily: 'fira sans'; + --typography-Preamble-fontSize: 20px; + --typography-Preamble-fontWeight: 'regular'; + --typography-Preamble-letterSpacing: 1%; + --typography-Preamble-lineHeight: 139.9999976158142%; + --typography-Preamble-Mobile-fontSize: 18px; + --typography-Preamble-Tablet-estimate-fontSize: 19px; + --typography-Preamble-textCase: 'original'; + --typography-Preamble-textDecoration: 'none'; + --typography-Script-1-Desktop-fontSize: 32px; + --typography-Script-1-fontFamily: 'biro script plus'; + --typography-Script-1-fontSize: 32px; + --typography-Script-1-fontWeight: 'regular'; + --typography-Script-1-letterSpacing: 2%; + --typography-Script-1-lineHeight: 110.00000238418579%; + --typography-Script-1-Mobile-fontSize: 24px; + --typography-Script-1-Tablet-estimate-fontSize: 29px; + --typography-Script-1-textCase: 'original'; + --typography-Script-1-textDecoration: 'none'; + --typography-Script-2-Desktop-fontSize: 24px; + --typography-Script-2-fontFamily: 'biro script plus'; + --typography-Script-2-fontSize: 24px; + --typography-Script-2-fontWeight: 'regular'; + --typography-Script-2-letterSpacing: 2%; + --typography-Script-2-lineHeight: 110.00000238418579%; + --typography-Script-2-Mobile-fontSize: 20px; + --typography-Script-2-Tablet-estimate-fontSize: 22px; + --typography-Script-2-textCase: 'original'; + --typography-Script-2-textDecoration: 'none'; + --typography-Subtitle-1-Desktop-fontSize: 24px; + --typography-Subtitle-1-fontFamily: 'fira sans'; + --typography-Subtitle-1-fontSize: 24px; + --typography-Subtitle-1-fontWeight: 'medium'; + --typography-Subtitle-1-letterSpacing: 1%; + --typography-Subtitle-1-lineHeight: 120.00000476837158%; + --typography-Subtitle-1-Mobile-fontSize: 20px; + --typography-Subtitle-1-Tablet-estimate-fontSize: 22px; + --typography-Subtitle-1-textCase: 'original'; + --typography-Subtitle-1-textDecoration: 'none'; + --typography-Subtitle-2-Desktop-fontSize: 20px; + --typography-Subtitle-2-fontFamily: 'fira sans'; + --typography-Subtitle-2-fontSize: 20px; + --typography-Subtitle-2-fontWeight: 'medium'; + --typography-Subtitle-2-letterSpacing: 1%; + --typography-Subtitle-2-lineHeight: 120.00000476837158%; + --typography-Subtitle-2-Mobile-fontSize: 18px; + --typography-Subtitle-2-Tablet-estimate-fontSize: 19px; + --typography-Subtitle-2-textCase: 'original'; + --typography-Subtitle-2-textDecoration: 'none'; + --typography-Title-1-Desktop-fontSize: 64px; + --typography-Title-1-fontFamily: 'brandon text'; + --typography-Title-1-fontSize: 64px; + --typography-Title-1-fontWeight: 'black'; + --typography-Title-1-letterSpacing: 0.25%; + --typography-Title-1-lineHeight: 110.00000238418579%; + --typography-Title-1-Mobile-fontSize: 48px; + --typography-Title-1-Tablet-estimate-fontSize: 60px; + --typography-Title-1-textCase: 'upper'; + --typography-Title-1-textDecoration: 'none'; + --typography-Title-2-Desktop-fontSize: 48px; + --typography-Title-2-fontFamily: 'brandon text'; + --typography-Title-2-fontSize: 48px; + --typography-Title-2-fontWeight: 'black'; + --typography-Title-2-letterSpacing: 0.25%; + --typography-Title-2-lineHeight: 110.00000238418579%; + --typography-Title-2-Mobile-fontSize: 36px; + --typography-Title-2-Tablet-estimate-fontSize: 44px; + --typography-Title-2-textCase: 'upper'; + --typography-Title-2-textDecoration: 'none'; + --typography-Title-3-Desktop-fontSize: 36px; + --typography-Title-3-fontFamily: 'brandon text'; + --typography-Title-3-fontSize: 36px; + --typography-Title-3-fontWeight: 'black'; + --typography-Title-3-letterSpacing: 0.25%; + --typography-Title-3-lineHeight: 110.00000238418579%; + --typography-Title-3-Mobile-fontSize: 30px; + --typography-Title-3-Tablet-estimate-fontSize: 34px; + --typography-Title-3-textCase: 'upper'; + --typography-Title-3-textDecoration: 'none'; + --typography-Title-4-Desktop-fontSize: 28px; + --typography-Title-4-fontFamily: 'brandon text'; + --typography-Title-4-fontSize: 28px; + --typography-Title-4-fontWeight: 'bold'; + --typography-Title-4-letterSpacing: 0.25%; + --typography-Title-4-lineHeight: 110.00000238418579%; + --typography-Title-4-Mobile-fontSize: 24px; + --typography-Title-4-Tablet-estimate-fontSize: 26px; + --typography-Title-4-textCase: 'original'; + --typography-Title-4-textDecoration: 'none'; + --typography-Title-5-Desktop-fontSize: 24px; + --typography-Title-5-fontFamily: 'brandon text'; + --typography-Title-5-fontSize: 24px; + --typography-Title-5-fontWeight: 'black'; + --typography-Title-5-letterSpacing: 0.25%; + --typography-Title-5-lineHeight: 110.00000238418579%; + --typography-Title-5-Mobile-fontSize: 20px; + --typography-Title-5-Tablet-estimate-fontSize: 21px; + --typography-Title-5-textCase: 'upper'; + --typography-Title-5-textDecoration: 'none'; +} diff --git a/packages/design-system/lib/types/index.ts b/packages/design-system/lib/types/index.ts new file mode 100644 index 000000000..f2a68d864 --- /dev/null +++ b/packages/design-system/lib/types/index.ts @@ -0,0 +1,32 @@ +import { VariantProps } from 'class-variance-authority' + +// This will exclude null as values for the given keys +export type NoNullVariant = Omit< + Variant, + Keys +> & { + [Property in Keys]: Exclude +} + +// This is NoNullVariant but also requiring given keys in the variant +// It will exclude null and require the given keys +export type RequireVariant = Omit< + Variant, + Keys +> & + Required<{ + [Property in Keys]: Exclude + }> + +export type ComponentProps< + BaseProps, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + Variants extends (...args: any) => any, + RequiredKeys extends keyof VariantProps = never, + NoNullKeys extends Exclude< + keyof VariantProps, + RequiredKeys + > = never, +> = BaseProps & + RequireVariant, RequiredKeys> & + NoNullVariant, NoNullKeys> diff --git a/packages/design-system/lib/utils.test.ts b/packages/design-system/lib/utils.test.ts new file mode 100644 index 000000000..e7b6ad40a --- /dev/null +++ b/packages/design-system/lib/utils.test.ts @@ -0,0 +1,61 @@ +import { describe, test, expect } from 'vitest' + +import { capitalizeFirstLetter, sortObjectByKey } from './utils' + +describe('sortObjectByKey', () => { + test('sorts object keys alphabetically', () => { + const obj = { b: 2, a: 1, c: 3 } + const sortedObj = sortObjectByKey(obj) + expect(sortedObj).toEqual({ a: 1, b: 2, c: 3 }) + }) + + test('handles empty object', () => { + const obj = {} + const sortedObj = sortObjectByKey(obj) + expect(sortedObj).toEqual({}) + }) + + test('keeps object keys in original order if already sorted', () => { + const obj = { a: 1, b: 2, c: 3 } + const sortedObj = sortObjectByKey(obj) + expect(sortedObj).toEqual({ a: 1, b: 2, c: 3 }) + }) + + test('sorts object keys in reverse alphabetical order', () => { + const obj = { z: 1, b: 2, a: 3 } + const sortedObj = sortObjectByKey(obj) + expect(sortedObj).toEqual({ a: 3, b: 2, z: 1 }) + }) + + test('sorts object keys in natural order', () => { + const sortedObj1 = sortObjectByKey({ + 'ScandicRed-100': 1, + 'ScandicRed-20': 1, + 'ScandicRed-40': 1, + 'ScandicRed-10': 1, + 'Grey-80': 1, + }) + + expect(Object.keys(sortedObj1)).toEqual([ + 'Grey-80', + 'ScandicRed-10', + 'ScandicRed-20', + 'ScandicRed-40', + 'ScandicRed-100', + ]) + }) +}) + +describe('capitalizeFirstLetter function', () => { + test('capitalizes the first letter of a string', () => { + expect(capitalizeFirstLetter('hello')).toBe('Hello') + }) + + test('does not change an empty string', () => { + expect(capitalizeFirstLetter('')).toBe('') + }) + + test('does not change a string already starting with an uppercase letter', () => { + expect(capitalizeFirstLetter('World')).toBe('World') + }) +}) diff --git a/packages/design-system/lib/utils.ts b/packages/design-system/lib/utils.ts new file mode 100644 index 000000000..bcd5db169 --- /dev/null +++ b/packages/design-system/lib/utils.ts @@ -0,0 +1,19 @@ +import { orderBy } from 'natural-orderby' + +export function sortObjectByKey( + obj: Record, +): Record { + const sortedKeys = orderBy(Object.keys(obj)) + + const sortedObj: Record = {} + + sortedKeys.forEach((key) => { + sortedObj[key] = obj[key] + }) + + return sortedObj +} + +export function capitalizeFirstLetter(str: string): string { + return str.charAt(0).toUpperCase() + str.slice(1) +} diff --git a/packages/design-system/lib/variables.json b/packages/design-system/lib/variables.json new file mode 100644 index 000000000..a7b99bc2c --- /dev/null +++ b/packages/design-system/lib/variables.json @@ -0,0 +1,5271 @@ +{ + "version": "1.0.4", + "metadata": {}, + "collections": [ + { + "name": "Spacing", + "modes": [ + { + "name": "Mode 1", + "variables": [ + { + "name": "x0", + "type": "number", + "isAlias": false, + "value": 0 + }, + { + "name": "x025", + "type": "number", + "isAlias": false, + "value": 2 + }, + { + "name": "x05", + "type": "number", + "isAlias": false, + "value": 4 + }, + { + "name": "x1", + "type": "number", + "isAlias": false, + "value": 8 + }, + { + "name": "x15", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "x2", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "x3", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "x4", + "type": "number", + "isAlias": false, + "value": 32 + }, + { + "name": "x5", + "type": "number", + "isAlias": false, + "value": 40 + }, + { + "name": "x6", + "type": "number", + "isAlias": false, + "value": 48 + }, + { + "name": "x7", + "type": "number", + "isAlias": false, + "value": 56 + }, + { + "name": "x9", + "type": "number", + "isAlias": false, + "value": 72 + } + ] + } + ] + }, + { + "name": "Corner radius", + "modes": [ + { + "name": "Mode 1", + "variables": [ + { + "name": "Small", + "type": "number", + "isAlias": false, + "value": 4 + }, + { + "name": "Medium", + "type": "number", + "isAlias": false, + "value": 8 + }, + { + "name": "Large", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "xLarge", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Rounded", + "type": "number", + "isAlias": false, + "value": 250 + } + ] + } + ] + }, + { + "name": "Color tokens", + "modes": [ + { + "name": "Scandic", + "variables": [ + { + "name": "Base/Background/Primary/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/00" + } + }, + { + "name": "Base/Background/Primary/Elevated", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/00" + } + }, + { + "name": "Base/Surface/Primary light/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Surface/Primary dark/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Base/Surface/Secondary light/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/00" + } + }, + { + "name": "Base/Surface/Secondary light/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Base/Surface/Secondary light/Hover-alt", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/20" + } + }, + { + "name": "Base/Surface/Primary dark/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/20" + } + }, + { + "name": "Base/Surface/Primary light/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/00" + } + }, + { + "name": "Base/Surface/Primary light/Hover-alt", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/10" + } + }, + { + "name": "Base/Surface/Subtle/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/10" + } + }, + { + "name": "Base/Surface/Subtle/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/20" + } + }, + { + "name": "Base/Text/High-contrast", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Icon/Low-contrast", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/70" + } + }, + { + "name": "Base/Text/Medium-contrast", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Base/Text/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/60" + } + }, + { + "name": "Base/Text/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Text/Inverted", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/40" + } + }, + { + "name": "Base/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Base/Border/Subtle", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/20" + } + }, + { + "name": "Base/Border/Inverted", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/60" + } + }, + { + "name": "Base/Interactive/Surface/Primary/normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Base/Interactive/Surface/Secondary/normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/70" + } + }, + { + "name": "Base/Interactive/Surface/Tertiary/normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/60" + } + }, + { + "name": "Base/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "Base/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/20" + } + }, + { + "name": "Base/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Base/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Base/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/30" + } + }, + { + "name": "Base/Button/Tertiary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Button/Tertiary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/90" + } + }, + { + "name": "Base/Button/Tertiary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/20" + } + }, + { + "name": "Base/Button/Tertiary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Tertiary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Tertiary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Button/Tertiary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Tertiary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Tertiary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Inverted/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Base/Button/Inverted/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/10" + } + }, + { + "name": "Base/Button/Inverted/Fill/Hover-alt", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Base/Button/Inverted/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/20" + } + }, + { + "name": "Base/Button/Inverted/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Button/Inverted/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/90" + } + }, + { + "name": "Base/Button/Inverted/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Button/Inverted/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Inverted/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Inverted/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "UI/Text/High-contrast", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/100" + } + }, + { + "name": "UI/Input Controls/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "UI/Semantic/Information", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/70" + } + }, + { + "name": "UI/Semantic/Success", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/60" + } + }, + { + "name": "UI/Semantic/Warning", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/60" + } + }, + { + "name": "UI/Semantic/Error", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "UI/Input Controls/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/10" + } + }, + { + "name": "UI/Input Controls/Surface/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/10" + } + }, + { + "name": "UI/Input Controls/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "UI/Input Controls/Fill/Selected", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/80" + } + }, + { + "name": "UI/Input Controls/Fill/Selected-hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/70" + } + }, + { + "name": "UI/Input Controls/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/60" + } + }, + { + "name": "UI/Input Controls/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "UI/Input Controls/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/50" + } + }, + { + "name": "UI/Input Controls/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/70" + } + }, + { + "name": "UI/Input Controls/Border/Focus", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/80" + } + }, + { + "name": "UI/Input Controls/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "UI/Input Controls/Border/Error", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "UI/Input Controls/Border/KeyboardFocus", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/50" + } + }, + { + "name": "UI/Text/Medium-contrast", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/80" + } + }, + { + "name": "UI/Text/Active", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/90" + } + }, + { + "name": "UI/Text/Error", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "UI/Text/Placeholder", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/60" + } + }, + { + "name": "Primary Light/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Light/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/20" + } + }, + { + "name": "Primary Light/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Light/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/60" + } + }, + { + "name": "Primary Light/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Light/On Surface/Divider-subtle", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Beige/10" + } + }, + { + "name": "Primary Light/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Light/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Light/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/10" + } + }, + { + "name": "Primary Light/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Light/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Light/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Light/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Light/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Light/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Light/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Light/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Light/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Light/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Dim/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Dim/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/40" + } + }, + { + "name": "Primary Dim/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dim/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Primary Dim/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/40" + } + }, + { + "name": "Primary Dim/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dim/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Dim/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/10" + } + }, + { + "name": "Primary Dim/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Dim/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Dim/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Dim/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dim/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dim/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Dim/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Dim/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dim/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Dim/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Primary Strong/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/60" + } + }, + { + "name": "Primary Strong/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "Primary Strong/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Primary Strong/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Strong/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "Primary Strong/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Primary Strong/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/00" + } + }, + { + "name": "Primary Strong/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Primary Strong/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "Primary Strong/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/70" + } + }, + { + "name": "Primary Strong/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Primary Strong/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Strong/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Primary Strong/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/00" + } + }, + { + "name": "Primary Strong/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Primary Strong/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/100" + } + }, + { + "name": "Primary Strong/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/00" + } + }, + { + "name": "Primary Strong/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Primary Dark/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dark/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/90" + } + }, + { + "name": "Primary Dark/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Dark/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/50" + } + }, + { + "name": "Primary Dark/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Primary Dark/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Dark/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/20" + } + }, + { + "name": "Primary Dark/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Primary Dark/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Primary Dark/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/80" + } + }, + { + "name": "Primary Dark/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/30" + } + }, + { + "name": "Primary Dark/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Primary Dark/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Dark/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Dark/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/30" + } + }, + { + "name": "Primary Dark/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/10" + } + }, + { + "name": "Primary Dark/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/30" + } + }, + { + "name": "Primary Dark/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Secondary Light/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Dark/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Tertiary Light/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Light/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/00" + } + }, + { + "name": "Tertiary Light/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Light/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/50" + } + }, + { + "name": "Tertiary Light/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/20" + } + }, + { + "name": "Tertiary Light/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Light/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/90" + } + }, + { + "name": "Tertiary Light/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/10" + } + }, + { + "name": "Tertiary Light/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Light/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/00" + } + }, + { + "name": "Tertiary Light/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Tertiary Light/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Light/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/00" + } + }, + { + "name": "Tertiary Light/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Light/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Light/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/90" + } + }, + { + "name": "Tertiary Light/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/90" + } + }, + { + "name": "Tertiary Light/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Secondary Dark/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Dark/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Dark/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/40" + } + }, + { + "name": "Secondary Dark/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Dark/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Dark/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/30" + } + }, + { + "name": "Secondary Dark/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/10" + } + }, + { + "name": "Secondary Dark/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Secondary Dark/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Dark/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Secondary Dark/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Dark/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Dark/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/30" + } + }, + { + "name": "Secondary Dark/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/30" + } + }, + { + "name": "Secondary Dark/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Secondary Light/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Light/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Secondary Light/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/50" + } + }, + { + "name": "Secondary Light/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/30" + } + }, + { + "name": "Secondary Light/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Secondary Light/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Light/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/10" + } + }, + { + "name": "Secondary Light/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/20" + } + }, + { + "name": "Secondary Light/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/30" + } + }, + { + "name": "Secondary Light/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Secondary Light/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Secondary Light/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Secondary Light/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Light/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Secondary Light/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/90" + } + }, + { + "name": "Secondary Light/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Green/80" + } + }, + { + "name": "Secondary Light/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/Almost Black/20" + } + }, + { + "name": "Tertiary Dark/Surface/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Dark/Surface/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/90" + } + }, + { + "name": "Tertiary Dark/On Surface/Text", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Dark/On Surface/Accent", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/40" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/20" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/10" + } + }, + { + "name": "Tertiary Dark/Button/Primary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/100" + } + }, + { + "name": "Tertiary Dark/Button/Primary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/80" + } + }, + { + "name": "Tertiary Dark/Button/Primary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Primary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/20" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/10" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Yellow/20" + } + }, + { + "name": "Tertiary Dark/Button/Secondary/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/20" + } + }, + { + "name": "Tertiary Dark/On Surface/Divider", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Blue/80" + } + }, + { + "name": "Base/Button/Text/Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Text/Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Text/Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Text/On Fill/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Red/100" + } + }, + { + "name": "Base/Button/Text/On Fill/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "Scandic/Peach/80" + } + }, + { + "name": "Base/Button/Text/On Fill/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Grey/40" + } + }, + { + "name": "Base/Button/Text/Border/Normal", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Text/Border/Hover", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + }, + { + "name": "Base/Button/Text/Border/Disabled", + "type": "color", + "isAlias": true, + "value": { + "collection": "Primitives", + "name": "UI/Opacity/White/0" + } + } + ] + } + ] + }, + { + "name": "Primitives", + "modes": [ + { + "name": "Scandic", + "variables": [ + { + "name": "Scandic/Brand/Scandic Red", + "type": "color", + "isAlias": false, + "value": "#CD0921" + }, + { + "name": "Scandic/Brand/Burgundy", + "type": "color", + "isAlias": false, + "value": "#4D001B" + }, + { + "name": "Scandic/Brand/Pale Peach", + "type": "color", + "isAlias": false, + "value": "#F7E1D5" + }, + { + "name": "Scandic/Brand/Dark Green", + "type": "color", + "isAlias": false, + "value": "#093021" + }, + { + "name": "Scandic/Brand/Light Green", + "type": "color", + "isAlias": false, + "value": "#D2EDAF" + }, + { + "name": "Scandic/Brand/Dark Grey", + "type": "color", + "isAlias": false, + "value": "#291710" + }, + { + "name": "Scandic/Brand/Warm White", + "type": "color", + "isAlias": false, + "value": "#FAF6F2" + }, + { + "name": "Scandic/Brand/Light Blue", + "type": "color", + "isAlias": false, + "value": "#B5E0FF" + }, + { + "name": "Scandic/Brand/Dark Blue", + "type": "color", + "isAlias": false, + "value": "#0D1440" + }, + { + "name": "Scandic/Brand/Pale Yellow", + "type": "color", + "isAlias": false, + "value": "#FFF0C2" + }, + { + "name": "Scandic/Red/00", + "type": "color", + "isAlias": false, + "value": "#FFEBEB" + }, + { + "name": "Scandic/Red/10", + "type": "color", + "isAlias": false, + "value": "#F7C1C2" + }, + { + "name": "Scandic/Red/20", + "type": "color", + "isAlias": false, + "value": "#F79499" + }, + { + "name": "Scandic/Red/30", + "type": "color", + "isAlias": false, + "value": "#F26B74" + }, + { + "name": "Scandic/Red/40", + "type": "color", + "isAlias": false, + "value": "#ED4251" + }, + { + "name": "Scandic/Red/50", + "type": "color", + "isAlias": false, + "value": "#E32034" + }, + { + "name": "Scandic/Red/60", + "type": "color", + "isAlias": false, + "value": "#CD0921" + }, + { + "name": "Scandic/Red/70", + "type": "color", + "isAlias": false, + "value": "#AD0015" + }, + { + "name": "Scandic/Red/80", + "type": "color", + "isAlias": false, + "value": "#8D0011" + }, + { + "name": "Scandic/Red/90", + "type": "color", + "isAlias": false, + "value": "#6D000D" + }, + { + "name": "Scandic/Red/100", + "type": "color", + "isAlias": false, + "value": "#4D001B" + }, + { + "name": "Scandic/Peach/00", + "type": "color", + "isAlias": false, + "value": "#FFF3ED" + }, + { + "name": "Scandic/Beige/00", + "type": "color", + "isAlias": false, + "value": "#FAF6F2" + }, + { + "name": "Scandic/Beige/10", + "type": "color", + "isAlias": false, + "value": "#F2ECE6" + }, + { + "name": "Scandic/Beige/20", + "type": "color", + "isAlias": false, + "value": "#E3D9D1" + }, + { + "name": "Scandic/Beige/30", + "type": "color", + "isAlias": false, + "value": "#D1C4BA" + }, + { + "name": "Scandic/Beige/40", + "type": "color", + "isAlias": false, + "value": "#B8A79A" + }, + { + "name": "Scandic/Beige/50", + "type": "color", + "isAlias": false, + "value": "#9C8A7E" + }, + { + "name": "Scandic/Beige/60", + "type": "color", + "isAlias": false, + "value": "#806E63" + }, + { + "name": "Scandic/Beige/70", + "type": "color", + "isAlias": false, + "value": "#6B584D" + }, + { + "name": "Scandic/Beige/80", + "type": "color", + "isAlias": false, + "value": "#533F35" + }, + { + "name": "Scandic/Beige/90", + "type": "color", + "isAlias": false, + "value": "#3E2B23" + }, + { + "name": "Scandic/Beige/100", + "type": "color", + "isAlias": false, + "value": "#291710" + }, + { + "name": "Scandic/Peach/10", + "type": "color", + "isAlias": false, + "value": "#F7E1D5" + }, + { + "name": "Scandic/Peach/20", + "type": "color", + "isAlias": false, + "value": "#F4D5C8" + }, + { + "name": "Scandic/Peach/30", + "type": "color", + "isAlias": false, + "value": "#F0C1B6" + }, + { + "name": "Scandic/Peach/40", + "type": "color", + "isAlias": false, + "value": "#E9ABA3" + }, + { + "name": "Scandic/Peach/50", + "type": "color", + "isAlias": false, + "value": "#DE9490" + }, + { + "name": "Scandic/Peach/60", + "type": "color", + "isAlias": false, + "value": "#CD797C" + }, + { + "name": "Scandic/Peach/70", + "type": "color", + "isAlias": false, + "value": "#B05B65" + }, + { + "name": "Scandic/Peach/80", + "type": "color", + "isAlias": false, + "value": "#8F4350" + }, + { + "name": "Scandic/Peach/90", + "type": "color", + "isAlias": false, + "value": "#642636" + }, + { + "name": "Scandic/Peach/100", + "type": "color", + "isAlias": false, + "value": "#4D0F25" + }, + { + "name": "Scandic/Green/00", + "type": "color", + "isAlias": false, + "value": "#F3FCE8" + }, + { + "name": "Scandic/Green/10", + "type": "color", + "isAlias": false, + "value": "#E1F3CA" + }, + { + "name": "Scandic/Green/20", + "type": "color", + "isAlias": false, + "value": "#D2EDAF" + }, + { + "name": "Scandic/Green/30", + "type": "color", + "isAlias": false, + "value": "#ACDB8A" + }, + { + "name": "Scandic/Green/40", + "type": "color", + "isAlias": false, + "value": "#7CB865" + }, + { + "name": "Scandic/Green/50", + "type": "color", + "isAlias": false, + "value": "#539E49" + }, + { + "name": "Scandic/Green/60", + "type": "color", + "isAlias": false, + "value": "#348337" + }, + { + "name": "Scandic/Green/70", + "type": "color", + "isAlias": false, + "value": "#256931" + }, + { + "name": "Scandic/Green/80", + "type": "color", + "isAlias": false, + "value": "#164E29" + }, + { + "name": "Scandic/Green/90", + "type": "color", + "isAlias": false, + "value": "#093021" + }, + { + "name": "Scandic/Green/100", + "type": "color", + "isAlias": false, + "value": "#091F16" + }, + { + "name": "Scandic/Blue/00", + "type": "color", + "isAlias": false, + "value": "#E8F6FF" + }, + { + "name": "Scandic/Blue/10", + "type": "color", + "isAlias": false, + "value": "#CFEBFF" + }, + { + "name": "Scandic/Blue/20", + "type": "color", + "isAlias": false, + "value": "#B5E0FF" + }, + { + "name": "Scandic/Blue/30", + "type": "color", + "isAlias": false, + "value": "#93C9F5" + }, + { + "name": "Scandic/Blue/40", + "type": "color", + "isAlias": false, + "value": "#79AEE7" + }, + { + "name": "Scandic/Blue/50", + "type": "color", + "isAlias": false, + "value": "#5B8FD4" + }, + { + "name": "Scandic/Blue/60", + "type": "color", + "isAlias": false, + "value": "#3F6DBD" + }, + { + "name": "Scandic/Blue/70", + "type": "color", + "isAlias": false, + "value": "#284EA0" + }, + { + "name": "Scandic/Blue/80", + "type": "color", + "isAlias": false, + "value": "#18347F" + }, + { + "name": "Scandic/Blue/90", + "type": "color", + "isAlias": false, + "value": "#0D1F5F" + }, + { + "name": "Scandic/Blue/100", + "type": "color", + "isAlias": false, + "value": "#0D1440" + }, + { + "name": "Scandic/Yellow/00", + "type": "color", + "isAlias": false, + "value": "#FFF8E3" + }, + { + "name": "Scandic/Yellow/10", + "type": "color", + "isAlias": false, + "value": "#FFF0C2" + }, + { + "name": "Scandic/Yellow/20", + "type": "color", + "isAlias": false, + "value": "#FADE89" + }, + { + "name": "Scandic/Yellow/30", + "type": "color", + "isAlias": false, + "value": "#F7CE52" + }, + { + "name": "Scandic/Yellow/40", + "type": "color", + "isAlias": false, + "value": "#EDB532" + }, + { + "name": "Scandic/Yellow/50", + "type": "color", + "isAlias": false, + "value": "#E59515" + }, + { + "name": "Scandic/Yellow/60", + "type": "color", + "isAlias": false, + "value": "#D17308" + }, + { + "name": "Scandic/Yellow/70", + "type": "color", + "isAlias": false, + "value": "#A85211" + }, + { + "name": "Scandic/Yellow/80", + "type": "color", + "isAlias": false, + "value": "#7D370F" + }, + { + "name": "Scandic/Yellow/90", + "type": "color", + "isAlias": false, + "value": "#4F2313" + }, + { + "name": "Scandic/Yellow/100", + "type": "color", + "isAlias": false, + "value": "#301508" + }, + { + "name": "Go/Brand/Lavender", + "type": "color", + "isAlias": false, + "value": "#DCD7FF" + }, + { + "name": "Go/Beige/00", + "type": "color", + "isAlias": false, + "value": "#FAF8F2" + }, + { + "name": "Go/Beige/10", + "type": "color", + "isAlias": false, + "value": "#F0EDE4" + }, + { + "name": "Go/Beige/20", + "type": "color", + "isAlias": false, + "value": "#E0DCCE" + }, + { + "name": "Go/Beige/30", + "type": "color", + "isAlias": false, + "value": "#C8C4B6" + }, + { + "name": "Go/Beige/40", + "type": "color", + "isAlias": false, + "value": "#B0ACA0" + }, + { + "name": "Go/Beige/50", + "type": "color", + "isAlias": false, + "value": "#918F83" + }, + { + "name": "Go/Beige/60", + "type": "color", + "isAlias": false, + "value": "#78766D" + }, + { + "name": "Go/Beige/70", + "type": "color", + "isAlias": false, + "value": "#63615A" + }, + { + "name": "Go/Beige/80", + "type": "color", + "isAlias": false, + "value": "#4F4D49" + }, + { + "name": "Go/Beige/90", + "type": "color", + "isAlias": false, + "value": "#373633" + }, + { + "name": "Go/Beige/100", + "type": "color", + "isAlias": false, + "value": "#1F1E1D" + }, + { + "name": "Go/Brand/Obsidian", + "type": "color", + "isAlias": false, + "value": "#2D163A" + }, + { + "name": "Go/Brand/Lemon", + "type": "color", + "isAlias": false, + "value": "#F5FF73" + }, + { + "name": "Go/Brand/Linen", + "type": "color", + "isAlias": false, + "value": "#E0DCCE" + }, + { + "name": "Go/Brand/Chartreuse", + "type": "color", + "isAlias": false, + "value": "#85FF52" + }, + { + "name": "Go/Brand/Pine", + "type": "color", + "isAlias": false, + "value": "#21331F" + }, + { + "name": "Go/Brand/Aqua", + "type": "color", + "isAlias": false, + "value": "#73FCEE" + }, + { + "name": "Go/Brand/Powder rose", + "type": "color", + "isAlias": false, + "value": "#ECC8C9" + }, + { + "name": "Go/Brand/Coral", + "type": "color", + "isAlias": false, + "value": "#FA3737" + }, + { + "name": "UI/Grey/00", + "type": "color", + "isAlias": false, + "value": "#F9F6F4" + }, + { + "name": "UI/Opacity/White/100", + "type": "color", + "isAlias": false, + "value": "#FFFFFF" + }, + { + "name": "UI/Opacity/White/90", + "type": "color", + "isAlias": false, + "value": "#FFFFFFE6" + }, + { + "name": "UI/Opacity/White/80", + "type": "color", + "isAlias": false, + "value": "#FFFFFFCC" + }, + { + "name": "UI/Opacity/White/70", + "type": "color", + "isAlias": false, + "value": "#FFFFFFB3" + }, + { + "name": "UI/Opacity/White/60", + "type": "color", + "isAlias": false, + "value": "#FFFFFF99" + }, + { + "name": "UI/Opacity/White/50", + "type": "color", + "isAlias": false, + "value": "#FFFFFF80" + }, + { + "name": "UI/Opacity/White/40", + "type": "color", + "isAlias": false, + "value": "#FFFFFF66" + }, + { + "name": "UI/Opacity/White/30", + "type": "color", + "isAlias": false, + "value": "#FFFFFF4D" + }, + { + "name": "UI/Opacity/White/20", + "type": "color", + "isAlias": false, + "value": "#FFFFFF33" + }, + { + "name": "UI/Opacity/White/10", + "type": "color", + "isAlias": false, + "value": "#FFFFFF1A" + }, + { + "name": "UI/Opacity/White/0", + "type": "color", + "isAlias": false, + "value": "#FFFFFF00" + }, + { + "name": "UI/Opacity/Almost Black/100", + "type": "color", + "isAlias": false, + "value": "#1F1C1B" + }, + { + "name": "UI/Opacity/Almost Black/90", + "type": "color", + "isAlias": false, + "value": "#1F1C1BE6" + }, + { + "name": "UI/Opacity/Almost Black/80", + "type": "color", + "isAlias": false, + "value": "#1F1C1BCC" + }, + { + "name": "UI/Opacity/Almost Black/70", + "type": "color", + "isAlias": false, + "value": "#1F1C1BB3" + }, + { + "name": "UI/Opacity/Almost Black/60", + "type": "color", + "isAlias": false, + "value": "#1F1C1B99" + }, + { + "name": "UI/Opacity/Almost Black/50", + "type": "color", + "isAlias": false, + "value": "#1F1C1B80" + }, + { + "name": "UI/Opacity/Almost Black/40", + "type": "color", + "isAlias": false, + "value": "#1F1C1B66" + }, + { + "name": "UI/Opacity/Almost Black/30", + "type": "color", + "isAlias": false, + "value": "#1F1C1B4D" + }, + { + "name": "UI/Opacity/Almost Black/20", + "type": "color", + "isAlias": false, + "value": "#1F1C1B33" + }, + { + "name": "UI/Opacity/Almost Black/10", + "type": "color", + "isAlias": false, + "value": "#1F1C1B1A" + }, + { + "name": "UI/Opacity/Almost Black/0", + "type": "color", + "isAlias": false, + "value": "#1F1C1B00" + }, + { + "name": "UI/Grey/10", + "type": "color", + "isAlias": false, + "value": "#EBE8E6" + }, + { + "name": "UI/Grey/20", + "type": "color", + "isAlias": false, + "value": "#D6D2D0" + }, + { + "name": "UI/Grey/30", + "type": "color", + "isAlias": false, + "value": "#C2BDBA" + }, + { + "name": "UI/Grey/40", + "type": "color", + "isAlias": false, + "value": "#A8A4A2" + }, + { + "name": "UI/Grey/50", + "type": "color", + "isAlias": false, + "value": "#8C8987" + }, + { + "name": "UI/Grey/60", + "type": "color", + "isAlias": false, + "value": "#787472" + }, + { + "name": "UI/Grey/70", + "type": "color", + "isAlias": false, + "value": "#635F5D" + }, + { + "name": "UI/Grey/80", + "type": "color", + "isAlias": false, + "value": "#57514E" + }, + { + "name": "UI/Grey/90", + "type": "color", + "isAlias": false, + "value": "#403937" + }, + { + "name": "UI/Grey/100", + "type": "color", + "isAlias": false, + "value": "#26201E" + }, + { + "name": "Go/Purple/00", + "type": "color", + "isAlias": false, + "value": "#F4F2FF" + }, + { + "name": "Go/Purple/10", + "type": "color", + "isAlias": false, + "value": "#DCD7FF" + }, + { + "name": "Go/Purple/20", + "type": "color", + "isAlias": false, + "value": "#CABFFC" + }, + { + "name": "Go/Purple/30", + "type": "color", + "isAlias": false, + "value": "#BAA7F7" + }, + { + "name": "Go/Purple/40", + "type": "color", + "isAlias": false, + "value": "#AB8EF0" + }, + { + "name": "Go/Purple/50", + "type": "color", + "isAlias": false, + "value": "#9C75E6" + }, + { + "name": "Go/Purple/60", + "type": "color", + "isAlias": false, + "value": "#8C5BD5" + }, + { + "name": "Go/Purple/70", + "type": "color", + "isAlias": false, + "value": "#733CB2" + }, + { + "name": "Go/Purple/80", + "type": "color", + "isAlias": false, + "value": "#5E2A8C" + }, + { + "name": "Go/Purple/90", + "type": "color", + "isAlias": false, + "value": "#451F61" + }, + { + "name": "Go/Purple/100", + "type": "color", + "isAlias": false, + "value": "#2D163A" + }, + { + "name": "Go/Yellow/00", + "type": "color", + "isAlias": false, + "value": "#FDFFE8" + }, + { + "name": "Go/Yellow/10", + "type": "color", + "isAlias": false, + "value": "#FAFFC4" + }, + { + "name": "Go/Yellow/20", + "type": "color", + "isAlias": false, + "value": "#F8FF9C" + }, + { + "name": "Go/Yellow/30", + "type": "color", + "isAlias": false, + "value": "#F5FF73" + }, + { + "name": "Go/Yellow/40", + "type": "color", + "isAlias": false, + "value": "#EDEA39" + }, + { + "name": "Go/Yellow/50", + "type": "color", + "isAlias": false, + "value": "#DEC614" + }, + { + "name": "Go/Yellow/60", + "type": "color", + "isAlias": false, + "value": "#BA8D07" + }, + { + "name": "Go/Yellow/70", + "type": "color", + "isAlias": false, + "value": "#966400" + }, + { + "name": "Go/Yellow/80", + "type": "color", + "isAlias": false, + "value": "#754403" + }, + { + "name": "Go/Yellow/90", + "type": "color", + "isAlias": false, + "value": "#572701" + }, + { + "name": "Go/Yellow/100", + "type": "color", + "isAlias": false, + "value": "#3B1300" + }, + { + "name": "Go/Green/00", + "type": "color", + "isAlias": false, + "value": "#EDFFE5" + }, + { + "name": "Go/Green/10", + "type": "color", + "isAlias": false, + "value": "#CDFFB8" + }, + { + "name": "Go/Green/20", + "type": "color", + "isAlias": false, + "value": "#A7FF82" + }, + { + "name": "Go/Green/30", + "type": "color", + "isAlias": false, + "value": "#85FF52" + }, + { + "name": "Go/Green/40", + "type": "color", + "isAlias": false, + "value": "#66E03A" + }, + { + "name": "Go/Green/50", + "type": "color", + "isAlias": false, + "value": "#45B222" + }, + { + "name": "Go/Green/60", + "type": "color", + "isAlias": false, + "value": "#2E7F18" + }, + { + "name": "Go/Green/70", + "type": "color", + "isAlias": false, + "value": "#2A601E" + }, + { + "name": "Go/Green/80", + "type": "color", + "isAlias": false, + "value": "#26461F" + }, + { + "name": "Go/Green/90", + "type": "color", + "isAlias": false, + "value": "#21331F" + }, + { + "name": "Go/Green/100", + "type": "color", + "isAlias": false, + "value": "#162115" + } + ] + } + ] + }, + { + "name": "Layout", + "modes": [ + { + "name": "Desktop", + "variables": [ + { + "name": "Breakpoints/min-width", + "type": "number", + "isAlias": false, + "value": 1367 + }, + { + "name": "Breakpoints/max-width", + "type": "number", + "isAlias": false, + "value": 1920 + }, + { + "name": "Margin/Margin-min", + "type": "number", + "isAlias": false, + "value": 40 + }, + { + "name": "Margin/Margin-max", + "type": "number", + "isAlias": false, + "value": 72 + }, + { + "name": "Columns/Column", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "Gutter/min-width", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Gutter/max-width", + "type": "number", + "isAlias": false, + "value": 24 + } + ] + }, + { + "name": "Tablet", + "variables": [ + { + "name": "Breakpoints/min-width", + "type": "number", + "isAlias": false, + "value": 768 + }, + { + "name": "Breakpoints/max-width", + "type": "number", + "isAlias": false, + "value": 1366 + }, + { + "name": "Margin/Margin-min", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Margin/Margin-max", + "type": "number", + "isAlias": false, + "value": 32 + }, + { + "name": "Columns/Column", + "type": "number", + "isAlias": false, + "value": 8 + }, + { + "name": "Gutter/min-width", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Gutter/max-width", + "type": "number", + "isAlias": false, + "value": 16 + } + ] + }, + { + "name": "Mobile", + "variables": [ + { + "name": "Breakpoints/min-width", + "type": "number", + "isAlias": false, + "value": 320 + }, + { + "name": "Breakpoints/max-width", + "type": "number", + "isAlias": false, + "value": 767 + }, + { + "name": "Margin/Margin-min", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Margin/Margin-max", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Columns/Column", + "type": "number", + "isAlias": false, + "value": 4 + }, + { + "name": "Gutter/min-width", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Gutter/max-width", + "type": "number", + "isAlias": false, + "value": 16 + } + ] + } + ] + }, + { + "name": "Text sizes", + "modes": [ + { + "name": "Desktop", + "variables": [ + { + "name": "Title 1", + "type": "number", + "isAlias": false, + "value": 64 + }, + { + "name": "Title 2", + "type": "number", + "isAlias": false, + "value": 48 + }, + { + "name": "Title 3", + "type": "number", + "isAlias": false, + "value": 36 + }, + { + "name": "Title 4", + "type": "number", + "isAlias": false, + "value": 28 + }, + { + "name": "Title 5", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Subtitle 1", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Subtitle 2", + "type": "number", + "isAlias": false, + "value": 20 + }, + { + "name": "Script 1", + "type": "number", + "isAlias": false, + "value": 32 + }, + { + "name": "Script 2", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Preamble", + "type": "number", + "isAlias": false, + "value": 20 + }, + { + "name": "Body/Regular", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Bold", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Link", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Inline", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Caption/Regular", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Bold", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Link", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Inline", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Foot note/Regular", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "Foot note/Bold", + "type": "number", + "isAlias": false, + "value": 12 + } + ] + }, + { + "name": "Tablet (estimate)", + "variables": [ + { + "name": "Title 1", + "type": "number", + "isAlias": false, + "value": 60 + }, + { + "name": "Title 2", + "type": "number", + "isAlias": false, + "value": 44 + }, + { + "name": "Title 3", + "type": "number", + "isAlias": false, + "value": 34 + }, + { + "name": "Title 4", + "type": "number", + "isAlias": false, + "value": 26 + }, + { + "name": "Title 5", + "type": "number", + "isAlias": false, + "value": 21 + }, + { + "name": "Subtitle 1", + "type": "number", + "isAlias": false, + "value": 22 + }, + { + "name": "Subtitle 2", + "type": "number", + "isAlias": false, + "value": 19 + }, + { + "name": "Script 1", + "type": "number", + "isAlias": false, + "value": 29 + }, + { + "name": "Script 2", + "type": "number", + "isAlias": false, + "value": 22 + }, + { + "name": "Preamble", + "type": "number", + "isAlias": false, + "value": 19 + }, + { + "name": "Body/Regular", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Bold", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Link", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Inline", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Caption/Regular", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Bold", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Link", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Inline", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Foot note/Regular", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "Foot note/Bold", + "type": "number", + "isAlias": false, + "value": 12 + } + ] + }, + { + "name": "Mobile", + "variables": [ + { + "name": "Title 1", + "type": "number", + "isAlias": false, + "value": 48 + }, + { + "name": "Title 2", + "type": "number", + "isAlias": false, + "value": 36 + }, + { + "name": "Title 3", + "type": "number", + "isAlias": false, + "value": 30 + }, + { + "name": "Title 4", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Title 5", + "type": "number", + "isAlias": false, + "value": 20 + }, + { + "name": "Subtitle 1", + "type": "number", + "isAlias": false, + "value": 20 + }, + { + "name": "Subtitle 2", + "type": "number", + "isAlias": false, + "value": 18 + }, + { + "name": "Script 1", + "type": "number", + "isAlias": false, + "value": 24 + }, + { + "name": "Script 2", + "type": "number", + "isAlias": false, + "value": 20 + }, + { + "name": "Preamble", + "type": "number", + "isAlias": false, + "value": 18 + }, + { + "name": "Body/Regular", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Bold", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Link", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Body/Inline", + "type": "number", + "isAlias": false, + "value": 16 + }, + { + "name": "Caption/Regular", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Bold", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Link", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Caption/Inline", + "type": "number", + "isAlias": false, + "value": 14 + }, + { + "name": "Foot note/Regular", + "type": "number", + "isAlias": false, + "value": 12 + }, + { + "name": "Foot note/Bold", + "type": "number", + "isAlias": false, + "value": 12 + } + ] + } + ] + }, + { + "name": "Typography", + "modes": [ + { + "name": "Style", + "variables": [ + { + "name": "Title 1", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 64, + "fontFamily": "Brandon Text", + "fontWeight": "Black", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 0.25, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + }, + { + "name": "Title 2", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 48, + "fontFamily": "Brandon Text", + "fontWeight": "Black", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 0.25, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + }, + { + "name": "Title 3", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 36, + "fontFamily": "Brandon Text", + "fontWeight": "Black", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 0.25, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + }, + { + "name": "Title 4", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 28, + "fontFamily": "Brandon Text", + "fontWeight": "Bold", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 0.25, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Title 5", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 24, + "fontFamily": "Brandon Text", + "fontWeight": "Black", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 0.25, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + }, + { + "name": "Script 1", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 32, + "fontFamily": "Biro Script Plus", + "fontWeight": "Regular", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 2, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Script 2", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 24, + "fontFamily": "Biro Script Plus", + "fontWeight": "Regular", + "lineHeight": 110.00000238418579, + "lineHeightUnit": "PERCENT", + "letterSpacing": 2, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Subtitle 1", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 24, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 120.00000476837158, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Subtitle 2", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 20, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 120.00000476837158, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Preamble", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 20, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 139.9999976158142, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Body/Regular", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 16, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.2000000476837158, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Body/Bold", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 16, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.2000000476837158, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Body/Underline", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 16, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.2000000476837158, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "UNDERLINE" + } + }, + { + "name": "Body/Inline", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 16, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.2000000476837158, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "UNDERLINE" + } + }, + { + "name": "Caption/Regular", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 14, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 139.9999976158142, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Caption/Bold", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 14, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 139.9999976158142, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Caption/Underline", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 14, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 139.9999976158142, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "UNDERLINE" + } + }, + { + "name": "Caption/Inline", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 14, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 139.9999976158142, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "UNDERLINE" + } + }, + { + "name": "Caption/Labels", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 14, + "fontFamily": "Brandon Text", + "fontWeight": "Bold", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + }, + { + "name": "Footnote/Regular", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 12, + "fontFamily": "Fira Sans", + "fontWeight": "Regular", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Footnote/Bold", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 12, + "fontFamily": "Fira Sans", + "fontWeight": "Medium", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "ORIGINAL", + "textDecoration": "NONE" + } + }, + { + "name": "Footnote/Labels", + "type": "typography", + "isAlias": false, + "value": { + "fontSize": 12, + "fontFamily": "Brandon Text", + "fontWeight": "Bold", + "lineHeight": 150, + "lineHeightUnit": "PERCENT", + "letterSpacing": 1.399999976158142, + "letterSpacingUnit": "PERCENT", + "textCase": "UPPER", + "textDecoration": "NONE" + } + } + ] + } + ] + }, + { + "name": "Effects", + "modes": [ + { + "name": "Style", + "variables": [ + { + "name": "Level 1", + "type": "effect", + "isAlias": false, + "value": { + "effects": [ + { + "type": "DROP_SHADOW", + "color": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.1 + }, + "offset": { + "x": 0, + "y": 0 + }, + "radius": 2, + "spread": 1 + } + ] + } + }, + { + "name": "Level 2", + "type": "effect", + "isAlias": false, + "value": { + "effects": [ + { + "type": "DROP_SHADOW", + "color": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.1 + }, + "offset": { + "x": 0, + "y": 0 + }, + "radius": 4, + "spread": 2 + } + ] + } + }, + { + "name": "Level 3", + "type": "effect", + "isAlias": false, + "value": { + "effects": [ + { + "type": "DROP_SHADOW", + "color": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.1 + }, + "offset": { + "x": 0, + "y": 0 + }, + "radius": 8, + "spread": 3 + } + ] + } + }, + { + "name": "Level 4", + "type": "effect", + "isAlias": false, + "value": { + "effects": [ + { + "type": "DROP_SHADOW", + "color": { + "r": 0, + "g": 0, + "b": 0, + "a": 0.1 + }, + "offset": { + "x": 0, + "y": 0 + }, + "radius": 14, + "spread": 6 + } + ] + } + } + ] + } + ] + }, + { + "name": "Grids", + "modes": [ + { + "name": "Style", + "variables": [ + { + "name": "L - fixed", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 85, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "CENTER", + "gutterSize": 16, + "count": 12 + } + ] + } + }, + { + "name": "M - fixed", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 110, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "CENTER", + "gutterSize": 16, + "count": 12 + } + ] + } + }, + { + "name": "L - fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 40, + "count": 12 + } + ] + } + }, + { + "name": "M - fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 72, + "count": 12 + } + ] + } + }, + { + "name": "S", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 40, + "count": 12 + } + ] + } + }, + { + "name": "L - with left panel", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 24, + "offset": 380, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 340, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.35 + }, + "alignment": "MIN", + "gutterSize": 24, + "offset": 40, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 73, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 40, + "count": 12 + }, + { + "pattern": "COLUMNS", + "sectionSize": 61, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.25 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 64, + "count": 4 + } + ] + } + }, + { + "name": "L - with right panel", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 40, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 40, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 40, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 24, + "offset": 380, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 340, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.35 + }, + "alignment": "MAX", + "gutterSize": 24, + "offset": 40, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 73, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 40, + "count": 12 + }, + { + "pattern": "COLUMNS", + "sectionSize": 61, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.25 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 64, + "count": 4 + } + ] + } + }, + { + "name": "M - with left panel", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 24, + "offset": 314, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 282, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.35 + }, + "alignment": "MIN", + "gutterSize": 24, + "offset": 32, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 88, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 72, + "count": 12 + }, + { + "pattern": "COLUMNS", + "sectionSize": 51, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.25 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 48, + "count": 4 + } + ] + } + }, + { + "name": "M - with right panel", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 0, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 32, + "color": { + "r": 151, + "g": 207, + "b": 156, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 24, + "offset": 314, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 282, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.35 + }, + "alignment": "MAX", + "gutterSize": 24, + "offset": 32, + "count": 1 + }, + { + "pattern": "COLUMNS", + "sectionSize": 88, + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "MIN", + "gutterSize": 16, + "offset": 72, + "count": 12 + }, + { + "pattern": "COLUMNS", + "sectionSize": 51, + "color": { + "r": 150, + "g": 199, + "b": 242, + "a": 0.2 + }, + "alignment": "MAX", + "gutterSize": 16, + "offset": 48, + "count": 4 + } + ] + } + }, + { + "name": "Side/L - Panel only - fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 5, + "g": 0, + "b": 255, + "a": 0.05 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 40, + "count": 4 + } + ] + } + }, + { + "name": "Side/M - Panel only -fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 5, + "g": 0, + "b": 255, + "a": 0.05 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 72, + "count": 4 + } + ] + } + }, + { + "name": "Side/L- Sheet only fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 5, + "g": 0, + "b": 255, + "a": 0.05 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 32, + "count": 4 + } + ] + } + }, + { + "name": "Side/M - Sheet only fluid", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 5, + "g": 0, + "b": 255, + "a": 0.05 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 24, + "count": 4 + } + ] + } + }, + { + "name": "Top navigation/L - nav top", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 0, + "g": 163, + "b": 255, + "a": 0.05 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 40, + "count": 12 + } + ] + } + }, + { + "name": "Top navigation/M - nav top", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 72, + "count": 12 + } + ] + } + }, + { + "name": "Top navigation/S - nav top", + "type": "grid", + "isAlias": false, + "value": { + "layoutGrids": [ + { + "pattern": "COLUMNS", + "color": { + "r": 255, + "g": 0, + "b": 0, + "a": 0.1 + }, + "alignment": "STRETCH", + "gutterSize": 16, + "offset": 72, + "count": 12 + } + ] + } + } + ] + } + ] + } + ] +} diff --git a/packages/design-system/lib/vite-env.d.ts b/packages/design-system/lib/vite-env.d.ts new file mode 100644 index 000000000..d3a8309b5 --- /dev/null +++ b/packages/design-system/lib/vite-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/packages/design-system/lint-staged.config.js b/packages/design-system/lint-staged.config.js new file mode 100644 index 000000000..7a531c7ba --- /dev/null +++ b/packages/design-system/lint-staged.config.js @@ -0,0 +1,6 @@ +const config = { + '*.{ts,tsx}': () => 'tsc -p tsconfig.json --noEmit', + '*': 'prettier --write', +} + +export default config diff --git a/packages/design-system/package.json b/packages/design-system/package.json new file mode 100644 index 000000000..11e7e7c98 --- /dev/null +++ b/packages/design-system/package.json @@ -0,0 +1,82 @@ +{ + "name": "@scandic-hotels/design-system", + "private": true, + "version": "0.1.0", + "type": "module", + "main": "dist/new.js", + "packageManager": "yarn@4.0.0", + "exports": { + ".": { + "import": "./dist/new.js", + "types": "./dist/new.d.ts" + }, + "./current": { + "import": "./dist/current.js", + "types": "./dist/current.d.ts" + }, + "./style.css": "./dist/assets/style-new.css", + "./current/style.css": "./dist/assets/style-current.css" + }, + "types": "dist/new.d.ts", + "files": [ + "dist" + ], + "sideEffects": [ + "**/*.css" + ], + "scripts": { + "dev": "vite", + "generate": "cd lib && jiti generate.ts", + "prebuild": "patch-package && yarn generate", + "build": "tsc --p ./tsconfig-build.json && vite build", + "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", + "prestorybook": "yarn generate", + "storybook": "storybook dev -p 6006", + "build-storybook": "storybook build", + "test": "vitest", + "prepublishOnly": "yarn build", + "prepare": "yarn build" + }, + "peerDependencies": { + "react": "^18.2.0", + "react-aria-components": "^1.0.1", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@laynezh/vite-plugin-lib-assets": "^0.5.18", + "@storybook/addon-essentials": "^8.0.0-beta.0", + "@storybook/addon-interactions": "^8.0.0-beta.0", + "@storybook/addon-links": "^8.0.0-beta.0", + "@storybook/addon-onboarding": "^1.0.11", + "@storybook/blocks": "^8.0.0-beta.0", + "@storybook/react": "^8.0.0-beta.0", + "@storybook/react-vite": "^8.0.0-beta.0", + "@storybook/test": "^8.0.0-beta.0", + "@types/react": "^18.2.43", + "@types/react-dom": "^18.2.17", + "@typescript-eslint/eslint-plugin": "^6.14.0", + "@typescript-eslint/parser": "^6.14.0", + "@vitejs/plugin-react": "^4.2.1", + "class-variance-authority": "^0.7.0", + "eslint": "^8.55.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.5", + "eslint-plugin-storybook": "^0.6.15", + "glob": "^10.3.10", + "jiti": "^1.21.0", + "lint-staged": "^15.2.2", + "magic-string": "^0.30.7", + "natural-orderby": "^3.0.2", + "patch-package": "^8.0.0", + "prettier": "^3.2.5", + "react": "^18.2.0", + "react-aria-components": "^1.0.1", + "react-dom": "^18.2.0", + "storybook": "^8.0.0-beta.0", + "typescript": "^5.2.2", + "vite": "^5.0.8", + "vite-plugin-dts": "^3.7.2", + "vite-plugin-lib-inject-css": "^1.3.0", + "vitest": "^1.2.2" + } +} diff --git a/packages/design-system/patches/@laynezh+vite-plugin-lib-assets+0.5.18.patch b/packages/design-system/patches/@laynezh+vite-plugin-lib-assets+0.5.18.patch new file mode 100644 index 000000000..f77abc7f7 --- /dev/null +++ b/packages/design-system/patches/@laynezh+vite-plugin-lib-assets+0.5.18.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/@laynezh/vite-plugin-lib-assets/dist/index.js b/node_modules/@laynezh/vite-plugin-lib-assets/dist/index.js +index 0031cbd..af098d2 100644 +--- a/node_modules/@laynezh/vite-plugin-lib-assets/dist/index.js ++++ b/node_modules/@laynezh/vite-plugin-lib-assets/dist/index.js +@@ -503,7 +503,7 @@ function VitePluginLibAssets(options = {}) { + const id = path2.resolve(importerDir, source); + if (cssLangFilter(id)) { + const assetsFromCss = await extractFromFile(this, id); +- const validAssets = assetsFromCss.filter((id2) => filter(id2)).map((id2) => ({ id: id2, content: getAssetContent(id2) })).filter(({ content }) => limit && content ? content.byteLength > limit : true); ++ const validAssets = assetsFromCss.map(aid => path.resolve(path2.dirname(id), aid)).filter((id2) => filter(id2)).map((id2) => ({ id: id2, content: getAssetContent(id2) })).filter(({ content }) => limit && content ? content.byteLength > limit : true); + validAssets.forEach(({ id: id2, content }) => { + let assetPath = emitFile(this, id2, content); + const base64 = getFileBase64(id2, content); diff --git a/packages/design-system/plugins/rollup-plugin-ensure-directives.ts b/packages/design-system/plugins/rollup-plugin-ensure-directives.ts new file mode 100644 index 000000000..0711b2a4b --- /dev/null +++ b/packages/design-system/plugins/rollup-plugin-ensure-directives.ts @@ -0,0 +1,106 @@ +import MagicString from 'magic-string' +import { createFilter } from '@rollup/pluginutils' +import type { Plugin, OutputAsset, RenderedChunk } from 'rollup' +import type { Directive, ExpressionStatement } from 'estree' + +type EnsureDirectivesOptions = { + include?: string[] + exclude?: string[] +} + +/** + * This is a plugin that ensures directives like "use client" gets put back at the top of files after bundling. + * In order for this plugin to work, every input file needs to be outputed in a separate output chunk. Otherwise, + * the directive would not be scoped to the related file. + * This can either be done by using the output.preserveModules or by using glob() as stated in Rollup documentation: + * https://rollupjs.org/configuration-options/#input + * + * @param {Object} options - Plugin options + * @param {string[]} options.include - Minimatch patterns to include in parsing + * @param {string[]} options.exclude - Minimatch patterns to skip from parsing + * + */ + +function isDirective(body: Directive | ExpressionStatement): body is Directive { + return (body as Directive).directive !== undefined +} + +function isChunk(chunk: OutputAsset | RenderedChunk): chunk is RenderedChunk { + return (chunk as RenderedChunk).modules !== undefined +} + +export default function ensureDirectives({ + include = [], + exclude = [], +}: EnsureDirectivesOptions = {}): Plugin { + // Skip CSS files by default, as this.parse() does not work on them + const excludePatterns = ['**/*.css', ...exclude] + const includePatterns = include + const filter = createFilter(includePatterns, excludePatterns) + + return { + name: 'ensure-directives', + // Capture directives metadata during the transform phase + transform(code, id) { + // Skip files that are excluded or that are implicitly excluded by the include pattern + if (!filter(id)) return + + const ast = this.parse(code) + + if (ast.type === 'Program' && ast.body) { + const filteredBodies = ast.body.filter(Boolean) + + const directives = filteredBodies.reduce( + (acc, filteredBody) => { + if ( + filteredBody && + filteredBody.type === 'ExpressionStatement' && + isDirective(filteredBody) + ) { + acc.push(filteredBody.directive) + } + return acc + }, + [], + ) + // Map is set to null since the sourceMap is left untouched + if (directives.length) { + return { + code, + ast, + map: null, + meta: { ensureDirectives: directives }, + } + } + } + return { code, ast, map: null } + }, + renderChunk: { + order: 'post', + handler(code, chunk) { + // Only do this for RenderedChunk, not OutputAssets. + if (isChunk(chunk)) { + const modulesKeys = Object.keys(chunk.modules) + + for (const moduleId of modulesKeys) { + const directives: string[] | false = + this.getModuleInfo(moduleId)?.meta?.ensureDirectives + + if (directives) { + const directiveStrings = directives + .map((directive) => `"${directive}"`) + .join(';\n') + + const s = new MagicString(code) + s.prepend(`${directiveStrings};\n`) + const srcMap = s.generateMap({ includeContent: true }) + + return { code: s.toString(), map: srcMap } + } + } + } + return null + }, + }, + } +} diff --git a/packages/design-system/public/.gitkeep b/packages/design-system/public/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/packages/design-system/tsconfig-build.json b/packages/design-system/tsconfig-build.json new file mode 100644 index 000000000..91ec48ee6 --- /dev/null +++ b/packages/design-system/tsconfig-build.json @@ -0,0 +1,5 @@ +{ + "extends": "./tsconfig.json", + "exclude": ["node_modules", "**/*.test.ts", "**/*.stories.tsx"], + "include": ["lib"] +} diff --git a/packages/design-system/tsconfig.json b/packages/design-system/tsconfig.json new file mode 100644 index 000000000..3b96687d6 --- /dev/null +++ b/packages/design-system/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true + }, + "include": ["example", "lib"], + "exclude": ["node_modules", "**/*.test.ts"] +} diff --git a/packages/design-system/vite.config.ts b/packages/design-system/vite.config.ts new file mode 100644 index 000000000..51ad8025e --- /dev/null +++ b/packages/design-system/vite.config.ts @@ -0,0 +1,116 @@ +/// + +import { extname, relative, resolve } from 'path' +import { fileURLToPath } from 'node:url' +import { glob } from 'glob' +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' +import dts from 'vite-plugin-dts' +import { libInjectCss } from 'vite-plugin-lib-inject-css' +import libAssetsPlugin from '@laynezh/vite-plugin-lib-assets' +import ensureDirectives from './plugins/rollup-plugin-ensure-directives' +import fs from 'node:fs' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + react(), + libInjectCss(), + dts({ + include: ['lib'], + exclude: ['node_modules', '**/*.test.ts', '**/*.stories.tsx'], + rollupTypes: true, + bundledPackages: ['class-variance-authority', 'clsx'], + }), + libAssetsPlugin({ + name: '[name].[contenthash:8].[ext]', + limit: 1024 * 1, + }), + ], + build: { + copyPublicDir: false, + lib: { + entry: [ + resolve(__dirname, 'lib/new.ts'), + resolve(__dirname, 'lib/current.ts'), + ], + formats: ['es'], + }, + rollupOptions: { + plugins: [ensureDirectives()], + external: [ + 'react', + 'react-dom', + 'react/jsx-runtime', + 'react-aria-components', + ], + onwarn(warning, defaultHandler) { + if ( + warning.code === 'MODULE_LEVEL_DIRECTIVE' && + warning.message.includes('use client') + ) { + return + } + + // When using the directive 'use client' in components, rollup throws an error. + // See: https://github.com/vitejs/vite/issues/15012#issuecomment-1815854072 + // We ignore sourcemap_error on the first character for component files + // to be caused by the 'use client' directive + if ( + warning.code === 'SOURCEMAP_ERROR' && + warning.loc?.file && + warning.loc.line === 1 && + warning.loc.column === 0 + ) { + if (fs.statSync(warning.loc.file)) { + const file = fs.readFileSync(warning.loc.file, { + encoding: 'utf-8', + }) + const lines = file.split('\n') + + if (lines[0] === "'use client'") { + return + } + } + } + + defaultHandler(warning) + }, + input: Object.fromEntries( + glob + .sync( + [ + 'lib/new.ts', + 'lib/current.ts', + 'lib/style-new.css', + 'lib/style-current.css', + 'lib/components/**/*.{ts,tsx}', + ], + { + ignore: '**/*.stories.{ts,tsx}', + }, + ) + .map((file) => { + return [ + // The name of the entry point + // lib/nested/foo.ts becomes nested/foo + relative( + 'lib', + file.slice(0, file.length - extname(file).length), + ), + // The absolute path to the entry file + // lib/nested/foo.ts becomes /project/lib/nested/foo.ts + fileURLToPath(new URL(file, import.meta.url)), + ] + }), + ), + output: { + assetFileNames: 'assets/[name][extname]', + entryFileNames: '[name].js', + }, + }, + }, + server: { + open: './example/index.html', + }, +}) diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 000000000..ddc36006d --- /dev/null +++ b/yarn.lock @@ -0,0 +1,22313 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@adobe/css-tools@npm:^4.4.0": + version: 4.4.2 + resolution: "@adobe/css-tools@npm:4.4.2" + checksum: 10c0/19433666ad18536b0ed05d4b53fbb3dd6ede266996796462023ec77a90b484890ad28a3e528cdf3ab8a65cb2fcdff5d8feb04db6bc6eed6ca307c40974239c94 + languageName: node + linkType: hard + +"@adobe/css-tools@npm:~4.3.1": + version: 4.3.3 + resolution: "@adobe/css-tools@npm:4.3.3" + checksum: 10c0/e76e712df713964b87cdf2aca1f0477f19bebd845484d5fcba726d3ec7782366e2f26ec8cb2dcfaf47081a5c891987d8a9f5c3f30d11e1eb3c1848adc27fcb24 + languageName: node + linkType: hard + +"@ampproject/remapping@npm:^2.2.0": + version: 2.3.0 + resolution: "@ampproject/remapping@npm:2.3.0" + dependencies: + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: 10c0/81d63cca5443e0f0c72ae18b544cc28c7c0ec2cea46e7cb888bb0e0f411a1191d0d6b7af798d54e30777d8d1488b2ec0732aac2be342d3d7d3ffd271c6f489ed + languageName: node + linkType: hard + +"@auth/core@npm:0.32.0": + version: 0.32.0 + resolution: "@auth/core@npm:0.32.0" + dependencies: + "@panva/hkdf": "npm:^1.1.1" + "@types/cookie": "npm:0.6.0" + cookie: "npm:0.6.0" + jose: "npm:^5.1.3" + oauth4webapi: "npm:^2.9.0" + preact: "npm:10.11.3" + preact-render-to-string: "npm:5.2.3" + peerDependencies: + "@simplewebauthn/browser": ^9.0.1 + "@simplewebauthn/server": ^9.0.2 + nodemailer: ^6.8.0 + peerDependenciesMeta: + "@simplewebauthn/browser": + optional: true + "@simplewebauthn/server": + optional: true + nodemailer: + optional: true + checksum: 10c0/8e48d6938feca1ce4af76983cbe070684c1b10cf1f3f6799492376d4ef81559c2f841f46da07ed9e9f59d2356abe649937deeefa36fa5f94ff5c43ab5466963e + languageName: node + linkType: hard + +"@azure/abort-controller@npm:^2.0.0": + version: 2.1.2 + resolution: "@azure/abort-controller@npm:2.1.2" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/3771b6820e33ebb56e79c7c68e2288296b8c2529556fbd29cf4cf2fbff7776e7ce1120072972d8df9f1bf50e2c3224d71a7565362b589595563f710b8c3d7b79 + languageName: node + linkType: hard + +"@azure/core-auth@npm:^1.3.0, @azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.8.0": + version: 1.9.0 + resolution: "@azure/core-auth@npm:1.9.0" + dependencies: + "@azure/abort-controller": "npm:^2.0.0" + "@azure/core-util": "npm:^1.11.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b7d8f33b81a8c9a76531acacc7af63d888429f0d763bb1ab8e28e91ddbf1626fc19cf8ca74f79c39b0a3e5acb315bdc4c4276fb979816f315712ea1bd611273d + languageName: node + linkType: hard + +"@azure/core-client@npm:^1.0.0": + version: 1.9.2 + resolution: "@azure/core-client@npm:1.9.2" + dependencies: + "@azure/abort-controller": "npm:^2.0.0" + "@azure/core-auth": "npm:^1.4.0" + "@azure/core-rest-pipeline": "npm:^1.9.1" + "@azure/core-tracing": "npm:^1.0.0" + "@azure/core-util": "npm:^1.6.1" + "@azure/logger": "npm:^1.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/4dab1f3b070f7c2c5a8390f81c7afdf31c030ad0599e75e16b9684959fb666cb57d34b63977639a60a7535f63f30a8a708210e8e48ff68a30732b7518044ebce + languageName: node + linkType: hard + +"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.9.1": + version: 1.19.0 + resolution: "@azure/core-rest-pipeline@npm:1.19.0" + dependencies: + "@azure/abort-controller": "npm:^2.0.0" + "@azure/core-auth": "npm:^1.8.0" + "@azure/core-tracing": "npm:^1.0.1" + "@azure/core-util": "npm:^1.11.0" + "@azure/logger": "npm:^1.0.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/7ca47993c049f27b342b012262a8acdeeb19433f6d15c0f82ad177ad78ddd1640ab6b1eed810525476784f17bb0f03abd1b4e2ba4c3aec858f9b7bf81c40db66 + languageName: node + linkType: hard + +"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1": + version: 1.2.0 + resolution: "@azure/core-tracing@npm:1.2.0" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/7cd114b3c11730a1b8b71d89b64f9d033dfe0710f2364ef65645683381e2701173c08ff8625a0b0bc65bb3c3e0de46c80fdb2735e37652425489b65a283f043d + languageName: node + linkType: hard + +"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.6.1": + version: 1.11.0 + resolution: "@azure/core-util@npm:1.11.0" + dependencies: + "@azure/abort-controller": "npm:^2.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/245c93ec7fb3f2cb3a0b2f3a3be8d02ee401acba3cdd71620aa9e4e3ca50d831849f692332327bdbe1238ab979a76218f16a5166488ee31d5b67004298d110a3 + languageName: node + linkType: hard + +"@azure/logger@npm:^1.0.0": + version: 1.1.4 + resolution: "@azure/logger@npm:1.1.4" + dependencies: + tslib: "npm:^2.6.2" + checksum: 10c0/5bc7792ef334e18f4893814e83cc61780a0effb927ba898095c75df1a01e1f3093dc7a63b6de549694cef76c25f43db850b82a48ec0fab5f9f1c1d2053af791d + languageName: node + linkType: hard + +"@azure/monitor-opentelemetry-exporter@npm:^1.0.0-beta.27": + version: 1.0.0-beta.28 + resolution: "@azure/monitor-opentelemetry-exporter@npm:1.0.0-beta.28" + dependencies: + "@azure/core-auth": "npm:^1.3.0" + "@azure/core-client": "npm:^1.0.0" + "@azure/core-rest-pipeline": "npm:^1.1.0" + "@opentelemetry/api": "npm:^1.9.0" + "@opentelemetry/api-logs": "npm:^0.57.1" + "@opentelemetry/core": "npm:^1.30.1" + "@opentelemetry/resources": "npm:^1.30.1" + "@opentelemetry/sdk-logs": "npm:^0.57.1" + "@opentelemetry/sdk-metrics": "npm:^1.30.1" + "@opentelemetry/sdk-trace-base": "npm:^1.30.1" + "@opentelemetry/semantic-conventions": "npm:^1.28.0" + tslib: "npm:^2.8.1" + checksum: 10c0/241bdd3f65291658cce57eb74fd8d5712fd6af1f17b3042bd1247f06741aacfa469b08c75a7e1b5566b4aff831c33c020d82497335f7defae91b3b883a8bc819 + languageName: node + linkType: hard + +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" + dependencies: + "@babel/helper-validator-identifier": "npm:^7.25.9" + js-tokens: "npm:^4.0.0" + picocolors: "npm:^1.0.0" + checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 + languageName: node + linkType: hard + +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5, @babel/compat-data@npm:^7.26.8": + version: 7.26.8 + resolution: "@babel/compat-data@npm:7.26.8" + checksum: 10c0/66408a0388c3457fff1c2f6c3a061278dd7b3d2f0455ea29bb7b187fa52c60ae8b4054b3c0a184e21e45f0eaac63cf390737bc7504d1f4a088a6e7f652c068ca + languageName: node + linkType: hard + +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3, @babel/core@npm:^7.18.5, @babel/core@npm:^7.18.9, @babel/core@npm:^7.21.3, @babel/core@npm:^7.23.9, @babel/core@npm:^7.26.0": + version: 7.26.9 + resolution: "@babel/core@npm:7.26.9" + dependencies: + "@ampproject/remapping": "npm:^2.2.0" + "@babel/code-frame": "npm:^7.26.2" + "@babel/generator": "npm:^7.26.9" + "@babel/helper-compilation-targets": "npm:^7.26.5" + "@babel/helper-module-transforms": "npm:^7.26.0" + "@babel/helpers": "npm:^7.26.9" + "@babel/parser": "npm:^7.26.9" + "@babel/template": "npm:^7.26.9" + "@babel/traverse": "npm:^7.26.9" + "@babel/types": "npm:^7.26.9" + convert-source-map: "npm:^2.0.0" + debug: "npm:^4.1.0" + gensync: "npm:^1.0.0-beta.2" + json5: "npm:^2.2.3" + semver: "npm:^6.3.1" + checksum: 10c0/ed7212ff42a9453765787019b7d191b167afcacd4bd8fec10b055344ef53fa0cc648c9a80159ae4ecf870016a6318731e087042dcb68d1a2a9d34eb290dc014b + languageName: node + linkType: hard + +"@babel/generator@npm:^7.23.0, @babel/generator@npm:^7.26.9, @babel/generator@npm:^7.7.2": + version: 7.26.9 + resolution: "@babel/generator@npm:7.26.9" + dependencies: + "@babel/parser": "npm:^7.26.9" + "@babel/types": "npm:^7.26.9" + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.25" + jsesc: "npm:^3.0.2" + checksum: 10c0/6b78872128205224a9a9761b9ea7543a9a7902a04b82fc2f6801ead4de8f59056bab3fd17b1f834ca7b049555fc4c79234b9a6230dd9531a06525306050becad + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-annotate-as-pure@npm:7.25.9" + dependencies: + "@babel/types": "npm:^7.25.9" + checksum: 10c0/095b6ba50489d797733abebc4596a81918316a99e3632755c9f02508882912b00c2ae5e468532a25a5c2108d109ddbe9b7da78333ee7cc13817fc50c00cf06fe + languageName: node + linkType: hard + +"@babel/helper-compilation-targets@npm:^7.22.6, @babel/helper-compilation-targets@npm:^7.25.9, @babel/helper-compilation-targets@npm:^7.26.5": + version: 7.26.5 + resolution: "@babel/helper-compilation-targets@npm:7.26.5" + dependencies: + "@babel/compat-data": "npm:^7.26.5" + "@babel/helper-validator-option": "npm:^7.25.9" + browserslist: "npm:^4.24.0" + lru-cache: "npm:^5.1.1" + semver: "npm:^6.3.1" + checksum: 10c0/9da5c77e5722f1a2fcb3e893049a01d414124522bbf51323bb1a0c9dcd326f15279836450fc36f83c9e8a846f3c40e88be032ed939c5a9840922bed6073edfb4 + languageName: node + linkType: hard + +"@babel/helper-create-class-features-plugin@npm:^7.25.9": + version: 7.26.9 + resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-member-expression-to-functions": "npm:^7.25.9" + "@babel/helper-optimise-call-expression": "npm:^7.25.9" + "@babel/helper-replace-supers": "npm:^7.26.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + "@babel/traverse": "npm:^7.26.9" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/808620b350ac012f22163fd44c38ed8e05b24ce5d37bc4aa99a44e9724205f11efcef6b25ccfa5bb5de82ac32b899f1e939123c688f335d2851f4b8d70742233 + languageName: node + linkType: hard + +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.25.9": + version: 7.26.3 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.26.3" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + regexpu-core: "npm:^6.2.0" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/266f30b99af621559467ed67634cb653408a9262930c0627c3d17691a9d477329fb4dabe4b1785cbf0490e892513d247836674271842d6a8da49fd0afae7d435 + languageName: node + linkType: hard + +"@babel/helper-define-polyfill-provider@npm:^0.6.3": + version: 0.6.3 + resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.22.6" + "@babel/helper-plugin-utils": "npm:^7.22.5" + debug: "npm:^4.1.1" + lodash.debounce: "npm:^4.0.8" + resolve: "npm:^1.14.2" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/4320e3527645e98b6a0d5626fef815680e3b2b03ec36045de5e909b0f01546ab3674e96f50bf3bc8413f8c9037e5ee1a5f560ebdf8210426dad1c2c03c96184a + languageName: node + linkType: hard + +"@babel/helper-member-expression-to-functions@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-member-expression-to-functions@npm:7.25.9" + dependencies: + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/e08c7616f111e1fb56f398365e78858e26e466d4ac46dff25921adc5ccae9b232f66e952a2f4162bbe336627ba336c7fd9eca4835b6548935973d3380d77eaff + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-module-imports@npm:7.25.9" + dependencies: + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70 + languageName: node + linkType: hard + +"@babel/helper-module-transforms@npm:^7.25.9, @babel/helper-module-transforms@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/helper-module-transforms@npm:7.26.0" + dependencies: + "@babel/helper-module-imports": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/ee111b68a5933481d76633dad9cdab30c41df4479f0e5e1cc4756dc9447c1afd2c9473b5ba006362e35b17f4ebddd5fca090233bef8dfc84dca9d9127e56ec3a + languageName: node + linkType: hard + +"@babel/helper-optimise-call-expression@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-optimise-call-expression@npm:7.25.9" + dependencies: + "@babel/types": "npm:^7.25.9" + checksum: 10c0/90203e6607edeadd2a154940803fd616c0ed92c1013d6774c4b8eb491f1a5a3448b68faae6268141caa5c456e55e3ee49a4ed2bd7ddaf2365daea321c435914c + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.25.9, @babel/helper-plugin-utils@npm:^7.26.5, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.26.5 + resolution: "@babel/helper-plugin-utils@npm:7.26.5" + checksum: 10c0/cdaba71d4b891aa6a8dfbe5bac2f94effb13e5fa4c2c487667fdbaa04eae059b78b28d85a885071f45f7205aeb56d16759e1bed9c118b94b16e4720ef1ab0f65 + languageName: node + linkType: hard + +"@babel/helper-remap-async-to-generator@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-remap-async-to-generator@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-wrap-function": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/6798b562f2788210980f29c5ee96056d90dc73458c88af5bd32f9c82e28e01975588aa2a57bb866c35556bd9b76bac937e824ee63ba472b6430224b91b4879e9 + languageName: node + linkType: hard + +"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.26.5": + version: 7.26.5 + resolution: "@babel/helper-replace-supers@npm:7.26.5" + dependencies: + "@babel/helper-member-expression-to-functions": "npm:^7.25.9" + "@babel/helper-optimise-call-expression": "npm:^7.25.9" + "@babel/traverse": "npm:^7.26.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/b19b1245caf835207aaaaac3a494f03a16069ae55e76a2e1350b5acd560e6a820026997a8160e8ebab82ae873e8208759aa008eb8422a67a775df41f0a4633d4 + languageName: node + linkType: hard + +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.25.9" + dependencies: + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/09ace0c6156961624ac9524329ce7f45350bab94bbe24335cbe0da7dfaa1448e658771831983cb83fe91cf6635b15d0a3cab57c03b92657480bfb49fb56dd184 + languageName: node + linkType: hard + +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6 + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d + languageName: node + linkType: hard + +"@babel/helper-validator-option@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-option@npm:7.25.9" + checksum: 10c0/27fb195d14c7dcb07f14e58fe77c44eea19a6a40a74472ec05c441478fa0bb49fa1c32b2d64be7a38870ee48ef6601bdebe98d512f0253aea0b39756c4014f3e + languageName: node + linkType: hard + +"@babel/helper-wrap-function@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-wrap-function@npm:7.25.9" + dependencies: + "@babel/template": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/b6627d83291e7b80df020f8ee2890c52b8d49272962cac0114ef90f189889c90f1027985873d1b5261a4e986e109b2754292dc112392f0b1fcbfc91cc08bd003 + languageName: node + linkType: hard + +"@babel/helpers@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/helpers@npm:7.26.9" + dependencies: + "@babel/template": "npm:^7.26.9" + "@babel/types": "npm:^7.26.9" + checksum: 10c0/3d4dbc4a33fe4181ed810cac52318b578294745ceaec07e2f6ecccf6cda55d25e4bfcea8f085f333bf911c9e1fc13320248dd1d5315ab47ad82ce1077410df05 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/parser@npm:7.26.9" + dependencies: + "@babel/types": "npm:^7.26.9" + bin: + parser: ./bin/babel-parser.js + checksum: 10c0/4b9ef3c9a0d4c328e5e5544f50fe8932c36f8a2c851e7f14a85401487cd3da75cad72c2e1bcec1eac55599a6bbb2fdc091f274c4fcafa6bdd112d4915ff087fc + languageName: node + linkType: hard + +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-bugfix-firefox-class-in-computed-class-key@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/7aab47fcbb8c1ddc195a3cd66609edcad54c5022f018db7de40185f0182950389690e953e952f117a1737b72f665ff02ad30de6c02b49b97f1d8f4ccdffedc34 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-bugfix-safari-class-field-initializer-scope@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/3a652b3574ca62775c5f101f8457950edc540c3581226579125da535d67765f41ad7f0e6327f8efeb2540a5dad5bb0c60a89fb934af3f67472e73fb63612d004 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/18fc9004104a150f9f5da9f3307f361bc3104d16778bb593b7523d5110f04a8df19a2587e6bdd5e726fb1d397191add45223f4f731bb556c33f14f2779d596e8 + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + "@babel/plugin-transform-optional-chaining": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.13.0 + checksum: 10c0/3f6c8781a2f7aa1791a31d2242399ca884df2ab944f90c020b6f112fb19f05fa6dad5be143d274dad1377e40415b63d24d5489faf5060b9c4a99e55d8f0c317c + languageName: node + linkType: hard + +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/02b365f0cc4df8b8b811c68697c93476da387841e5f153fe42766f34241b685503ea51110d5ed6df7132759820b93e48d9fa3743cffc091eed97c19f7e5fe272 + languageName: node + linkType: hard + +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e605e0070da087f6c35579499e65801179a521b6842c15181a1e305c04fded2393f11c1efd09b087be7f8b083d1b75e8f3efcbc1292b4f60d3369e14812cff63 + languageName: node + linkType: hard + +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8 + languageName: node + linkType: hard + +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-properties@npm:^7.12.13": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.12.13" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120 + languageName: node + linkType: hard + +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4464bf9115f4a2d02ce1454411baf9cfb665af1da53709c5c56953e5e2913745b0fcce82982a00463d6facbdd93445c691024e310b91431a1e2f024b158f6371 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-assertions@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/525b174e60b210d96c1744c1575fc2ddedcc43a479cba64a5344cf77bd0541754fc58120b5a11ff832ba098437bb05aa80900d1f49bb3d888c5e349a4a3a356e + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-attributes@npm:^7.24.7, @babel/plugin-syntax-import-attributes@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e594c185b12bfe0bbe7ca78dfeebe870e6d569a12128cac86f3164a075fe0ff70e25ddbd97fd0782906b91f65560c9dc6957716b7b4a68aba2516c9b7455e352 + languageName: node + linkType: hard + +"@babel/plugin-syntax-import-meta@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee + languageName: node + linkType: hard + +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.25.9, @babel/plugin-syntax-jsx@npm:^7.7.2": + version: 7.25.9 + resolution: "@babel/plugin-syntax-jsx@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d56597aff4df39d3decda50193b6dfbe596ca53f437ff2934622ce19a743bf7f43492d3fb3308b0289f5cee2b825d99ceb56526a2b9e7b68bf04901546c5618c + languageName: node + linkType: hard + +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b + languageName: node + linkType: hard + +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce + languageName: node + linkType: hard + +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.10.4" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9 + languageName: node + linkType: hard + +"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26 + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af + languageName: node + linkType: hard + +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.8.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81 + languageName: node + linkType: hard + +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/69822772561706c87f0a65bc92d0772cea74d6bc0911537904a676d5ff496a6d3ac4e05a166d8125fce4a16605bace141afc3611074e170a994e66e5397787f3 + languageName: node + linkType: hard + +"@babel/plugin-syntax-top-level-await@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/14bf6e65d5bc1231ffa9def5f0ef30b19b51c218fcecaa78cd1bdf7939dfdf23f90336080b7f5196916368e399934ce5d581492d8292b46a2fb569d8b2da106f + languageName: node + linkType: hard + +"@babel/plugin-syntax-typescript@npm:^7.25.9, @babel/plugin-syntax-typescript@npm:^7.7.2": + version: 7.25.9 + resolution: "@babel/plugin-syntax-typescript@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5192ebe11bd46aea68b7a60fd9555465c59af7e279e71126788e59121b86e00b505816685ab4782abe159232b0f73854e804b54449820b0d950b397ee158caa2 + languageName: node + linkType: hard + +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.18.6" + "@babel/helper-plugin-utils": "npm:^7.18.6" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/9144e5b02a211a4fb9a0ce91063f94fbe1004e80bde3485a0910c9f14897cf83fabd8c21267907cff25db8e224858178df0517f14333cfcf3380ad9a4139cb50 + languageName: node + linkType: hard + +"@babel/plugin-transform-arrow-functions@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/851fef9f58be60a80f46cc0ce1e46a6f7346a6f9d50fa9e0fa79d46ec205320069d0cc157db213e2bea88ef5b7d9bd7618bb83f0b1996a836e2426c3a3a1f622 + languageName: node + linkType: hard + +"@babel/plugin-transform-async-generator-functions@npm:^7.26.8": + version: 7.26.8 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.26.8" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + "@babel/helper-remap-async-to-generator": "npm:^7.25.9" + "@babel/traverse": "npm:^7.26.8" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f6fefce963fe2e6268dde1958975d7adbce65fba94ca6f4bc554c90da03104ad1dd2e66d03bc0462da46868498428646e30b03a218ef0e5a84bfc87a7e375cec + languageName: node + linkType: hard + +"@babel/plugin-transform-async-to-generator@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.25.9" + dependencies: + "@babel/helper-module-imports": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-remap-async-to-generator": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c443d9e462ddef733ae56360064f32fc800105803d892e4ff32d7d6a6922b3765fa97b9ddc9f7f1d3f9d8c2d95721d85bef9dbf507804214c6cf6466b105c168 + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoped-functions@npm:^7.26.5": + version: 7.26.5 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.26.5" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/2f3060800ead46b09971dd7bf830d66383b7bc61ced9945633b4ef9bf87787956ea83fcf49b387cecb377812588c6b81681714c760f9cf89ecba45edcbab1192 + languageName: node + linkType: hard + +"@babel/plugin-transform-block-scoping@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-block-scoping@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/a76e30becb6c75b4d87a2cd53556fddb7c88ddd56bfadb965287fd944810ac159aa8eb5705366fc37336041f63154ed9fab3862fb10482a45bf5ede63fd55fda + languageName: node + linkType: hard + +"@babel/plugin-transform-class-properties@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-class-properties@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f0603b6bd34d8ba62c03fc0572cb8bbc75874d097ac20cc7c5379e001081210a84dba1749e7123fca43b978382f605bb9973c99caf2c5b4c492d5c0a4a441150 + languageName: node + linkType: hard + +"@babel/plugin-transform-class-static-block@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/plugin-transform-class-static-block@npm:7.26.0" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.12.0 + checksum: 10c0/cdcf5545ae6514ed75fbd73cccfa209c6a5dfdf0c2bb7bb62c0fb4ec334a32281bcf1bc16ace494d9dbe93feb8bdc0bd3cf9d9ccb6316e634a67056fa13b741b + languageName: node + linkType: hard + +"@babel/plugin-transform-classes@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-classes@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-compilation-targets": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-replace-supers": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + globals: "npm:^11.1.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/02742ea7cd25be286c982e672619effca528d7a931626a6f3d6cea11852951b7ee973276127eaf6418ac0e18c4d749a16b520709c707e86a67012bd23ff2927d + languageName: node + linkType: hard + +"@babel/plugin-transform-computed-properties@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-computed-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/template": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/948c0ae3ce0ba2375241d122a9bc7cda4a7ac8110bd8a62cd804bc46a5fdb7a7a42c7799c4cd972e14e0a579d2bd0999b92e53177b73f240bb0d4b09972c758b + languageName: node + linkType: hard + +"@babel/plugin-transform-destructuring@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-destructuring@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7beec5fda665d108f69d5023aa7c298a1e566b973dd41290faa18aeea70f6f571295c1ece0a058f3ceb6c6c96de76de7cd34f5a227fbf09a1b8d8a735d28ca49 + languageName: node + linkType: hard + +"@babel/plugin-transform-dotall-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7c3471ae5cf7521fd8da5b03e137e8d3733fc5ee4524ce01fb0c812f0bb77cb2c9657bc8a6253186be3a15bb4caa8974993c7ddc067f554ecc6a026f0a3b5e12 + languageName: node + linkType: hard + +"@babel/plugin-transform-duplicate-keys@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d0c74894b9bf6ff2a04189afffb9cd43d87ebd7b7943e51a827c92d2aaa40fa89ac81565a2fd6fbeabf9e38413a9264c45862eee2b017f1d49046cc3c8ff06b4 + languageName: node + linkType: hard + +"@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-duplicate-named-capturing-groups-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/a8039a6d2b90e011c7b30975edee47b5b1097cf3c2f95ec1f5ddd029898d783a995f55f7d6eb8d6bb8873c060fb64f9f1ccba938dfe22d118d09cf68e0cd3bf6 + languageName: node + linkType: hard + +"@babel/plugin-transform-dynamic-import@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5e643a8209072b668350f5788f23c64e9124f81f958b595c80fecca6561086d8ef346c04391b9e5e4cad8b8cbe22c258f0cd5f4ea89b97e74438e7d1abfd98cf + languageName: node + linkType: hard + +"@babel/plugin-transform-exponentiation-operator@npm:^7.26.3": + version: 7.26.3 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.26.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/cac922e851c6a0831fdd2e3663564966916015aeff7f4485825fc33879cbc3a313ceb859814c9200248e2875d65bb13802a723e5d7d7b40a2e90da82a5a1e15c + languageName: node + linkType: hard + +"@babel/plugin-transform-export-namespace-from@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/f291ea2ec5f36de9028a00cbd5b32f08af281b8183bf047200ff001f4cb260be56f156b2449f42149448a4a033bd6e86a3a7f06d0c2825532eb0ae6b03058dfb + languageName: node + linkType: hard + +"@babel/plugin-transform-for-of@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/plugin-transform-for-of@npm:7.26.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e28a521521cf9f84ddd69ca8da7c89fb9f7aa38e4dea35742fe973e4e1d7c23f9cee1a4861a2fdd9e9f18ff945886a44d7335cea1c603b96bfcb1c7c8791ef09 + languageName: node + linkType: hard + +"@babel/plugin-transform-function-name@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-function-name@npm:7.25.9" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/8e67fbd1dd367927b8b6afdf0a6e7cb3a3fd70766c52f700ca77428b6d536f6c9d7ec643e7762d64b23093233765c66bffa40e31aabe6492682879bcb45423e1 + languageName: node + linkType: hard + +"@babel/plugin-transform-json-strings@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-json-strings@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/00bc2d4751dfc9d44ab725be16ee534de13cfd7e77dfb386e5dac9e48101ce8fcbc5971df919dc25b3f8a0fa85d6dc5f2a0c3cf7ec9d61c163d9823c091844f0 + languageName: node + linkType: hard + +"@babel/plugin-transform-literals@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/00b14e9c14cf1e871c1f3781bf6334cac339c360404afd6aba63d2f6aca9270854d59a2b40abff1c4c90d4ffdca614440842d3043316c2f0ceb155fdf7726b3b + languageName: node + linkType: hard + +"@babel/plugin-transform-logical-assignment-operators@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/6e2051e10b2d6452980fc4bdef9da17c0d6ca48f81b8529e8804b031950e4fff7c74a7eb3de4a2b6ad22ffb631d0b67005425d232cce6e2b29ce861c78ed04f5 + languageName: node + linkType: hard + +"@babel/plugin-transform-member-expression-literals@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/91d17b451bcc5ea9f1c6f8264144057ade3338d4b92c0b248366e4db3a7790a28fd59cc56ac433a9627a9087a17a5684e53f4995dd6ae92831cb72f1bd540b54 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-amd@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-modules-amd@npm:7.25.9" + dependencies: + "@babel/helper-module-transforms": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/849957d9484d0a2d93331226ed6cf840cee7d57454549534c447c93f8b839ef8553eae9877f8f550e3c39f14d60992f91244b2e8e7502a46064b56c5d68ba855 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-commonjs@npm:^7.25.9, @babel/plugin-transform-modules-commonjs@npm:^7.26.3": + version: 7.26.3 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.26.3" + dependencies: + "@babel/helper-module-transforms": "npm:^7.26.0" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/82e59708f19f36da29531a64a7a94eabbf6ff46a615e0f5d9b49f3f59e8ef10e2bac607d749091508d3fa655146c9e5647c3ffeca781060cdabedb4c7a33c6f2 + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-systemjs@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.25.9" + dependencies: + "@babel/helper-module-transforms": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + "@babel/traverse": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/8299e3437542129c2684b86f98408c690df27db4122a79edded4782cf04e755d6ecb05b1e812c81a34224a81e664303392d5f3c36f3d2d51fdc99bb91c881e9a + languageName: node + linkType: hard + +"@babel/plugin-transform-modules-umd@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-modules-umd@npm:7.25.9" + dependencies: + "@babel/helper-module-transforms": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/fa11a621f023e2ac437b71d5582f819e667c94306f022583d77da9a8f772c4128861a32bbb63bef5cba581a70cd7dbe87a37238edaafcfacf889470c395e7076 + languageName: node + linkType: hard + +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/32b14fda5c885d1706863f8af2ee6c703d39264355b57482d3a24fce7f6afbd4c7a0896e501c0806ed2b0759beb621bf7f3f7de1fbbc82026039a98d961e78ef + languageName: node + linkType: hard + +"@babel/plugin-transform-new-target@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-new-target@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7b5f1b7998f1cf183a7fa646346e2f3742e5805b609f28ad5fee22d666a15010f3e398b7e1ab78cddb7901841a3d3f47135929af23d54e8bf4ce69b72051f71e + languageName: node + linkType: hard + +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.26.6": + version: 7.26.6 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.26.6" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/574d6db7cbc5c092db5d1dece8ce26195e642b9c40dbfeaf3082058a78ad7959c1c333471cdd45f38b784ec488850548075d527b178c5010ee9bff7aa527cc7a + languageName: node + linkType: hard + +"@babel/plugin-transform-numeric-separator@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ad63ad341977844b6f9535fcca15ca0d6d6ad112ed9cc509d4f6b75e9bf4b1b1a96a0bcb1986421a601505d34025373608b5f76d420d924b4e21f86b1a1f2749 + languageName: node + linkType: hard + +"@babel/plugin-transform-object-rest-spread@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.25.9" + dependencies: + "@babel/helper-compilation-targets": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/plugin-transform-parameters": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/02077d8abd83bf6a48ff0b59e98d7561407cf75b591cffd3fdc5dc5e9a13dec1c847a7a690983762a3afecddb244831e897e0515c293e7c653b262c30cd614af + languageName: node + linkType: hard + +"@babel/plugin-transform-object-super@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-object-super@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-replace-supers": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/0348d00e76f1f15ada44481a76e8c923d24cba91f6e49ee9b30d6861eb75344e7f84d62a18df8a6f9e9a7eacf992f388174b7f9cc4ce48287bcefca268c07600 + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-catch-binding@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/722fd5ee12ab905309d4e84421584fce4b6d9e6b639b06afb20b23fa809e6ab251e908a8d5e8b14d066a28186b8ef8f58d69fd6eca9ce1b9ef7af08333378f6c + languageName: node + linkType: hard + +"@babel/plugin-transform-optional-chaining@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/041ad2beae5affb8e68a0bcb6882a2dadb758db3c629a0e012f57488ab43a822ac1ea17a29db8ef36560a28262a5dfa4dbbbf06ed6e431db55abe024b7cd3961 + languageName: node + linkType: hard + +"@babel/plugin-transform-parameters@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-parameters@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/aecb446754b9e09d6b6fa95fd09e7cf682f8aaeed1d972874ba24c0a30a7e803ad5f014bb1fffc7bfeed22f93c0d200947407894ea59bf7687816f2f464f8df3 + languageName: node + linkType: hard + +"@babel/plugin-transform-private-methods@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-private-methods@npm:7.25.9" + dependencies: + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/64bd71de93d39daefa3e6c878d6f2fd238ed7d4ecfb13b0e771ddbbc131487def3ceb405b62b534a5cbb5043046b504e1b189b0a45229cc75af979a9fbcaa7bd + languageName: node + linkType: hard + +"@babel/plugin-transform-private-property-in-object@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d4965de19d9f204e692cc74dbc39f0bb469e5f29df96dd4457ea23c5e5596fba9d5af76eaa96f9d48a9fc20ec5f12a94c679285e36b8373406868ea228109e27 + languageName: node + linkType: hard + +"@babel/plugin-transform-property-literals@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-property-literals@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/1639e35b2438ccf3107af760d34e6a8e4f9acdd3ae6186ae771a6e3029bd59dfe778e502d67090f1185ecda5c16addfed77561e39c518a3f51ff10d41790e106 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-constant-elements@npm:^7.21.3": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-constant-elements@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/50aca3df122cf801abd251cc2507ef3011ead8f047d31d8f35b10627dd722f6a165245b09e81b3c6876515fd266a97aed0052f6b409aa1fe961fb36dd7cc0822 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-display-name@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-display-name@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/63a0f962d64e71baf87c212755419e25c637d2d95ea6fdc067df26b91e606ae186442ae815b99a577eca9bf5404d9577ecad218a3cf42d0e9e286ca7b003a992 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-development@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.25.9" + dependencies: + "@babel/plugin-transform-react-jsx": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c0b92ff9eb029620abf320ff74aae182cea87524723d740fb48a4373d0d16bddf5edbe1116e7ba341332a5337e55c2ceaee8b8cad5549e78af7f4b3cfe77debb + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-self@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-self@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/ce0e289f6af93d7c4dc6b385512199c5bb138ae61507b4d5117ba88b6a6b5092f704f1bdf80080b7d69b1b8c36649f2a0b250e8198667d4d30c08bbb1546bd99 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx-source@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx-source@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/fc9ee08efc9be7cbd2cc6788bbf92579adf3cab37912481f1b915221be3d22b0613b5b36a721df5f4c0ab65efe8582fcf8673caab83e6e1ce4cc04ceebf57dfa + languageName: node + linkType: hard + +"@babel/plugin-transform-react-jsx@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-jsx@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-module-imports": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/plugin-syntax-jsx": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/5c9947e8ed141f7606f54da3e05eea1074950c5b8354c39df69cb7f43cb5a83c6c9d7973b24bc3d89341c8611f8ad50830a98ab10d117d850e6bdd8febdce221 + languageName: node + linkType: hard + +"@babel/plugin-transform-react-pure-annotations@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.25.9" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/7c8eac04644ad19dcd71bb8e949b0ae22b9e548fa4a58e545d3d0342f647fb89db7f8789a7c5b8074d478ce6d3d581eaf47dd4b36027e16fd68211c383839abc + languageName: node + linkType: hard + +"@babel/plugin-transform-regenerator@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-regenerator@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + regenerator-transform: "npm:^0.15.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/eef3ffc19f7d291b863635f32b896ad7f87806d9219a0d3404a470219abcfc5b43aabecd691026c48e875b965760d9c16abee25e6447272233f30cd07f453ec7 + languageName: node + linkType: hard + +"@babel/plugin-transform-regexp-modifiers@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/plugin-transform-regexp-modifiers@npm:7.26.0" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/4abc1db6c964efafc7a927cda814c7275275afa4b530483e0936fd614de23cb5802f7ca43edaa402008a723d4e7eac282b6f5283aa2eeb3b27da6d6c1dd7f8ed + languageName: node + linkType: hard + +"@babel/plugin-transform-reserved-words@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-reserved-words@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/8b028b80d1983e3e02f74e21924323cc66ba930e5c5758909a122aa7d80e341b8b0f42e1698e42b50d47a6ba911332f584200b28e1a4e2104b7514d9dc011e96 + languageName: node + linkType: hard + +"@babel/plugin-transform-shorthand-properties@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/05a20d45f0fb62567644c507ccd4e379c1a74dacf887d2b2cac70247415e3f6d7d3bf4850c8b336053144715fedb6200fc38f7130c4b76c94eec9b9c0c2a8e9b + languageName: node + linkType: hard + +"@babel/plugin-transform-spread@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-spread@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/996c8fed238efc30e0664f9f58bd7ec8c148f4659f84425f68923a094fe891245711d26eb10d1f815f50c124434e076e860dbe9662240844d1b77cd09907dcdf + languageName: node + linkType: hard + +"@babel/plugin-transform-sticky-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/e9612b0615dab4c4fba1c560769616a9bd7b9226c73191ef84b6c3ee185c8b719b4f887cdd8336a0a13400ce606ab4a0d33bc8fa6b4fcdb53e2896d07f2568f6 + languageName: node + linkType: hard + +"@babel/plugin-transform-template-literals@npm:^7.26.8": + version: 7.26.8 + resolution: "@babel/plugin-transform-template-literals@npm:7.26.8" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/205a938ded9554857a604416d369023a961334b6c20943bd861b45f0e5dbbeca1cf6fda1c2049126e38a0d18865993433fdc78eae3028e94836b3b643c08ba0d + languageName: node + linkType: hard + +"@babel/plugin-transform-typeof-symbol@npm:^7.26.7": + version: 7.26.7 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.26.7" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.26.5" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d5640e3457637e6eee1d7205d255602ccca124ed30e4de10ec75ba179d167e0a826ceeab424e119921f5c995dfddf39ef1f2c91efd2dcbf3f0dc1e7931dfd1d1 + languageName: node + linkType: hard + +"@babel/plugin-transform-typescript@npm:^7.25.9": + version: 7.26.8 + resolution: "@babel/plugin-transform-typescript@npm:7.26.8" + dependencies: + "@babel/helper-annotate-as-pure": "npm:^7.25.9" + "@babel/helper-create-class-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.26.5" + "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9" + "@babel/plugin-syntax-typescript": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/c1dc02c357b8de0650d4e757fe71db9ac769b68e282a262ca5af2a7f1ff112c4533d54db6f1f58f13072ad547561b0461c46c08233566b37f778ac5f5550fb41 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-escapes@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/615c84d7c53e1575d54ba9257e753e0b98c5de1e3225237d92f55226eaab8eb5bceb74df43f50f4aa162b0bbcc934ed11feafe2b60b8ec4934ce340fad4b8828 + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-property-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/1685836fc38af4344c3d2a9edbd46f7c7b28d369b63967d5b83f2f6849ec45b97223461cea3d14cc3f0be6ebb284938e637a5ca3955c0e79c873d62f593d615c + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/448004f978279e726af26acd54f63f9002c9e2582ecd70d1c5c4436f6de490fcd817afb60016d11c52f5ef17dbaac2590e8cc7bfaf4e91b58c452cf188c7920f + languageName: node + linkType: hard + +"@babel/plugin-transform-unicode-sets-regex@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.25.9" + dependencies: + "@babel/helper-create-regexp-features-plugin": "npm:^7.25.9" + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/56ee04fbe236b77cbcd6035cbf0be7566d1386b8349154ac33244c25f61170c47153a9423cd1d92855f7d6447b53a4a653d9e8fd1eaeeee14feb4b2baf59bd9f + languageName: node + linkType: hard + +"@babel/preset-env@npm:^7.20.2": + version: 7.26.9 + resolution: "@babel/preset-env@npm:7.26.9" + dependencies: + "@babel/compat-data": "npm:^7.26.8" + "@babel/helper-compilation-targets": "npm:^7.26.5" + "@babel/helper-plugin-utils": "npm:^7.26.5" + "@babel/helper-validator-option": "npm:^7.25.9" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "npm:^7.25.9" + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "npm:^7.25.9" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "npm:^7.25.9" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "npm:^7.25.9" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "npm:^7.25.9" + "@babel/plugin-proposal-private-property-in-object": "npm:7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-import-assertions": "npm:^7.26.0" + "@babel/plugin-syntax-import-attributes": "npm:^7.26.0" + "@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6" + "@babel/plugin-transform-arrow-functions": "npm:^7.25.9" + "@babel/plugin-transform-async-generator-functions": "npm:^7.26.8" + "@babel/plugin-transform-async-to-generator": "npm:^7.25.9" + "@babel/plugin-transform-block-scoped-functions": "npm:^7.26.5" + "@babel/plugin-transform-block-scoping": "npm:^7.25.9" + "@babel/plugin-transform-class-properties": "npm:^7.25.9" + "@babel/plugin-transform-class-static-block": "npm:^7.26.0" + "@babel/plugin-transform-classes": "npm:^7.25.9" + "@babel/plugin-transform-computed-properties": "npm:^7.25.9" + "@babel/plugin-transform-destructuring": "npm:^7.25.9" + "@babel/plugin-transform-dotall-regex": "npm:^7.25.9" + "@babel/plugin-transform-duplicate-keys": "npm:^7.25.9" + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "npm:^7.25.9" + "@babel/plugin-transform-dynamic-import": "npm:^7.25.9" + "@babel/plugin-transform-exponentiation-operator": "npm:^7.26.3" + "@babel/plugin-transform-export-namespace-from": "npm:^7.25.9" + "@babel/plugin-transform-for-of": "npm:^7.26.9" + "@babel/plugin-transform-function-name": "npm:^7.25.9" + "@babel/plugin-transform-json-strings": "npm:^7.25.9" + "@babel/plugin-transform-literals": "npm:^7.25.9" + "@babel/plugin-transform-logical-assignment-operators": "npm:^7.25.9" + "@babel/plugin-transform-member-expression-literals": "npm:^7.25.9" + "@babel/plugin-transform-modules-amd": "npm:^7.25.9" + "@babel/plugin-transform-modules-commonjs": "npm:^7.26.3" + "@babel/plugin-transform-modules-systemjs": "npm:^7.25.9" + "@babel/plugin-transform-modules-umd": "npm:^7.25.9" + "@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.25.9" + "@babel/plugin-transform-new-target": "npm:^7.25.9" + "@babel/plugin-transform-nullish-coalescing-operator": "npm:^7.26.6" + "@babel/plugin-transform-numeric-separator": "npm:^7.25.9" + "@babel/plugin-transform-object-rest-spread": "npm:^7.25.9" + "@babel/plugin-transform-object-super": "npm:^7.25.9" + "@babel/plugin-transform-optional-catch-binding": "npm:^7.25.9" + "@babel/plugin-transform-optional-chaining": "npm:^7.25.9" + "@babel/plugin-transform-parameters": "npm:^7.25.9" + "@babel/plugin-transform-private-methods": "npm:^7.25.9" + "@babel/plugin-transform-private-property-in-object": "npm:^7.25.9" + "@babel/plugin-transform-property-literals": "npm:^7.25.9" + "@babel/plugin-transform-regenerator": "npm:^7.25.9" + "@babel/plugin-transform-regexp-modifiers": "npm:^7.26.0" + "@babel/plugin-transform-reserved-words": "npm:^7.25.9" + "@babel/plugin-transform-shorthand-properties": "npm:^7.25.9" + "@babel/plugin-transform-spread": "npm:^7.25.9" + "@babel/plugin-transform-sticky-regex": "npm:^7.25.9" + "@babel/plugin-transform-template-literals": "npm:^7.26.8" + "@babel/plugin-transform-typeof-symbol": "npm:^7.26.7" + "@babel/plugin-transform-unicode-escapes": "npm:^7.25.9" + "@babel/plugin-transform-unicode-property-regex": "npm:^7.25.9" + "@babel/plugin-transform-unicode-regex": "npm:^7.25.9" + "@babel/plugin-transform-unicode-sets-regex": "npm:^7.25.9" + "@babel/preset-modules": "npm:0.1.6-no-external-plugins" + babel-plugin-polyfill-corejs2: "npm:^0.4.10" + babel-plugin-polyfill-corejs3: "npm:^0.11.0" + babel-plugin-polyfill-regenerator: "npm:^0.6.1" + core-js-compat: "npm:^3.40.0" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/6812ca76bd38165a58fe8354bab5e7204e1aa17d8b9270bd8f8babb08cc7fa94cd29525fe41b553f2ba0e84033d566f10da26012b8ee0f81897005c5225d0051 + languageName: node + linkType: hard + +"@babel/preset-modules@npm:0.1.6-no-external-plugins": + version: 0.1.6-no-external-plugins + resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@babel/types": "npm:^7.4.4" + esutils: "npm:^2.0.2" + peerDependencies: + "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/9d02f70d7052446c5f3a4fb39e6b632695fb6801e46d31d7f7c5001f7c18d31d1ea8369212331ca7ad4e7877b73231f470b0d559162624128f1b80fe591409e6 + languageName: node + linkType: hard + +"@babel/preset-react@npm:^7.18.6": + version: 7.26.3 + resolution: "@babel/preset-react@npm:7.26.3" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-validator-option": "npm:^7.25.9" + "@babel/plugin-transform-react-display-name": "npm:^7.25.9" + "@babel/plugin-transform-react-jsx": "npm:^7.25.9" + "@babel/plugin-transform-react-jsx-development": "npm:^7.25.9" + "@babel/plugin-transform-react-pure-annotations": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/b470dcba11032ef6c832066f4af5c75052eaed49feb0f445227231ef1b5c42aacd6e216988c0bd469fd5728cd27b6b059ca307c9ecaa80c6bb5da4bf1c833e12 + languageName: node + linkType: hard + +"@babel/preset-typescript@npm:^7.21.0": + version: 7.26.0 + resolution: "@babel/preset-typescript@npm:7.26.0" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + "@babel/helper-validator-option": "npm:^7.25.9" + "@babel/plugin-syntax-jsx": "npm:^7.25.9" + "@babel/plugin-transform-modules-commonjs": "npm:^7.25.9" + "@babel/plugin-transform-typescript": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/20d86bc45d2bbfde2f84fc7d7b38746fa6481d4bde6643039ad4b1ff0b804c6d210ee43e6830effd8571f2ff43fa7ffd27369f42f2b3a2518bb92dc86c780c61 + languageName: node + linkType: hard + +"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.24.5, @babel/runtime@npm:^7.8.4": + version: 7.26.9 + resolution: "@babel/runtime@npm:7.26.9" + dependencies: + regenerator-runtime: "npm:^0.14.0" + checksum: 10c0/e8517131110a6ec3a7360881438b85060e49824e007f4a64b5dfa9192cf2bb5c01e84bfc109f02d822c7edb0db926928dd6b991e3ee460b483fb0fac43152d9b + languageName: node + linkType: hard + +"@babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9, @babel/template@npm:^7.3.3": + version: 7.26.9 + resolution: "@babel/template@npm:7.26.9" + dependencies: + "@babel/code-frame": "npm:^7.26.2" + "@babel/parser": "npm:^7.26.9" + "@babel/types": "npm:^7.26.9" + checksum: 10c0/019b1c4129cc01ad63e17529089c2c559c74709d225f595eee017af227fee11ae8a97a6ab19ae6768b8aa22d8d75dcb60a00b28f52e9fa78140672d928bc1ae9 + languageName: node + linkType: hard + +"@babel/traverse@npm:^7.18.9, @babel/traverse@npm:^7.23.2, @babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9": + version: 7.26.9 + resolution: "@babel/traverse@npm:7.26.9" + dependencies: + "@babel/code-frame": "npm:^7.26.2" + "@babel/generator": "npm:^7.26.9" + "@babel/parser": "npm:^7.26.9" + "@babel/template": "npm:^7.26.9" + "@babel/types": "npm:^7.26.9" + debug: "npm:^4.3.1" + globals: "npm:^11.1.0" + checksum: 10c0/51dd57fa39ea34d04816806bfead04c74f37301269d24c192d1406dc6e244fea99713b3b9c5f3e926d9ef6aa9cd5c062ad4f2fc1caa9cf843d5e864484ac955e + languageName: node + linkType: hard + +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.23.0, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.9, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4": + version: 7.26.9 + resolution: "@babel/types@npm:7.26.9" + dependencies: + "@babel/helper-string-parser": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + checksum: 10c0/999c56269ba00e5c57aa711fbe7ff071cd6990bafd1b978341ea7572cc78919986e2aa6ee51dacf4b6a7a6fa63ba4eb3f1a03cf55eee31b896a56d068b895964 + languageName: node + linkType: hard + +"@bcoe/v8-coverage@npm:^0.2.3": + version: 0.2.3 + resolution: "@bcoe/v8-coverage@npm:0.2.3" + checksum: 10c0/6b80ae4cb3db53f486da2dc63b6e190a74c8c3cca16bb2733f234a0b6a9382b09b146488ae08e2b22cf00f6c83e20f3e040a2f7894f05c045c946d6a090b1d52 + languageName: node + linkType: hard + +"@colors/colors@npm:1.5.0": + version: 1.5.0 + resolution: "@colors/colors@npm:1.5.0" + checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44 + languageName: node + linkType: hard + +"@contentstack/live-preview-utils@npm:^3.0.0": + version: 3.1.1 + resolution: "@contentstack/live-preview-utils@npm:3.1.1" + dependencies: + "@preact/compat": "npm:17.1.2" + "@preact/signals": "npm:1.2.2" + "@rollup/rollup-linux-x64-gnu": "npm:4.9.5" + classnames: "npm:^2.5.1" + deepsignal: "npm:^1.5.0" + goober: "npm:^2.1.14" + lodash-es: "npm:^4.17.21" + mustache: "npm:^4.2.0" + preact: "npm:10.19.5" + uuid: "npm:^8.3.2" + dependenciesMeta: + "@rollup/rollup-linux-x64-gnu": + optional: true + checksum: 10c0/898f839e6572ebabaacdd693a0b083cc5b69cb5e90270875fcadea0b054d011e81fe40b561ae62b451c32e39abb6ccee20bb769888fd55782a91b68b5d814b0e + languageName: node + linkType: hard + +"@contentstack/utils@npm:^1.3.15": + version: 1.3.18 + resolution: "@contentstack/utils@npm:1.3.18" + checksum: 10c0/fb25444b21a7c5397e04fcad0fb2bd66035606435d37717742e34a7f085ff8261c63e0d4edcf2c8e082b0c00938b6b811a20600c4494746db64d193eb58f4370 + languageName: node + linkType: hard + +"@cspotcode/source-map-support@npm:^0.8.0": + version: 0.8.1 + resolution: "@cspotcode/source-map-support@npm:0.8.1" + dependencies: + "@jridgewell/trace-mapping": "npm:0.3.9" + checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6 + languageName: node + linkType: hard + +"@cypress/request@npm:^3.0.6": + version: 3.0.7 + resolution: "@cypress/request@npm:3.0.7" + dependencies: + aws-sign2: "npm:~0.7.0" + aws4: "npm:^1.8.0" + caseless: "npm:~0.12.0" + combined-stream: "npm:~1.0.6" + extend: "npm:~3.0.2" + forever-agent: "npm:~0.6.1" + form-data: "npm:~4.0.0" + http-signature: "npm:~1.4.0" + is-typedarray: "npm:~1.0.0" + isstream: "npm:~0.1.2" + json-stringify-safe: "npm:~5.0.1" + mime-types: "npm:~2.1.19" + performance-now: "npm:^2.1.0" + qs: "npm:6.13.1" + safe-buffer: "npm:^5.1.2" + tough-cookie: "npm:^5.0.0" + tunnel-agent: "npm:^0.6.0" + uuid: "npm:^8.3.2" + checksum: 10c0/645328a63eb47903209ec928fd88287fad1b38beb0c40c65cd8d0af11b292e880e47ec53a29592c866ab1e21828664abe6328cd2da8eedb20719a622df37ad58 + languageName: node + linkType: hard + +"@cypress/xvfb@npm:^1.2.4": + version: 1.2.4 + resolution: "@cypress/xvfb@npm:1.2.4" + dependencies: + debug: "npm:^3.1.0" + lodash.once: "npm:^4.1.1" + checksum: 10c0/1bf6224b244f6093033d77f04f6bef719280542656de063cf8ac3f38957b62aa633e6918af0b9673a8bf0123b42a850db51d9729a3ae3da885ac179bc7fc1d26 + languageName: node + linkType: hard + +"@date-fns/tz@npm:^1.2.0": + version: 1.2.0 + resolution: "@date-fns/tz@npm:1.2.0" + checksum: 10c0/411e9d4303b10951f6fd0189d18fb845f0d934a575df2176bc10daf664282c765fb6b057a977e446bbb1229151d89e7788978600a019f1fc24b5c75276d496bd + languageName: node + linkType: hard + +"@emnapi/runtime@npm:^1.2.0": + version: 1.3.1 + resolution: "@emnapi/runtime@npm:1.3.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/060ffede50f1b619c15083312b80a9e62a5b0c87aa8c1b54854c49766c9d69f8d1d3d87bd963a647071263a320db41b25eaa50b74d6a80dcc763c23dbeaafd6c + languageName: node + linkType: hard + +"@esbuild/aix-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/aix-ppc64@npm:0.21.5" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/aix-ppc64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/aix-ppc64@npm:0.25.0" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/android-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-arm64@npm:0.18.20" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/android-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm64@npm:0.21.5" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/android-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/android-arm64@npm:0.25.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/android-arm@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-arm@npm:0.18.20" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@esbuild/android-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm@npm:0.21.5" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@esbuild/android-arm@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/android-arm@npm:0.25.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@esbuild/android-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/android-x64@npm:0.18.20" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/android-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-x64@npm:0.21.5" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/android-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/android-x64@npm:0.25.0" + conditions: os=android & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/darwin-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/darwin-arm64@npm:0.18.20" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/darwin-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-arm64@npm:0.21.5" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/darwin-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/darwin-arm64@npm:0.25.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/darwin-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/darwin-x64@npm:0.18.20" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/darwin-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-x64@npm:0.21.5" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/darwin-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/darwin-x64@npm:0.25.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/freebsd-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/freebsd-arm64@npm:0.18.20" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/freebsd-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-arm64@npm:0.21.5" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/freebsd-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/freebsd-arm64@npm:0.25.0" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/freebsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/freebsd-x64@npm:0.18.20" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/freebsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-x64@npm:0.21.5" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/freebsd-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/freebsd-x64@npm:0.25.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/linux-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-arm64@npm:0.18.20" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/linux-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm64@npm:0.21.5" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/linux-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-arm64@npm:0.25.0" + conditions: os=linux & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/linux-arm@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-arm@npm:0.18.20" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@esbuild/linux-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm@npm:0.21.5" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@esbuild/linux-arm@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-arm@npm:0.25.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@esbuild/linux-ia32@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-ia32@npm:0.18.20" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/linux-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ia32@npm:0.21.5" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/linux-ia32@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-ia32@npm:0.25.0" + conditions: os=linux & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/linux-loong64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-loong64@npm:0.18.20" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + +"@esbuild/linux-loong64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-loong64@npm:0.21.5" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + +"@esbuild/linux-loong64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-loong64@npm:0.25.0" + conditions: os=linux & cpu=loong64 + languageName: node + linkType: hard + +"@esbuild/linux-mips64el@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-mips64el@npm:0.18.20" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + +"@esbuild/linux-mips64el@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-mips64el@npm:0.21.5" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + +"@esbuild/linux-mips64el@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-mips64el@npm:0.25.0" + conditions: os=linux & cpu=mips64el + languageName: node + linkType: hard + +"@esbuild/linux-ppc64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-ppc64@npm:0.18.20" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/linux-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ppc64@npm:0.21.5" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/linux-ppc64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-ppc64@npm:0.25.0" + conditions: os=linux & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/linux-riscv64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-riscv64@npm:0.18.20" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + +"@esbuild/linux-riscv64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-riscv64@npm:0.21.5" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + +"@esbuild/linux-riscv64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-riscv64@npm:0.25.0" + conditions: os=linux & cpu=riscv64 + languageName: node + linkType: hard + +"@esbuild/linux-s390x@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-s390x@npm:0.18.20" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + +"@esbuild/linux-s390x@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-s390x@npm:0.21.5" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + +"@esbuild/linux-s390x@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-s390x@npm:0.25.0" + conditions: os=linux & cpu=s390x + languageName: node + linkType: hard + +"@esbuild/linux-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/linux-x64@npm:0.18.20" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/linux-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-x64@npm:0.21.5" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/linux-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/linux-x64@npm:0.25.0" + conditions: os=linux & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/netbsd-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/netbsd-arm64@npm:0.25.0" + conditions: os=netbsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/netbsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/netbsd-x64@npm:0.18.20" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/netbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/netbsd-x64@npm:0.21.5" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/netbsd-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/netbsd-x64@npm:0.25.0" + conditions: os=netbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/openbsd-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/openbsd-arm64@npm:0.25.0" + conditions: os=openbsd & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/openbsd-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/openbsd-x64@npm:0.18.20" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/openbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/openbsd-x64@npm:0.21.5" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/openbsd-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/openbsd-x64@npm:0.25.0" + conditions: os=openbsd & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/sunos-x64@npm:0.18.20" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/sunos-x64@npm:0.21.5" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/sunos-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/sunos-x64@npm:0.25.0" + conditions: os=sunos & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/win32-arm64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-arm64@npm:0.18.20" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/win32-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-arm64@npm:0.21.5" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/win32-arm64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/win32-arm64@npm:0.25.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@esbuild/win32-ia32@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-ia32@npm:0.18.20" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/win32-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-ia32@npm:0.21.5" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/win32-ia32@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/win32-ia32@npm:0.25.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@esbuild/win32-x64@npm:0.18.20": + version: 0.18.20 + resolution: "@esbuild/win32-x64@npm:0.18.20" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/win32-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-x64@npm:0.21.5" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@esbuild/win32-x64@npm:0.25.0": + version: 0.25.0 + resolution: "@esbuild/win32-x64@npm:0.25.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": + version: 4.4.1 + resolution: "@eslint-community/eslint-utils@npm:4.4.1" + dependencies: + eslint-visitor-keys: "npm:^3.4.3" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252 + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": + version: 4.12.1 + resolution: "@eslint-community/regexpp@npm:4.12.1" + checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/eslintrc@npm:2.1.4" + dependencies: + ajv: "npm:^6.12.4" + debug: "npm:^4.3.2" + espree: "npm:^9.6.0" + globals: "npm:^13.19.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" + minimatch: "npm:^3.1.2" + strip-json-comments: "npm:^3.1.1" + checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 + languageName: node + linkType: hard + +"@eslint/js@npm:8.57.1": + version: 8.57.1 + resolution: "@eslint/js@npm:8.57.1" + checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223 + languageName: node + linkType: hard + +"@formatjs/ecma402-abstract@npm:2.2.4": + version: 2.2.4 + resolution: "@formatjs/ecma402-abstract@npm:2.2.4" + dependencies: + "@formatjs/fast-memoize": "npm:2.2.3" + "@formatjs/intl-localematcher": "npm:0.5.8" + tslib: "npm:2" + checksum: 10c0/3f262533fa704ea7a1a7a8107deee2609774a242c621f8cb5dd4bf4c97abf2fc12f5aeda3f4ce85be18147c484a0ca87303dca6abef53290717e685c55eabd2d + languageName: node + linkType: hard + +"@formatjs/ecma402-abstract@npm:2.3.3": + version: 2.3.3 + resolution: "@formatjs/ecma402-abstract@npm:2.3.3" + dependencies: + "@formatjs/fast-memoize": "npm:2.2.6" + "@formatjs/intl-localematcher": "npm:0.6.0" + decimal.js: "npm:10" + tslib: "npm:2" + checksum: 10c0/63de990c380a1800bc54d97c4aa13a88a92e73b1680f0f561d03f9bf3e23289b7aafd1a92037527c285bd587a44e20504258ac2cbd4564a4138ce2b4612c1495 + languageName: node + linkType: hard + +"@formatjs/fast-memoize@npm:2.2.3": + version: 2.2.3 + resolution: "@formatjs/fast-memoize@npm:2.2.3" + dependencies: + tslib: "npm:2" + checksum: 10c0/f1004c3b280de7e362bd37c5f48ff34c2ba1d6271d4a7b695fed561d1201a3379397824d8bffbf15fecee344d1e70398393bbb04297f242692310a305f12e75b + languageName: node + linkType: hard + +"@formatjs/fast-memoize@npm:2.2.6": + version: 2.2.6 + resolution: "@formatjs/fast-memoize@npm:2.2.6" + dependencies: + tslib: "npm:2" + checksum: 10c0/dccdc21105af673e58ec7b04eb17cd6fde1fb1a7e7a446273ca43f7ab97c26d5c0fcc2b9e80d5b54bf9b80354f9e1e681273c0ed26633ec72f0adc2d116dfd7f + languageName: node + linkType: hard + +"@formatjs/icu-messageformat-parser@npm:2.11.1": + version: 2.11.1 + resolution: "@formatjs/icu-messageformat-parser@npm:2.11.1" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.3.3" + "@formatjs/icu-skeleton-parser": "npm:1.8.13" + tslib: "npm:2" + checksum: 10c0/2e4106d564ede73cc52c97fc4270002f2460c3ded10715a095ec6765c48f951b1e9744cc55679abe046e24e4e22c345e738f7477c43d440d1d10a0235b12df37 + languageName: node + linkType: hard + +"@formatjs/icu-messageformat-parser@npm:2.9.4": + version: 2.9.4 + resolution: "@formatjs/icu-messageformat-parser@npm:2.9.4" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/icu-skeleton-parser": "npm:1.8.8" + tslib: "npm:2" + checksum: 10c0/f1ed14ece7ef0abc9fb62e323b78c994fc772d346801ad5aaa9555e1a7d5c0fda791345f4f2e53a3223f0b82c1a4eaf9a83544c1c20cb39349d1a39bedcf1648 + languageName: node + linkType: hard + +"@formatjs/icu-skeleton-parser@npm:1.8.13": + version: 1.8.13 + resolution: "@formatjs/icu-skeleton-parser@npm:1.8.13" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.3.3" + tslib: "npm:2" + checksum: 10c0/eddea5b7c43745d05178211b25641319e054747e40b42ffaa93ae9940fd42e6f5654d12d42e6998b91b4de4b67a24e3ed779a37394262ec1dd46e693c166729a + languageName: node + linkType: hard + +"@formatjs/icu-skeleton-parser@npm:1.8.8": + version: 1.8.8 + resolution: "@formatjs/icu-skeleton-parser@npm:1.8.8" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + tslib: "npm:2" + checksum: 10c0/5ad78a5682e83b973e6fed4fca68660b944c41d1e941f0c84d69ff3d10ae835330062dc0a2cf0d237d2675ad3463405061a3963c14c2b9d8d1c1911f892b1a8d + languageName: node + linkType: hard + +"@formatjs/intl-displaynames@npm:6.8.5": + version: 6.8.5 + resolution: "@formatjs/intl-displaynames@npm:6.8.5" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/intl-localematcher": "npm:0.5.8" + tslib: "npm:2" + checksum: 10c0/1092d6bac9ba7ee22470b85c9af16802244aa8a54f07e6cd560d15b96e8a08fc359f20dee88a064fe4c9ca8860f439abb109cbb7977b9ccceb846e28aacdf29c + languageName: node + linkType: hard + +"@formatjs/intl-listformat@npm:7.7.5": + version: 7.7.5 + resolution: "@formatjs/intl-listformat@npm:7.7.5" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/intl-localematcher": "npm:0.5.8" + tslib: "npm:2" + checksum: 10c0/f514397f6b05ac29171fffbbd15636fbec086080058c79c159f24edd2038747c22579d46ebf339cbb672f8505ea408e5d960d6751064c16e02d18445cf4e7e61 + languageName: node + linkType: hard + +"@formatjs/intl-localematcher@npm:0.5.8": + version: 0.5.8 + resolution: "@formatjs/intl-localematcher@npm:0.5.8" + dependencies: + tslib: "npm:2" + checksum: 10c0/7a660263986326b662d4cb537e8386331c34fda61fb830b105e6c62d49be58ace40728dae614883b27a41cec7b1df8b44f72f79e16e6028bfca65d398dc04f3b + languageName: node + linkType: hard + +"@formatjs/intl-localematcher@npm:0.6.0": + version: 0.6.0 + resolution: "@formatjs/intl-localematcher@npm:0.6.0" + dependencies: + tslib: "npm:2" + checksum: 10c0/90238e633426ff7237ab2bbe017be044fb2fb185a8d59a0652096ddab9cb1ddf64106d58fafd711ea19c4d3455bd966516ab93574ac3b169d9af2325875fae59 + languageName: node + linkType: hard + +"@formatjs/intl@npm:2.10.15, @formatjs/intl@npm:^2.10.15": + version: 2.10.15 + resolution: "@formatjs/intl@npm:2.10.15" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/fast-memoize": "npm:2.2.3" + "@formatjs/icu-messageformat-parser": "npm:2.9.4" + "@formatjs/intl-displaynames": "npm:6.8.5" + "@formatjs/intl-listformat": "npm:7.7.5" + intl-messageformat: "npm:10.7.7" + tslib: "npm:2" + peerDependencies: + typescript: ^4.7 || 5 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/5d51fd0785d5547f375991d7df2d6303479b0083eeb35c42c30c9633aab77101895498f1eace419fd34fdb5c84aea19037c5280c3a9d85f9c3ffe6eef76b6f39 + languageName: node + linkType: hard + +"@graphql-typed-document-node/core@npm:^3.2.0": + version: 3.2.0 + resolution: "@graphql-typed-document-node/core@npm:3.2.0" + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 10c0/94e9d75c1f178bbae8d874f5a9361708a3350c8def7eaeb6920f2c820e82403b7d4f55b3735856d68e145e86c85cbfe2adc444fdc25519cd51f108697e99346c + languageName: node + linkType: hard + +"@hapi/bourne@npm:^3.0.0": + version: 3.0.0 + resolution: "@hapi/bourne@npm:3.0.0" + checksum: 10c0/2e2df62f6bc6f32b980ba5bbdc09200c93c55c8306399ec0f2781da088a82aab699498c89fe94fec4acf770210f9aee28c75bfc2f04044849ac01b034134e717 + languageName: node + linkType: hard + +"@hapi/hoek@npm:^9.0.0, @hapi/hoek@npm:^9.3.0": + version: 9.3.0 + resolution: "@hapi/hoek@npm:9.3.0" + checksum: 10c0/a096063805051fb8bba4c947e293c664b05a32b47e13bc654c0dd43813a1cec993bdd8f29ceb838020299e1d0f89f68dc0d62a603c13c9cc8541963f0beca055 + languageName: node + linkType: hard + +"@hapi/topo@npm:^5.1.0": + version: 5.1.0 + resolution: "@hapi/topo@npm:5.1.0" + dependencies: + "@hapi/hoek": "npm:^9.0.0" + checksum: 10c0/b16b06d9357947149e032bdf10151eb71aea8057c79c4046bf32393cb89d0d0f7ca501c40c0f7534a5ceca078de0700d2257ac855c15e59fe4e00bba2f25c86f + languageName: node + linkType: hard + +"@hookform/error-message@npm:^2.0.1": + version: 2.0.1 + resolution: "@hookform/error-message@npm:2.0.1" + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + react-hook-form: ^7.0.0 + checksum: 10c0/6b608bcdbd797ddb7c6cfc8c42b6bbac40066181a0c582b1f1a342bfa65fa7e8329cdb8e869a76e33988cd46fe8623d521ea597231b9d33e1f0ba3288e36c58e + languageName: node + linkType: hard + +"@hookform/resolvers@npm:^3.3.4": + version: 3.10.0 + resolution: "@hookform/resolvers@npm:3.10.0" + peerDependencies: + react-hook-form: ^7.0.0 + checksum: 10c0/7ee44533b4cdc28c4fa2a94894c735411e5a1f830f4a617c580533321a9b901df0cc8c1e2fad81ad8d55154ebc5cb844cf9c116a3148ffae2bc48758c33cbb8e + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.13.0": + version: 0.13.0 + resolution: "@humanwhocodes/config-array@npm:0.13.0" + dependencies: + "@humanwhocodes/object-schema": "npm:^2.0.3" + debug: "npm:^4.3.1" + minimatch: "npm:^3.0.5" + checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e + languageName: node + linkType: hard + +"@humanwhocodes/module-importer@npm:^1.0.1": + version: 1.0.1 + resolution: "@humanwhocodes/module-importer@npm:1.0.1" + checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 + languageName: node + linkType: hard + +"@humanwhocodes/object-schema@npm:^2.0.3": + version: 2.0.3 + resolution: "@humanwhocodes/object-schema@npm:2.0.3" + checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c + languageName: node + linkType: hard + +"@img/sharp-darwin-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-darwin-arm64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-darwin-arm64": + optional: true + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@img/sharp-darwin-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-darwin-x64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-darwin-x64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-darwin-x64": + optional: true + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@img/sharp-libvips-darwin-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@img/sharp-libvips-darwin-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-arm@npm:1.0.5": + version: 1.0.5 + resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-s390x@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@img/sharp-linux-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-arm64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linux-arm64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-linux-arm64": + optional: true + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linux-arm@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-arm@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linux-arm": "npm:1.0.5" + dependenciesMeta: + "@img/sharp-libvips-linux-arm": + optional: true + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linux-s390x@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-s390x@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linux-s390x": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-linux-s390x": + optional: true + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linux-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-x64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linux-x64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-linux-x64": + optional: true + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linuxmusl-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-linuxmusl-arm64": + optional: true + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@img/sharp-linuxmusl-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" + dependenciesMeta: + "@img/sharp-libvips-linuxmusl-x64": + optional: true + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@img/sharp-wasm32@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-wasm32@npm:0.33.5" + dependencies: + "@emnapi/runtime": "npm:^1.2.0" + conditions: cpu=wasm32 + languageName: node + linkType: hard + +"@img/sharp-win32-ia32@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-win32-ia32@npm:0.33.5" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@img/sharp-win32-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-win32-x64@npm:0.33.5" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@internationalized/date@npm:^3.6.0, @internationalized/date@npm:^3.7.0": + version: 3.7.0 + resolution: "@internationalized/date@npm:3.7.0" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/4d0979dd49f0f979169073afa2b44ce8ae941407e22d4caba069e26e9d9a0c6d29fc11fb50d5e6fcad351f0f9b180e21cbd440fd4238e899719f5d3c84829985 + languageName: node + linkType: hard + +"@internationalized/message@npm:^3.1.6": + version: 3.1.6 + resolution: "@internationalized/message@npm:3.1.6" + dependencies: + "@swc/helpers": "npm:^0.5.0" + intl-messageformat: "npm:^10.1.0" + checksum: 10c0/8ccb0ed3f39e07c039670fd8a0c24d646c66893acf90f0d937cfbfcd398337004a6599291e32f1ad5c8e5a655042b876f1aefec1bda17a2e54829f4f8dd79586 + languageName: node + linkType: hard + +"@internationalized/number@npm:^3.6.0": + version: 3.6.0 + resolution: "@internationalized/number@npm:3.6.0" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/fbb15c76e002b7cee85c398653a0b8b20c5e6b68b7be20592a56a3363798f68ad1b687289090d370ed89cbbf466ca276ebe5949210cc8d2a89fb6e79b26beb95 + languageName: node + linkType: hard + +"@internationalized/string@npm:^3.2.5": + version: 3.2.5 + resolution: "@internationalized/string@npm:3.2.5" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/cb58fdc69857e558bdde5aa7c256af42cfc86cc72cf74893b91c812124e00cc671ff4ef9360052433b43a6b16090345e6b27be267820ca939a21933321bf1f48 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e + languageName: node + linkType: hard + +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" + dependencies: + minipass: "npm:^7.0.4" + checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 + languageName: node + linkType: hard + +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" + dependencies: + camelcase: "npm:^5.3.1" + find-up: "npm:^4.1.0" + get-package-type: "npm:^0.1.0" + js-yaml: "npm:^3.13.1" + resolve-from: "npm:^5.0.0" + checksum: 10c0/dd2a8b094887da5a1a2339543a4933d06db2e63cbbc2e288eb6431bd832065df0c099d091b6a67436e71b7d6bf85f01ce7c15f9253b4cbebcc3b9a496165ba42 + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a + languageName: node + linkType: hard + +"@jest/console@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/console@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + slash: "npm:^3.0.0" + checksum: 10c0/7be408781d0a6f657e969cbec13b540c329671819c2f57acfad0dae9dbfe2c9be859f38fe99b35dba9ff1536937dc6ddc69fdcd2794812fa3c647a1619797f6c + languageName: node + linkType: hard + +"@jest/core@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/core@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/reporters": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + jest-changed-files: "npm:^29.7.0" + jest-config: "npm:^29.7.0" + jest-haste-map: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-resolve-dependencies: "npm:^29.7.0" + jest-runner: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + jest-watcher: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-ansi: "npm:^6.0.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 10c0/934f7bf73190f029ac0f96662c85cd276ec460d407baf6b0dbaec2872e157db4d55a7ee0b1c43b18874602f662b37cb973dda469a4e6d88b4e4845b521adeeb2 + languageName: node + linkType: hard + +"@jest/environment@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/environment@npm:29.7.0" + dependencies: + "@jest/fake-timers": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-mock: "npm:^29.7.0" + checksum: 10c0/c7b1b40c618f8baf4d00609022d2afa086d9c6acc706f303a70bb4b67275868f620ad2e1a9efc5edd418906157337cce50589a627a6400bbdf117d351b91ef86 + languageName: node + linkType: hard + +"@jest/expect-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect-utils@npm:29.7.0" + dependencies: + jest-get-type: "npm:^29.6.3" + checksum: 10c0/60b79d23a5358dc50d9510d726443316253ecda3a7fb8072e1526b3e0d3b14f066ee112db95699b7a43ad3f0b61b750c72e28a5a1cac361d7a2bb34747fa938a + languageName: node + linkType: hard + +"@jest/expect@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect@npm:29.7.0" + dependencies: + expect: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + checksum: 10c0/b41f193fb697d3ced134349250aed6ccea075e48c4f803159db102b826a4e473397c68c31118259868fd69a5cba70e97e1c26d2c2ff716ca39dc73a2ccec037e + languageName: node + linkType: hard + +"@jest/fake-timers@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/fake-timers@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@sinonjs/fake-timers": "npm:^10.0.2" + "@types/node": "npm:*" + jest-message-util: "npm:^29.7.0" + jest-mock: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/cf0a8bcda801b28dc2e2b2ba36302200ee8104a45ad7a21e6c234148932f826cb3bc57c8df3b7b815aeea0861d7b6ca6f0d4778f93b9219398ef28749e03595c + languageName: node + linkType: hard + +"@jest/globals@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/globals@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/expect": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + jest-mock: "npm:^29.7.0" + checksum: 10c0/a385c99396878fe6e4460c43bd7bb0a5cc52befb462cc6e7f2a3810f9e7bcce7cdeb51908fd530391ee452dc856c98baa2c5f5fa8a5b30b071d31ef7f6955cea + languageName: node + linkType: hard + +"@jest/reporters@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/reporters@npm:29.7.0" + dependencies: + "@bcoe/v8-coverage": "npm:^0.2.3" + "@jest/console": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@jridgewell/trace-mapping": "npm:^0.3.18" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + collect-v8-coverage: "npm:^1.0.0" + exit: "npm:^0.1.2" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + istanbul-lib-coverage: "npm:^3.0.0" + istanbul-lib-instrument: "npm:^6.0.0" + istanbul-lib-report: "npm:^3.0.0" + istanbul-lib-source-maps: "npm:^4.0.0" + istanbul-reports: "npm:^3.1.3" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + slash: "npm:^3.0.0" + string-length: "npm:^4.0.1" + strip-ansi: "npm:^6.0.0" + v8-to-istanbul: "npm:^9.0.1" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 10c0/a754402a799541c6e5aff2c8160562525e2a47e7d568f01ebfc4da66522de39cbb809bbb0a841c7052e4270d79214e70aec3c169e4eae42a03bc1a8a20cb9fa2 + languageName: node + linkType: hard + +"@jest/schemas@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/schemas@npm:29.6.3" + dependencies: + "@sinclair/typebox": "npm:^0.27.8" + checksum: 10c0/b329e89cd5f20b9278ae1233df74016ebf7b385e0d14b9f4c1ad18d096c4c19d1e687aa113a9c976b16ec07f021ae53dea811fb8c1248a50ac34fbe009fdf6be + languageName: node + linkType: hard + +"@jest/source-map@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/source-map@npm:29.6.3" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.18" + callsites: "npm:^3.0.0" + graceful-fs: "npm:^4.2.9" + checksum: 10c0/a2f177081830a2e8ad3f2e29e20b63bd40bade294880b595acf2fc09ec74b6a9dd98f126a2baa2bf4941acd89b13a4ade5351b3885c224107083a0059b60a219 + languageName: node + linkType: hard + +"@jest/test-result@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-result@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + collect-v8-coverage: "npm:^1.0.0" + checksum: 10c0/7de54090e54a674ca173470b55dc1afdee994f2d70d185c80236003efd3fa2b753fff51ffcdda8e2890244c411fd2267529d42c4a50a8303755041ee493e6a04 + languageName: node + linkType: hard + +"@jest/test-sequencer@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-sequencer@npm:29.7.0" + dependencies: + "@jest/test-result": "npm:^29.7.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + slash: "npm:^3.0.0" + checksum: 10c0/593a8c4272797bb5628984486080cbf57aed09c7cfdc0a634e8c06c38c6bef329c46c0016e84555ee55d1cd1f381518cf1890990ff845524c1123720c8c1481b + languageName: node + linkType: hard + +"@jest/transform@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/transform@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@jest/types": "npm:^29.6.3" + "@jridgewell/trace-mapping": "npm:^0.3.18" + babel-plugin-istanbul: "npm:^6.1.1" + chalk: "npm:^4.0.0" + convert-source-map: "npm:^2.0.0" + fast-json-stable-stringify: "npm:^2.1.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + pirates: "npm:^4.0.4" + slash: "npm:^3.0.0" + write-file-atomic: "npm:^4.0.2" + checksum: 10c0/7f4a7f73dcf45dfdf280c7aa283cbac7b6e5a904813c3a93ead7e55873761fc20d5c4f0191d2019004fac6f55f061c82eb3249c2901164ad80e362e7a7ede5a6 + languageName: node + linkType: hard + +"@jest/types@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/types@npm:29.6.3" + dependencies: + "@jest/schemas": "npm:^29.6.3" + "@types/istanbul-lib-coverage": "npm:^2.0.0" + "@types/istanbul-reports": "npm:^3.0.0" + "@types/node": "npm:*" + "@types/yargs": "npm:^17.0.8" + chalk: "npm:^4.0.0" + checksum: 10c0/ea4e493dd3fb47933b8ccab201ae573dcc451f951dc44ed2a86123cd8541b82aa9d2b1031caf9b1080d6673c517e2dcc25a44b2dc4f3fbc37bfc965d444888c0 + languageName: node + linkType: hard + +"@joshwooding/vite-plugin-react-docgen-typescript@npm:0.5.0": + version: 0.5.0 + resolution: "@joshwooding/vite-plugin-react-docgen-typescript@npm:0.5.0" + dependencies: + glob: "npm:^10.0.0" + magic-string: "npm:^0.27.0" + react-docgen-typescript: "npm:^2.2.2" + peerDependencies: + typescript: ">= 4.3.x" + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/dd5bcd01c685c67bcfb4676639f15319937867ad5af0dc083991fe9ae9e66302c72fec53d12e0616a45eadb0ae715bea144d0302f408a44f1eeab14c5160ad4a + languageName: node + linkType: hard + +"@jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.8 + resolution: "@jridgewell/gen-mapping@npm:0.3.8" + dependencies: + "@jridgewell/set-array": "npm:^1.2.1" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + "@jridgewell/trace-mapping": "npm:^0.3.24" + checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.0.3, @jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e + languageName: node + linkType: hard + +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4 + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.13, @jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15, @jridgewell/sourcemap-codec@npm:^1.5.0": + version: 1.5.0 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.0" + checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:0.3.9": + version: 0.3.9 + resolution: "@jridgewell/trace-mapping@npm:0.3.9" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.0.3" + "@jridgewell/sourcemap-codec": "npm:^1.4.10" + checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.1.0" + "@jridgewell/sourcemap-codec": "npm:^1.4.14" + checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4 + languageName: node + linkType: hard + +"@koa/cors@npm:^3.0.0": + version: 3.4.3 + resolution: "@koa/cors@npm:3.4.3" + dependencies: + vary: "npm:^1.1.2" + checksum: 10c0/a43ae2e7031c9a93dfe37e261f18e8926466f5dc41a90c8af6922bcdc06f29da7f817d04dbc19519bd1802300313ab54680541b07e753be3711da8990dfe192b + languageName: node + linkType: hard + +"@laynezh/vite-plugin-lib-assets@npm:^0.5.18": + version: 0.5.26 + resolution: "@laynezh/vite-plugin-lib-assets@npm:0.5.26" + dependencies: + escape-string-regexp: "npm:^4.0.0" + loader-utils: "npm:^3.2.1" + mrmime: "npm:^1.0.1" + semver: "npm:^7.6.0" + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 + checksum: 10c0/70f5220456e26e32e04ad604f384b1f5a83d4cca4114df3ff11ad26b8931aa46836fcc4edb5b450a4a8339b89150b6bea91ee1e95a962f16ae5b6e1998d8a502 + languageName: node + linkType: hard + +"@mdx-js/react@npm:^3.0.0": + version: 3.1.0 + resolution: "@mdx-js/react@npm:3.1.0" + dependencies: + "@types/mdx": "npm:^2.0.0" + peerDependencies: + "@types/react": ">=16" + react: ">=16" + checksum: 10c0/381ed1211ba2b8491bf0ad9ef0d8d1badcdd114e1931d55d44019d4b827cc2752586708f9c7d2f9c3244150ed81f1f671a6ca95fae0edd5797fb47a22e06ceca + languageName: node + linkType: hard + +"@microsoft/api-extractor-model@npm:7.28.13": + version: 7.28.13 + resolution: "@microsoft/api-extractor-model@npm:7.28.13" + dependencies: + "@microsoft/tsdoc": "npm:0.14.2" + "@microsoft/tsdoc-config": "npm:~0.16.1" + "@rushstack/node-core-library": "npm:4.0.2" + checksum: 10c0/da83f6ccc01fac3b8274731327a6d35a45b2d98ce8c1d705a974ca34dd48ac0f9b0fe8e98130d2068ec1ee4e2b1f2942b53e21e6e5897f1d3501a3c4e5910645 + languageName: node + linkType: hard + +"@microsoft/api-extractor@npm:7.43.0": + version: 7.43.0 + resolution: "@microsoft/api-extractor@npm:7.43.0" + dependencies: + "@microsoft/api-extractor-model": "npm:7.28.13" + "@microsoft/tsdoc": "npm:0.14.2" + "@microsoft/tsdoc-config": "npm:~0.16.1" + "@rushstack/node-core-library": "npm:4.0.2" + "@rushstack/rig-package": "npm:0.5.2" + "@rushstack/terminal": "npm:0.10.0" + "@rushstack/ts-command-line": "npm:4.19.1" + lodash: "npm:~4.17.15" + minimatch: "npm:~3.0.3" + resolve: "npm:~1.22.1" + semver: "npm:~7.5.4" + source-map: "npm:~0.6.1" + typescript: "npm:5.4.2" + bin: + api-extractor: bin/api-extractor + checksum: 10c0/1bbd1866508db2c5c0ad771e4aeccef95201319879b5cd2b00c5177cfdedb1ad5bc35a452be9d14ac3cfcdf7c9b7c3a737bc2ada9bdcc48eb0e6e11214169b52 + languageName: node + linkType: hard + +"@microsoft/tsdoc-config@npm:~0.16.1": + version: 0.16.2 + resolution: "@microsoft/tsdoc-config@npm:0.16.2" + dependencies: + "@microsoft/tsdoc": "npm:0.14.2" + ajv: "npm:~6.12.6" + jju: "npm:~1.4.0" + resolve: "npm:~1.19.0" + checksum: 10c0/9e8c176b68f01c8bb38e6365d5b543e471bba59fced6070d9bd35b32461fbd650c2e1a6f686e8dca0cf22bc5e7d796e4213e66bce4426c8cb9864c1f6ca6836c + languageName: node + linkType: hard + +"@microsoft/tsdoc@npm:0.14.2": + version: 0.14.2 + resolution: "@microsoft/tsdoc@npm:0.14.2" + checksum: 10c0/c018857ad439144559ce34a397a29ace7cf5b24b999b8e3c1b88d878338088b3a453eaac4435beaf2c7eae13c4c0aac81e42f96f0f1d48e8d4eeb438eb3bb82f + languageName: node + linkType: hard + +"@netlify/blobs@npm:^8.1.0": + version: 8.1.1 + resolution: "@netlify/blobs@npm:8.1.1" + checksum: 10c0/f0f6290ca9d4b5bcb3d8874dbea9c04669cc6585f029fea9d284c2f16a6f713aeff5f734c64ffd33edfc9b0c98b8198bd2470173719274432b3d6c95a4228f01 + languageName: node + linkType: hard + +"@netlify/functions@npm:^3.0.0": + version: 3.0.0 + resolution: "@netlify/functions@npm:3.0.0" + dependencies: + "@netlify/serverless-functions-api": "npm:1.30.1" + checksum: 10c0/5d47cf2abd056e3984a889cb1efd87123ddf9d68a42642f0c058e0e3040a4a85990d2bf81be755a36609a4f0e8383df60e69cb8a52750d67bc5a35a80d86487e + languageName: node + linkType: hard + +"@netlify/node-cookies@npm:^0.1.0": + version: 0.1.0 + resolution: "@netlify/node-cookies@npm:0.1.0" + checksum: 10c0/5d8034d1fd581930e8100af4e5710b79cb3bb0a0b743c716d0d8a1c347aad767fa75130323f1aaee78080a026a4cafd4eef7d11953de01098a661d765a497b16 + languageName: node + linkType: hard + +"@netlify/plugin-nextjs@npm:^5.9.4": + version: 5.9.4 + resolution: "@netlify/plugin-nextjs@npm:5.9.4" + checksum: 10c0/9256e1154320f41c92dc5007c8e4e5d38c28507b38779e41aeef8975361e1b9dfdfcabebfa27f96bf9eff98553f21f91e4e57a491002214204940a62d1f633a3 + languageName: node + linkType: hard + +"@netlify/serverless-functions-api@npm:1.30.1": + version: 1.30.1 + resolution: "@netlify/serverless-functions-api@npm:1.30.1" + dependencies: + "@netlify/node-cookies": "npm:^0.1.0" + urlpattern-polyfill: "npm:8.0.2" + checksum: 10c0/af77cda0c8a17924e60693497e8ce4f6857a5bdd2a517dbdb646010293a75012da36cd373ff1f6845844e12d24be5db0c1cad2b8167f88072ece428218935aeb + languageName: node + linkType: hard + +"@next/env@npm:14.2.24": + version: 14.2.24 + resolution: "@next/env@npm:14.2.24" + checksum: 10c0/bfcb3750c0143a22fe15b66f4a201502a9d601b2f630034d2f85eb12ce7276be365b6e2ea0398c9bdd493611b95fadfe6769e5cf66d2b19e69b0036b8464566f + languageName: node + linkType: hard + +"@next/env@npm:15.1.7": + version: 15.1.7 + resolution: "@next/env@npm:15.1.7" + checksum: 10c0/ad7761078552d8c88fe3c87224a3761d1bca82a15c747f417f561f92a4521898f227e3e7d2e8e65227a5ac8364ea8a2351c1febec5b5aa2ac1dcf016dd065edd + languageName: node + linkType: hard + +"@next/eslint-plugin-next@npm:14.2.24": + version: 14.2.24 + resolution: "@next/eslint-plugin-next@npm:14.2.24" + dependencies: + glob: "npm:10.3.10" + checksum: 10c0/7330448737348c03f897e2e835be99eb43b03dd8354728615f0f64711410fd965fd45aa7cdc0eeec6fe526b464ba4cd786720e96038d6dbc99be24cd148630d2 + languageName: node + linkType: hard + +"@next/swc-darwin-arm64@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-darwin-arm64@npm:14.2.24" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@next/swc-darwin-arm64@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-darwin-arm64@npm:15.1.7" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@next/swc-darwin-x64@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-darwin-x64@npm:14.2.24" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@next/swc-darwin-x64@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-darwin-x64@npm:15.1.7" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@next/swc-linux-arm64-gnu@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-linux-arm64-gnu@npm:14.2.24" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@next/swc-linux-arm64-gnu@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-linux-arm64-gnu@npm:15.1.7" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@next/swc-linux-arm64-musl@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-linux-arm64-musl@npm:14.2.24" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@next/swc-linux-arm64-musl@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-linux-arm64-musl@npm:15.1.7" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@next/swc-linux-x64-gnu@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-linux-x64-gnu@npm:14.2.24" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@next/swc-linux-x64-gnu@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-linux-x64-gnu@npm:15.1.7" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@next/swc-linux-x64-musl@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-linux-x64-musl@npm:14.2.24" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@next/swc-linux-x64-musl@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-linux-x64-musl@npm:15.1.7" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@next/swc-win32-arm64-msvc@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-win32-arm64-msvc@npm:14.2.24" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@next/swc-win32-arm64-msvc@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-win32-arm64-msvc@npm:15.1.7" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@next/swc-win32-ia32-msvc@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-win32-ia32-msvc@npm:14.2.24" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@next/swc-win32-x64-msvc@npm:14.2.24": + version: 14.2.24 + resolution: "@next/swc-win32-x64-msvc@npm:14.2.24" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@next/swc-win32-x64-msvc@npm:15.1.7": + version: 15.1.7 + resolution: "@next/swc-win32-x64-msvc@npm:15.1.7" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": "npm:2.0.5" + run-parallel: "npm:^1.1.9" + checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb + languageName: node + linkType: hard + +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d + languageName: node + linkType: hard + +"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" + dependencies: + "@nodelib/fs.scandir": "npm:2.1.5" + fastq: "npm:^1.6.0" + checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1 + languageName: node + linkType: hard + +"@nolyfill/is-core-module@npm:1.0.39": + version: 1.0.39 + resolution: "@nolyfill/is-core-module@npm:1.0.39" + checksum: 10c0/34ab85fdc2e0250879518841f74a30c276bca4f6c3e13526d2d1fe515e1adf6d46c25fcd5989d22ea056d76f7c39210945180b4859fc83b050e2da411aa86289 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^3.0.0": + version: 3.0.0 + resolution: "@npmcli/agent@npm:3.0.0" + dependencies: + agent-base: "npm:^7.1.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.1" + lru-cache: "npm:^10.0.1" + socks-proxy-agent: "npm:^8.0.3" + checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/fs@npm:4.0.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5 + languageName: node + linkType: hard + +"@opentelemetry/api-logs@npm:0.53.0": + version: 0.53.0 + resolution: "@opentelemetry/api-logs@npm:0.53.0" + dependencies: + "@opentelemetry/api": "npm:^1.0.0" + checksum: 10c0/969ad3bbb74e3de6fdfe8eb9b3ab86d3dc284ca7bffd0ca67eef64efd08c97a4305696afe0b7b03e5d356f15d0a1a67ac517e5fa7d1ddee6fdc249eef2209fcb + languageName: node + linkType: hard + +"@opentelemetry/api-logs@npm:0.56.0, @opentelemetry/api-logs@npm:^0.56.0": + version: 0.56.0 + resolution: "@opentelemetry/api-logs@npm:0.56.0" + dependencies: + "@opentelemetry/api": "npm:^1.3.0" + checksum: 10c0/af78b5534fd8f93edc23811349c88acf9e7cc2c7d94f58a2b58f70016f97aaa80878096c46283fdb53fb7375df83f1a048ac8d5f52b3dc1c98a2184c3a5d50ff + languageName: node + linkType: hard + +"@opentelemetry/api-logs@npm:0.57.1": + version: 0.57.1 + resolution: "@opentelemetry/api-logs@npm:0.57.1" + dependencies: + "@opentelemetry/api": "npm:^1.3.0" + checksum: 10c0/e2a86c5b72ae5c6050408150a3a67af88e5cacab327003c8f38a5f493d5f197d7b8ada21642c81aabc0918031f593d42cb9faa02294db1ef6a66f0f5d181c2f5 + languageName: node + linkType: hard + +"@opentelemetry/api-logs@npm:0.57.2, @opentelemetry/api-logs@npm:^0.57.1": + version: 0.57.2 + resolution: "@opentelemetry/api-logs@npm:0.57.2" + dependencies: + "@opentelemetry/api": "npm:^1.3.0" + checksum: 10c0/1e514d3fd4ca68e7e8b008794a95ee0562a5d9e1d3ebb02647b245afaa6c2d72cc14e99e3ea47a1d1007f8a965c62bfb6170e1aa26756230bea063cfde2898bf + languageName: node + linkType: hard + +"@opentelemetry/api@npm:^1.0.0, @opentelemetry/api@npm:^1.3.0, @opentelemetry/api@npm:^1.8, @opentelemetry/api@npm:^1.9.0": + version: 1.9.0 + resolution: "@opentelemetry/api@npm:1.9.0" + checksum: 10c0/9aae2fe6e8a3a3eeb6c1fdef78e1939cf05a0f37f8a4fae4d6bf2e09eb1e06f966ece85805626e01ba5fab48072b94f19b835449e58b6d26720ee19a58298add + languageName: node + linkType: hard + +"@opentelemetry/context-async-hooks@npm:^1.30.1": + version: 1.30.1 + resolution: "@opentelemetry/context-async-hooks@npm:1.30.1" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/3e8114d360060a5225226d2fcd8df08cd542246003790a7f011c0774bc60b8a931f46f4c6673f3977a7d9bba717de6ee028cae51b752c2567053d7f46ed3eba3 + languageName: node + linkType: hard + +"@opentelemetry/core@npm:1.29.0": + version: 1.29.0 + resolution: "@opentelemetry/core@npm:1.29.0" + dependencies: + "@opentelemetry/semantic-conventions": "npm:1.28.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/393fa276262ecc0e7bd7db5f507a2118df0725afab0cea1cb071b8d0ec879c08d9d163a83bb13f77a6bd0ad0cb66094856eb19caf225da32d3b1767156105d26 + languageName: node + linkType: hard + +"@opentelemetry/core@npm:1.30.1, @opentelemetry/core@npm:^1.1.0, @opentelemetry/core@npm:^1.26.0, @opentelemetry/core@npm:^1.30.1, @opentelemetry/core@npm:^1.8.0": + version: 1.30.1 + resolution: "@opentelemetry/core@npm:1.30.1" + dependencies: + "@opentelemetry/semantic-conventions": "npm:1.28.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/4c25ba50a6137c2ba9ca563fb269378f3c9ca6fd1b3f15dbb6eff78eebf5656f281997cbb7be8e51c01649fd6ad091083fcd8a42dd9b5dfac907dc06d7cfa092 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-amqplib@npm:^0.46.0": + version: 0.46.1 + resolution: "@opentelemetry/instrumentation-amqplib@npm:0.46.1" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.1" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/4a8b870ccaa64cfd200663ec14385aca7eeb7146124d82e566f3d48678f237c9a56661ae3401345fe0dce5c56366ae02a312dc7905eb4fd6e073df2cface30fb + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-connect@npm:0.43.0": + version: 0.43.0 + resolution: "@opentelemetry/instrumentation-connect@npm:0.43.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + "@types/connect": "npm:3.4.36" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/f296f35e9edd2b97aa34323b7b4eea9f7785aec2bd375b995f175305e784d463bc31a40ab5aed3c44eb8f2045b268de64f73f0876de9e5d5a3004c8e37f830dd + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-dataloader@npm:0.16.0": + version: 0.16.0 + resolution: "@opentelemetry/instrumentation-dataloader@npm:0.16.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/d1b9bcb8c4e4819bebee15e02f742c22209f4d3e0a6cfb83d772d095a9faad9384885fb455994b55c546004ef999fea4234765b9e8f59948b5baec585a7982fa + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-express@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-express@npm:0.47.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/0383a6563c755f2891d632de5043322fbed5548fd2d000fd4ff8d112ca5e6db725df5e42e7ff2b4251e6719d27fb660865aef9d7c001e48177e58cb9b36d5199 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-fastify@npm:0.44.1": + version: 0.44.1 + resolution: "@opentelemetry/instrumentation-fastify@npm:0.44.1" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/75bb26bf3a3b159175e125cf06c1c0127a342bc05b4563c21489b6c4ed27569036deba5ecbbb88397745f44126f78be9752e0a2bd9e3056b9b5a5adc0464e173 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-fs@npm:0.19.0": + version: 0.19.0 + resolution: "@opentelemetry/instrumentation-fs@npm:0.19.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/c51983e29076459728bac7b0541ee5c5e111b85583baf7c25e09a7cbf5667dae030dbce0669ae44d385528699febde1ae638b725671ff1afe3c67f70cf9fd4d3 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-generic-pool@npm:0.43.0": + version: 0.43.0 + resolution: "@opentelemetry/instrumentation-generic-pool@npm:0.43.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/de34c0cebf09fd4213f2447a08929a2d32dae397b921b27cf352eef2b09ac009606330fefae6ae851d3d1559e987c80b35118e588db6447e87366dd2009ddd12 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-graphql@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-graphql@npm:0.47.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/19c15ed4c00240834b354970d9efc46b91677a31b1ca7e92202b5bae67c19bd5beb45bf529683c0fde5a9085fc72fa45af3305a359830ca6d02d1bd8d6ff772b + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-hapi@npm:0.45.1": + version: 0.45.1 + resolution: "@opentelemetry/instrumentation-hapi@npm:0.45.1" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/9248e640fc810298d869ace6db3a5755f8b2be2250e799961ed27d01e7fd6127c0652434933ebb02c820ea3ba362f6bc849e9b2c9519722a73d7b875ec2a1947 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-http@npm:0.57.1": + version: 0.57.1 + resolution: "@opentelemetry/instrumentation-http@npm:0.57.1" + dependencies: + "@opentelemetry/core": "npm:1.30.1" + "@opentelemetry/instrumentation": "npm:0.57.1" + "@opentelemetry/semantic-conventions": "npm:1.28.0" + forwarded-parse: "npm:2.1.2" + semver: "npm:^7.5.2" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/69c83e4d45f5c9b0f7d80d47807c4d1df7735c248eee1412633d12493ed67e9c613accfc540df926de2e6905ae87cf7aaf84dc9ad4efb2d7127ab7c5c7ab1f2d + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-ioredis@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-ioredis@npm:0.47.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/redis-common": "npm:^0.36.2" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/f7137854d4357aa0d0222c50ee1be26baa5a06a394cdd5195f107cd69374ef4824c6169e39f9a71a0c0e69ad9cc99afec7abcf23af2e5b468bfb3433b0b8dee0 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-kafkajs@npm:0.7.0": + version: 0.7.0 + resolution: "@opentelemetry/instrumentation-kafkajs@npm:0.7.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/8b9b43c0a9eaf7f922232395dc33b26f3fb8aa2004f5a68b7b391eb8be33c1871f9f1f57562482d4eab1203100c92ca982feb447f006877f9265ceffe02d538f + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-knex@npm:0.44.0": + version: 0.44.0 + resolution: "@opentelemetry/instrumentation-knex@npm:0.44.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/6749178f9aebb2d04d6208980aed40d2fa02a90bacd5ebe41397dda8fb445314221993a4c3c987f0d65a6b3ea400c1b36d0bf84427c87bbdafc9d07aedd14231 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-koa@npm:0.47.0": + version: 0.47.0 + resolution: "@opentelemetry/instrumentation-koa@npm:0.47.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/10d0aaa252ae582698b499af83d27634975693696819b486786ac4052089251f6dfb78afa490c3d200e50fa2147401b943e80a8986bc3f4d98f98e141063b880 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-lru-memoizer@npm:0.44.0": + version: 0.44.0 + resolution: "@opentelemetry/instrumentation-lru-memoizer@npm:0.44.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/b3ed1f92e5aef2828c2fea1b9737e23d4a1dbc0c5269913c26de097717a3cbdbdddf8f6b6f76f1eb57f577c99c854aecdf6ab6a9046e3a308cea2290755a69bc + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-mongodb@npm:0.51.0": + version: 0.51.0 + resolution: "@opentelemetry/instrumentation-mongodb@npm:0.51.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/9d6f5517aa24674134568d87f7ccb014ddfcfa5621ebc2d69fb5cf9d41acd88a03fae5e2dc21a40974ac5a1eed7d7705dc94779a900247aee04c092cc031068d + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-mongoose@npm:0.46.0": + version: 0.46.0 + resolution: "@opentelemetry/instrumentation-mongoose@npm:0.46.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/9426eb51277f93c728fd829abbeaac1d72f379f19e0c6b97f2c0f4b441c1d2942adc704465e65d6df26b0d7aff931370fd98932278c24f2d2f60363513f6f5ca + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-mysql2@npm:0.45.0": + version: 0.45.0 + resolution: "@opentelemetry/instrumentation-mysql2@npm:0.45.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + "@opentelemetry/sql-common": "npm:^0.40.1" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/a9a884911e753b109654147784753f8251d97ce7382b674027fa273bc20cf8589dcacf6a96b402a28c2674c0553b1db9f299940b67a419a789bdfae95db7fc7f + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-mysql@npm:0.45.0": + version: 0.45.0 + resolution: "@opentelemetry/instrumentation-mysql@npm:0.45.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + "@types/mysql": "npm:2.15.26" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/58bf75a8c20b4265e114a1fde5a197b4754f3a085b3cf28538693e14f773ef1d4fea7c45b076504ba6a199b7b0959488fd4e01742c3945330e99923622688ece + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-nestjs-core@npm:0.44.0": + version: 0.44.0 + resolution: "@opentelemetry/instrumentation-nestjs-core@npm:0.44.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/0c97c227aa61fb7fd83b5290e54c81c2b6894a41924a25900bedc4289599274785db00e0888576bb3312dac198beb01bcb824fa8839a806a4fa95d1d6d45df1c + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-pg@npm:0.50.0": + version: 0.50.0 + resolution: "@opentelemetry/instrumentation-pg@npm:0.50.0" + dependencies: + "@opentelemetry/core": "npm:^1.26.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:1.27.0" + "@opentelemetry/sql-common": "npm:^0.40.1" + "@types/pg": "npm:8.6.1" + "@types/pg-pool": "npm:2.0.6" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/d90efe69422c1a1d8825920504bcf0cb4e9028fb15c470fc83fdfcff407cad1df31208b8e74a10ec68cfdfb2f4c8e708624f783ae7389cc029e0581ca6eb2408 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-redis-4@npm:0.46.0": + version: 0.46.0 + resolution: "@opentelemetry/instrumentation-redis-4@npm:0.46.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/redis-common": "npm:^0.36.2" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/e1647197899c594244de65c60db9dcc5981c215b489b2af3f463e91c4700b4535f97c6bddb390b778dd57879b84b3faba95fcf1da5584b7a2f5bb265724fc0ec + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-tedious@npm:0.18.0": + version: 0.18.0 + resolution: "@opentelemetry/instrumentation-tedious@npm:0.18.0" + dependencies: + "@opentelemetry/instrumentation": "npm:^0.57.0" + "@opentelemetry/semantic-conventions": "npm:^1.27.0" + "@types/tedious": "npm:^4.0.14" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/b5fbeb4ca80fdc7a064d6485d3a20c656ee09bc1962c59aaec5cceb5111afd80b34e78f4346c20c005e8b5f8b44b02248771856cbc40da07b5a83eb46ac32df1 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation-undici@npm:0.10.0": + version: 0.10.0 + resolution: "@opentelemetry/instrumentation-undici@npm:0.10.0" + dependencies: + "@opentelemetry/core": "npm:^1.8.0" + "@opentelemetry/instrumentation": "npm:^0.57.0" + peerDependencies: + "@opentelemetry/api": ^1.7.0 + checksum: 10c0/a790fe4edc818d6a3670ff50b6fc3e62806bf50b4660af104ebd1c3fc954f834e46a7e25d4cb20f0351ab779158b9422f09c4a64a1cb5481f7021c69e12dcef4 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation@npm:0.57.1": + version: 0.57.1 + resolution: "@opentelemetry/instrumentation@npm:0.57.1" + dependencies: + "@opentelemetry/api-logs": "npm:0.57.1" + "@types/shimmer": "npm:^1.2.0" + import-in-the-middle: "npm:^1.8.1" + require-in-the-middle: "npm:^7.1.1" + semver: "npm:^7.5.2" + shimmer: "npm:^1.2.1" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/d09e90584e218f8c4127ba680c3643e7167cb15af5a94581220e70e03938a9738f661a9f6aa0e7dc78f50f1ff8d2fdfcc9f9cd6252bcfd226b40553bc9399e1e + languageName: node + linkType: hard + +"@opentelemetry/instrumentation@npm:^0.49 || ^0.50 || ^0.51 || ^0.52.0 || ^0.53.0": + version: 0.53.0 + resolution: "@opentelemetry/instrumentation@npm:0.53.0" + dependencies: + "@opentelemetry/api-logs": "npm:0.53.0" + "@types/shimmer": "npm:^1.2.0" + import-in-the-middle: "npm:^1.8.1" + require-in-the-middle: "npm:^7.1.1" + semver: "npm:^7.5.2" + shimmer: "npm:^1.2.1" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/943e289926812272cb77cda5e0a6b662bc6a92812b66420ceeca1c764f2e3a13364f6bbed7c9e84a17ad677474101ea3c598ef6a6cca982c35bfd24be6f6a25e + languageName: node + linkType: hard + +"@opentelemetry/instrumentation@npm:^0.56.0": + version: 0.56.0 + resolution: "@opentelemetry/instrumentation@npm:0.56.0" + dependencies: + "@opentelemetry/api-logs": "npm:0.56.0" + "@types/shimmer": "npm:^1.2.0" + import-in-the-middle: "npm:^1.8.1" + require-in-the-middle: "npm:^7.1.1" + semver: "npm:^7.5.2" + shimmer: "npm:^1.2.1" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/31c79f2cfe832c42dd7892b248d474dc6fac134f3ff58faea746abf1b25a5127c4a8608296792bf8ed9c838a1eb0384bf2f51a5123f6569033e346733476e7c9 + languageName: node + linkType: hard + +"@opentelemetry/instrumentation@npm:^0.57.0, @opentelemetry/instrumentation@npm:^0.57.1": + version: 0.57.2 + resolution: "@opentelemetry/instrumentation@npm:0.57.2" + dependencies: + "@opentelemetry/api-logs": "npm:0.57.2" + "@types/shimmer": "npm:^1.2.0" + import-in-the-middle: "npm:^1.8.1" + require-in-the-middle: "npm:^7.1.1" + semver: "npm:^7.5.2" + shimmer: "npm:^1.2.1" + peerDependencies: + "@opentelemetry/api": ^1.3.0 + checksum: 10c0/79ca65b66357665d19f89da7027da25ea1c6b55ecdacb0a99534923743c80deb9282870db563de8ae284b13e7e0aab8413efa1937f199deeaef069e07c7e4875 + languageName: node + linkType: hard + +"@opentelemetry/redis-common@npm:^0.36.2": + version: 0.36.2 + resolution: "@opentelemetry/redis-common@npm:0.36.2" + checksum: 10c0/4cb831628551b9f13dca8d65897e300ff7be0e256b77f455a26fb053bbdfc7997b27d066ab1402ca929e7ac77598e0d593f91762d8af9f798c19ba1524e9d078 + languageName: node + linkType: hard + +"@opentelemetry/resources@npm:1.29.0": + version: 1.29.0 + resolution: "@opentelemetry/resources@npm:1.29.0" + dependencies: + "@opentelemetry/core": "npm:1.29.0" + "@opentelemetry/semantic-conventions": "npm:1.28.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/10a91597b2ae92eeeeee9645c8147056b930739023bde4f18190317f7e8a05acd9e440b29d04be3580f7af4ffe5ff629d970264278f86574c429685f4804a006 + languageName: node + linkType: hard + +"@opentelemetry/resources@npm:1.30.1, @opentelemetry/resources@npm:^1.29.0, @opentelemetry/resources@npm:^1.30.1": + version: 1.30.1 + resolution: "@opentelemetry/resources@npm:1.30.1" + dependencies: + "@opentelemetry/core": "npm:1.30.1" + "@opentelemetry/semantic-conventions": "npm:1.28.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/688e73258283c80662bfa9a858aaf73bf3b832a18d96e546d0dddfa6dcec556cdfa087a1d0df643435293406009e4122d7fb7eeea69aa87b539d3bab756fba74 + languageName: node + linkType: hard + +"@opentelemetry/sdk-logs@npm:^0.56.0": + version: 0.56.0 + resolution: "@opentelemetry/sdk-logs@npm:0.56.0" + dependencies: + "@opentelemetry/api-logs": "npm:0.56.0" + "@opentelemetry/core": "npm:1.29.0" + "@opentelemetry/resources": "npm:1.29.0" + peerDependencies: + "@opentelemetry/api": ">=1.4.0 <1.10.0" + checksum: 10c0/abd5584c8d98a71bfefdca4b864f69714d0e638c5ad9fe4819744b938aea362c9602b884da1da24ae394bccbe044246463a208e775b3ac4718eadaff7fac295d + languageName: node + linkType: hard + +"@opentelemetry/sdk-logs@npm:^0.57.1": + version: 0.57.2 + resolution: "@opentelemetry/sdk-logs@npm:0.57.2" + dependencies: + "@opentelemetry/api-logs": "npm:0.57.2" + "@opentelemetry/core": "npm:1.30.1" + "@opentelemetry/resources": "npm:1.30.1" + peerDependencies: + "@opentelemetry/api": ">=1.4.0 <1.10.0" + checksum: 10c0/dda61cf656a93d2f5ef1ca0495db59bfa33efc8ca7ee11018850a9ff78ee0459fb0393e70be7ae5d3cd084e0652d36fbf5778c7b3e9028c6668f9bf0d6c9473e + languageName: node + linkType: hard + +"@opentelemetry/sdk-metrics@npm:^1.25.1, @opentelemetry/sdk-metrics@npm:^1.30.1": + version: 1.30.1 + resolution: "@opentelemetry/sdk-metrics@npm:1.30.1" + dependencies: + "@opentelemetry/core": "npm:1.30.1" + "@opentelemetry/resources": "npm:1.30.1" + peerDependencies: + "@opentelemetry/api": ">=1.3.0 <1.10.0" + checksum: 10c0/7e60178e61eaf49db5d74f6c3701706762d71d370044253c72bb5668dba3a435030ed6847605ee55d0e1b8908ad123a2517b5f00415a2fb3d98468a0a318e3c0 + languageName: node + linkType: hard + +"@opentelemetry/sdk-trace-base@npm:^1.22, @opentelemetry/sdk-trace-base@npm:^1.29.0, @opentelemetry/sdk-trace-base@npm:^1.30.1": + version: 1.30.1 + resolution: "@opentelemetry/sdk-trace-base@npm:1.30.1" + dependencies: + "@opentelemetry/core": "npm:1.30.1" + "@opentelemetry/resources": "npm:1.30.1" + "@opentelemetry/semantic-conventions": "npm:1.28.0" + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + checksum: 10c0/77019dc3efaeceb41b4c54dd83b92f0ccd81ecceca544cbbe8e0aee4b2c8727724bdb9dcecfe00622c16d60946ae4beb69a5c0e7d85c4bc7ef425bd84f8b970c + languageName: node + linkType: hard + +"@opentelemetry/semantic-conventions@npm:1.27.0": + version: 1.27.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.27.0" + checksum: 10c0/b859773ba06b7e53dd9c6b45a171bf3000e405733adbf462ae91004ed011bc80edb5beecb817fb344a085adfd06045ab5b729c9bd0f1479650ad377134fb798c + languageName: node + linkType: hard + +"@opentelemetry/semantic-conventions@npm:1.28.0": + version: 1.28.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.28.0" + checksum: 10c0/deb8a0f744198071e70fea27143cf7c9f7ecb7e4d7b619488c917834ea09b31543c1c2bcea4ec5f3cf68797f0ef3549609c14e859013d9376400ac1499c2b9cb + languageName: node + linkType: hard + +"@opentelemetry/semantic-conventions@npm:^1.27.0, @opentelemetry/semantic-conventions@npm:^1.28.0": + version: 1.30.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.30.0" + checksum: 10c0/0bf99552e3b4b7e8b7eb504b678d52f59c6f259df88e740a2011a0d858e523d36fee86047ae1b7f45849c77f00f970c3059ba58e0a06a7d47d6f01dbe8c455bd + languageName: node + linkType: hard + +"@opentelemetry/sql-common@npm:^0.40.1": + version: 0.40.1 + resolution: "@opentelemetry/sql-common@npm:0.40.1" + dependencies: + "@opentelemetry/core": "npm:^1.1.0" + peerDependencies: + "@opentelemetry/api": ^1.1.0 + checksum: 10c0/60a70358f0c94f610e2995333e96b406626d67d03d38ed03b15a3461ad0f8d64afbf6275cca7cb58fe955ecdce832f3ffc9b73f9d88503bba5d2a620bbd6d351 + languageName: node + linkType: hard + +"@panva/hkdf@npm:^1.1.1": + version: 1.2.1 + resolution: "@panva/hkdf@npm:1.2.1" + checksum: 10c0/1fabdec9bd2c19b8e88a3fa6fd0c25e25823c5000d9efdf4b6dfe32e9f370f8b9603cf776d120d160bec15fba17e079974cc34f0f52cebb24602cd832dfde19c + languageName: node + linkType: hard + +"@parcel/watcher-android-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-android-arm64@npm:2.5.1" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-darwin-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-darwin-arm64@npm:2.5.1" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-darwin-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-darwin-x64@npm:2.5.1" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher-freebsd-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-freebsd-x64@npm:2.5.1" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.1" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.1" + conditions: os=linux & cpu=arm & libc=musl + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm64-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.1" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-arm64-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.1" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@parcel/watcher-linux-x64-glibc@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.1" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@parcel/watcher-linux-x64-musl@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.1" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@parcel/watcher-win32-arm64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-arm64@npm:2.5.1" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@parcel/watcher-win32-ia32@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-ia32@npm:2.5.1" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@parcel/watcher-win32-x64@npm:2.5.1": + version: 2.5.1 + resolution: "@parcel/watcher-win32-x64@npm:2.5.1" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@parcel/watcher@npm:^2.4.1": + version: 2.5.1 + resolution: "@parcel/watcher@npm:2.5.1" + dependencies: + "@parcel/watcher-android-arm64": "npm:2.5.1" + "@parcel/watcher-darwin-arm64": "npm:2.5.1" + "@parcel/watcher-darwin-x64": "npm:2.5.1" + "@parcel/watcher-freebsd-x64": "npm:2.5.1" + "@parcel/watcher-linux-arm-glibc": "npm:2.5.1" + "@parcel/watcher-linux-arm-musl": "npm:2.5.1" + "@parcel/watcher-linux-arm64-glibc": "npm:2.5.1" + "@parcel/watcher-linux-arm64-musl": "npm:2.5.1" + "@parcel/watcher-linux-x64-glibc": "npm:2.5.1" + "@parcel/watcher-linux-x64-musl": "npm:2.5.1" + "@parcel/watcher-win32-arm64": "npm:2.5.1" + "@parcel/watcher-win32-ia32": "npm:2.5.1" + "@parcel/watcher-win32-x64": "npm:2.5.1" + detect-libc: "npm:^1.0.3" + is-glob: "npm:^4.0.3" + micromatch: "npm:^4.0.5" + node-addon-api: "npm:^7.0.0" + node-gyp: "npm:latest" + dependenciesMeta: + "@parcel/watcher-android-arm64": + optional: true + "@parcel/watcher-darwin-arm64": + optional: true + "@parcel/watcher-darwin-x64": + optional: true + "@parcel/watcher-freebsd-x64": + optional: true + "@parcel/watcher-linux-arm-glibc": + optional: true + "@parcel/watcher-linux-arm-musl": + optional: true + "@parcel/watcher-linux-arm64-glibc": + optional: true + "@parcel/watcher-linux-arm64-musl": + optional: true + "@parcel/watcher-linux-x64-glibc": + optional: true + "@parcel/watcher-linux-x64-musl": + optional: true + "@parcel/watcher-win32-arm64": + optional: true + "@parcel/watcher-win32-ia32": + optional: true + "@parcel/watcher-win32-x64": + optional: true + checksum: 10c0/8f35073d0c0b34a63d4c8d2213482f0ebc6a25de7b2cdd415d19cb929964a793cb285b68d1d50bfb732b070b3c82a2fdb4eb9c250eab709a1cd9d63345455a82 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd + languageName: node + linkType: hard + +"@pnpm/config.env-replace@npm:^1.1.0": + version: 1.1.0 + resolution: "@pnpm/config.env-replace@npm:1.1.0" + checksum: 10c0/4cfc4a5c49ab3d0c6a1f196cfd4146374768b0243d441c7de8fa7bd28eaab6290f514b98490472cc65dbd080d34369447b3e9302585e1d5c099befd7c8b5e55f + languageName: node + linkType: hard + +"@pnpm/network.ca-file@npm:^1.0.1": + version: 1.0.2 + resolution: "@pnpm/network.ca-file@npm:1.0.2" + dependencies: + graceful-fs: "npm:4.2.10" + checksum: 10c0/95f6e0e38d047aca3283550719155ce7304ac00d98911e4ab026daedaf640a63bd83e3d13e17c623fa41ac72f3801382ba21260bcce431c14fbbc06430ecb776 + languageName: node + linkType: hard + +"@pnpm/npm-conf@npm:^2.1.0": + version: 2.3.1 + resolution: "@pnpm/npm-conf@npm:2.3.1" + dependencies: + "@pnpm/config.env-replace": "npm:^1.1.0" + "@pnpm/network.ca-file": "npm:^1.0.1" + config-chain: "npm:^1.1.11" + checksum: 10c0/778a3a34ff7d6000a2594d2a9821f873f737bc56367865718b2cf0ba5d366e49689efe7975148316d7afd8e6f1dcef7d736fbb6ea7ef55caadd1dc93a36bb302 + languageName: node + linkType: hard + +"@preact/compat@npm:17.1.2": + version: 17.1.2 + resolution: "@preact/compat@npm:17.1.2" + peerDependencies: + preact: "*" + checksum: 10c0/b4fb246d8996222c3d090901e88fb376a014164ad81f3985786389e7559acbd81f72c829ad3ff6fcbf58346950c9f48eafd7fe993cc43ca3cd0574e90101c7e1 + languageName: node + linkType: hard + +"@preact/signals-core@npm:^1.4.0, @preact/signals-core@npm:^1.7.0": + version: 1.8.0 + resolution: "@preact/signals-core@npm:1.8.0" + checksum: 10c0/fa773157621d881e7aefddb8dbded805d8203600211040cc4b5907726e288a163fa58558c1d36bc7085d75e6488af0a806322bbbed005d08be76a76f40244246 + languageName: node + linkType: hard + +"@preact/signals@npm:1.2.2": + version: 1.2.2 + resolution: "@preact/signals@npm:1.2.2" + dependencies: + "@preact/signals-core": "npm:^1.4.0" + peerDependencies: + preact: 10.x + checksum: 10c0/ecc583edec5604ba1f7aecc3ae59912cf9e8428c38c0c5352e203e12f61c8fc956e2d0a5a5710d9c2bfeba07c6312a2a501b3e35a3085ac8a0a4398fc1ee77a3 + languageName: node + linkType: hard + +"@prisma/instrumentation@npm:5.22.0": + version: 5.22.0 + resolution: "@prisma/instrumentation@npm:5.22.0" + dependencies: + "@opentelemetry/api": "npm:^1.8" + "@opentelemetry/instrumentation": "npm:^0.49 || ^0.50 || ^0.51 || ^0.52.0 || ^0.53.0" + "@opentelemetry/sdk-trace-base": "npm:^1.22" + checksum: 10c0/2f8fafd996f6f774affd0f48c9112cba045bb7214b79e9108e355d854005a90587bdb5983bcdeea7f7886b29426a42ee1597012a5eb15fac8f7e437c5c430445 + languageName: node + linkType: hard + +"@radix-ui/primitive@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/primitive@npm:1.1.1" + checksum: 10c0/6457bd8d1aa4ecb948e5d2a2484fc570698b2ab472db6d915a8f1eec04823f80423efa60b5ba840f0693bec2ca380333cc5f3b52586b40f407d9f572f9261f8d + languageName: node + linkType: hard + +"@radix-ui/react-compose-refs@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-compose-refs@npm:1.1.1" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/3e84580024e66e3cc5b9ae79355e787815c1d2a3c7d46e7f47900a29c33751ca24cf4ac8903314957ab1f7788aebe1687e2258641c188cf94653f7ddf8f70627 + languageName: node + linkType: hard + +"@radix-ui/react-context@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-context@npm:1.1.1" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/fc4ace9d79d7954c715ade765e06c95d7e1b12a63a536bcbe842fb904f03f88fc5bd6e38d44bd23243d37a270b4c44380fedddaeeae2d274f0b898a20665aba2 + languageName: node + linkType: hard + +"@radix-ui/react-dialog@npm:^1.1.1": + version: 1.1.6 + resolution: "@radix-ui/react-dialog@npm:1.1.6" + dependencies: + "@radix-ui/primitive": "npm:1.1.1" + "@radix-ui/react-compose-refs": "npm:1.1.1" + "@radix-ui/react-context": "npm:1.1.1" + "@radix-ui/react-dismissable-layer": "npm:1.1.5" + "@radix-ui/react-focus-guards": "npm:1.1.1" + "@radix-ui/react-focus-scope": "npm:1.1.2" + "@radix-ui/react-id": "npm:1.1.0" + "@radix-ui/react-portal": "npm:1.1.4" + "@radix-ui/react-presence": "npm:1.1.2" + "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-slot": "npm:1.1.2" + "@radix-ui/react-use-controllable-state": "npm:1.1.0" + aria-hidden: "npm:^1.2.4" + react-remove-scroll: "npm:^2.6.3" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/98e425549573c5d6fb0fee94ecd40427a8b8897bb2d9bb2a44fe64e484754376ff23b64fcf64e061d42fc774b9627a28cb5b1bb5652e567908dac9a8d8618705 + languageName: node + linkType: hard + +"@radix-ui/react-dismissable-layer@npm:1.1.5": + version: 1.1.5 + resolution: "@radix-ui/react-dismissable-layer@npm:1.1.5" + dependencies: + "@radix-ui/primitive": "npm:1.1.1" + "@radix-ui/react-compose-refs": "npm:1.1.1" + "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-use-callback-ref": "npm:1.1.0" + "@radix-ui/react-use-escape-keydown": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/05c5adfcd42a736c456f50bdca25bf7f6b25eef7328e4c05de535fea128328666433a89d68cb1445e039c188d7f1397df6a4a02e2da0970762f2a80fd29b48ea + languageName: node + linkType: hard + +"@radix-ui/react-focus-guards@npm:1.1.1": + version: 1.1.1 + resolution: "@radix-ui/react-focus-guards@npm:1.1.1" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/2e99750ca593083a530542a185d656b45b100752353a7a193a67566e3c256414a76fa9171d152f8c0167b8d6c1fdf62b2e07750d7af2974bf8ef39eb204aa537 + languageName: node + linkType: hard + +"@radix-ui/react-focus-scope@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/react-focus-scope@npm:1.1.2" + dependencies: + "@radix-ui/react-compose-refs": "npm:1.1.1" + "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-use-callback-ref": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/7b93866a9980bc938fc3fcfacfc49467c13144931c9b7a3b5423c0c3817685dc421499d73f58335f6c3c1c0f4fea9c9b7c16aa06a1d30571620787086082bea0 + languageName: node + linkType: hard + +"@radix-ui/react-id@npm:1.1.0": + version: 1.1.0 + resolution: "@radix-ui/react-id@npm:1.1.0" + dependencies: + "@radix-ui/react-use-layout-effect": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/acf13e29e51ee96336837fc0cfecc306328b20b0e0070f6f0f7aa7a621ded4a1ee5537cfad58456f64bae76caa7f8769231e88dc7dc106197347ee433c275a79 + languageName: node + linkType: hard + +"@radix-ui/react-portal@npm:1.1.4": + version: 1.1.4 + resolution: "@radix-ui/react-portal@npm:1.1.4" + dependencies: + "@radix-ui/react-primitive": "npm:2.0.2" + "@radix-ui/react-use-layout-effect": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/e4038eb2f20be10d9754d099d00620f429711919d20c4c630946d9c4941f1c83ef1a3f4110c221c70486e65bc565ebba4ada22a0e7e2d179c039f2a014300793 + languageName: node + linkType: hard + +"@radix-ui/react-presence@npm:1.1.2": + version: 1.1.2 + resolution: "@radix-ui/react-presence@npm:1.1.2" + dependencies: + "@radix-ui/react-compose-refs": "npm:1.1.1" + "@radix-ui/react-use-layout-effect": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/0c6fa281368636308044df3be4c1f02733094b5e35ba04f26e610dd1c4315a245ffc758e0e176c444742a7a46f4328af1a9d8181e860175ec39338d06525a78d + languageName: node + linkType: hard + +"@radix-ui/react-primitive@npm:2.0.2": + version: 2.0.2 + resolution: "@radix-ui/react-primitive@npm:2.0.2" + dependencies: + "@radix-ui/react-slot": "npm:1.1.2" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/1af7a33a86f8bd2467f2300b1bb6ca9af67cae3950953ba543d2a625c17f341dff05d19056ece7b03e5ced8b9f8de99c74f806710ce0da6b9a000f2af063fffe + languageName: node + linkType: hard + +"@radix-ui/react-slot@npm:1.1.2, @radix-ui/react-slot@npm:^1.0.2": + version: 1.1.2 + resolution: "@radix-ui/react-slot@npm:1.1.2" + dependencies: + "@radix-ui/react-compose-refs": "npm:1.1.1" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/81d45091806c52b507cec80b4477e4f31189d76ffcd7845b382eb3a034e6cf1faef71b881612028d5893f7580bf9ab59daa18fbf2792042dccd755c99a18df67 + languageName: node + linkType: hard + +"@radix-ui/react-use-callback-ref@npm:1.1.0": + version: 1.1.0 + resolution: "@radix-ui/react-use-callback-ref@npm:1.1.0" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/e954863f3baa151faf89ac052a5468b42650efca924417470efd1bd254b411a94c69c30de2fdbb90187b38cb984795978e12e30423dc41e4309d93d53b66d819 + languageName: node + linkType: hard + +"@radix-ui/react-use-controllable-state@npm:1.1.0": + version: 1.1.0 + resolution: "@radix-ui/react-use-controllable-state@npm:1.1.0" + dependencies: + "@radix-ui/react-use-callback-ref": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/2af883b5b25822ac226e60a6bfde647c0123a76345052a90219026059b3f7225844b2c13a9a16fba859c1cda5fb3d057f2a04503f71780e607516492db4eb3a1 + languageName: node + linkType: hard + +"@radix-ui/react-use-escape-keydown@npm:1.1.0": + version: 1.1.0 + resolution: "@radix-ui/react-use-escape-keydown@npm:1.1.0" + dependencies: + "@radix-ui/react-use-callback-ref": "npm:1.1.0" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/910fd696e5a0994b0e06b9cb68def8a865f47951a013ec240c77db2a9e1e726105602700ef5e5f01af49f2f18fe0e73164f9a9651021f28538ef8a30d91f3fbb + languageName: node + linkType: hard + +"@radix-ui/react-use-layout-effect@npm:1.1.0": + version: 1.1.0 + resolution: "@radix-ui/react-use-layout-effect@npm:1.1.0" + peerDependencies: + "@types/react": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/9bf87ece1845c038ed95863cfccf9d75f557c2400d606343bab0ab3192b9806b9840e6aa0a0333fdf3e83cf9982632852192f3e68d7d8367bc8c788dfdf8e62b + languageName: node + linkType: hard + +"@radix-ui/react-visually-hidden@npm:^1.1.0": + version: 1.1.2 + resolution: "@radix-ui/react-visually-hidden@npm:1.1.2" + dependencies: + "@radix-ui/react-primitive": "npm:2.0.2" + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/ea6dc8ec284b32bca6f24809db257394802e14af7c95e4a237af51009fa222c42e3b7a55b3bfc94d753f509086636555058ae8e535be25956c46529abf41b448 + languageName: node + linkType: hard + +"@react-aria/autocomplete@npm:3.0.0-alpha.37": + version: 3.0.0-alpha.37 + resolution: "@react-aria/autocomplete@npm:3.0.0-alpha.37" + dependencies: + "@react-aria/combobox": "npm:^3.11.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/listbox": "npm:^3.14.0" + "@react-aria/searchfield": "npm:^3.8.0" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/autocomplete": "npm:3.0.0-alpha.0" + "@react-stately/combobox": "npm:^3.10.2" + "@react-types/autocomplete": "npm:3.0.0-alpha.28" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/89249460e16a483763e51fdad26e10649440b7730f8b2b5ea129f3334ae8117f85a2516f2826ca3d7e853a3ec091fb164faa5759fd17836dbd73b93448981fa5 + languageName: node + linkType: hard + +"@react-aria/breadcrumbs@npm:^3.5.20": + version: 3.5.20 + resolution: "@react-aria/breadcrumbs@npm:3.5.20" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/link": "npm:^3.7.8" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/breadcrumbs": "npm:^3.7.10" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/7fe0da9572c3e028abe406a2723c33a2be33b883f217b2b98f5a6edf69c06b5a25b285ec1390169fa003003b4e48d14d398ab676e1f02a5fc70dcac2079cea93 + languageName: node + linkType: hard + +"@react-aria/button@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/button@npm:3.11.1" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/toolbar": "npm:3.0.0-beta.12" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/toggle": "npm:^3.8.1" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/65ceb0f5520c83495cc6cdea93bd268c33ce06d6bcd1817efb6fad55724e3df99285a330efcc5a50f6cc81d124d47bdd99e3d84825c9f4a8c7f2b03e13a9ec1d + languageName: node + linkType: hard + +"@react-aria/calendar@npm:^3.7.0": + version: 3.7.0 + resolution: "@react-aria/calendar@npm:3.7.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/calendar": "npm:^3.7.0" + "@react-types/button": "npm:^3.10.2" + "@react-types/calendar": "npm:^3.6.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/9a93cf7e4ed3c646fe6931e1d692f8f78e06c063612b49c4bd9c4a0a900cb270ab110be1e9854ec529eef2203a6697b3ddf58d78291898eff6718b6f87ec8d34 + languageName: node + linkType: hard + +"@react-aria/checkbox@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-aria/checkbox@npm:3.15.1" + dependencies: + "@react-aria/form": "npm:^3.0.12" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/toggle": "npm:^3.10.11" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/checkbox": "npm:^3.6.11" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/toggle": "npm:^3.8.1" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/599c268cf6f70fe9a3aa32848d6514b7a6342852eef5baa1237d4c3fbc724cc283359b3c41490cd81b81e52451f4e1cf4518907962fe28d5f9e921f7e8fa3add + languageName: node + linkType: hard + +"@react-aria/collections@npm:3.0.0-alpha.7": + version: 3.0.0-alpha.7 + resolution: "@react-aria/collections@npm:3.0.0-alpha.7" + dependencies: + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + use-sync-external-store: "npm:^1.2.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/f484a7bab435330f3f8e9d2afefbcff0f79cc1a56ad75e9296ad05b1b0e0bba5ec0d79a0c74b53c59a0eac9bc053d6e810452bdb46ae27e13f4e55e7e3e7ded2 + languageName: node + linkType: hard + +"@react-aria/color@npm:^3.0.3": + version: 3.0.3 + resolution: "@react-aria/color@npm:3.0.3" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/numberfield": "npm:^3.11.10" + "@react-aria/slider": "npm:^3.7.15" + "@react-aria/spinbutton": "npm:^3.6.11" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/visually-hidden": "npm:^3.8.19" + "@react-stately/color": "npm:^3.8.2" + "@react-stately/form": "npm:^3.1.1" + "@react-types/color": "npm:^3.0.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/a7132c07604b5f92c82c885ee1aeaa1c5667616a54050f7231713e5aba98b3d7ec31007f920e5a0bdb665ab9d44f29992e6d88a0d753ada0b415c095a0e03a23 + languageName: node + linkType: hard + +"@react-aria/combobox@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/combobox@npm:3.11.1" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/listbox": "npm:^3.14.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/menu": "npm:^3.17.0" + "@react-aria/overlays": "npm:^3.25.0" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/combobox": "npm:^3.10.2" + "@react-stately/form": "npm:^3.1.1" + "@react-types/button": "npm:^3.10.2" + "@react-types/combobox": "npm:^3.13.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/963854852adf59d7620f8c1bf0c226a3fb33ec1981d25aa5ad48e0399e3edb2167b4fd01dd147ceeb6a3ec7dd81ed0cc79032393e52347b5330cf05f18bcbe33 + languageName: node + linkType: hard + +"@react-aria/datepicker@npm:^3.13.0": + version: 3.13.0 + resolution: "@react-aria/datepicker@npm:3.13.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@internationalized/number": "npm:^3.6.0" + "@internationalized/string": "npm:^3.2.5" + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/form": "npm:^3.0.12" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/spinbutton": "npm:^3.6.11" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/datepicker": "npm:^3.12.0" + "@react-stately/form": "npm:^3.1.1" + "@react-types/button": "npm:^3.10.2" + "@react-types/calendar": "npm:^3.6.0" + "@react-types/datepicker": "npm:^3.10.0" + "@react-types/dialog": "npm:^3.5.15" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/a366ea5ec458ca5a56fb1f4c096bcf4139966420eaa357ee86b382ab3ac14ada5aa49a1a6ba4d2055c2faae170ff8127bbee9882c65ab809004879d070ab37bf + languageName: node + linkType: hard + +"@react-aria/dialog@npm:^3.5.21": + version: 3.5.21 + resolution: "@react-aria/dialog@npm:3.5.21" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/overlays": "npm:^3.25.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/dialog": "npm:^3.5.15" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/1a54912edea81917a089bb3568530f880ac131af30d13f608447d84dbabbdf8c69ef15c6d336cdda748ff734f75b06e2157849d4a1b9cfc20b70f984a728dfd2 + languageName: node + linkType: hard + +"@react-aria/disclosure@npm:^3.0.1": + version: 3.0.1 + resolution: "@react-aria/disclosure@npm:3.0.1" + dependencies: + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/disclosure": "npm:^3.0.1" + "@react-types/button": "npm:^3.10.2" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6c32cb6b0a3e7d529a90ab521975e98daa98ffa9d2241f4928aa1c8de6066f63f57137e76659e6132645f1d63eceb58c0ece35834c04f7b2fa6cc46064441e10 + languageName: node + linkType: hard + +"@react-aria/dnd@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-aria/dnd@npm:3.8.1" + dependencies: + "@internationalized/string": "npm:^3.2.5" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/overlays": "npm:^3.25.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/dnd": "npm:^3.5.1" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/282c85752c155b4f5d1e5788a94cf6a047c538bc25ff07687402bb4535763ea62d17a6f4756e2309fb81ede29c84369692bf5d490c5c189775966ebc3a35da2f + languageName: node + linkType: hard + +"@react-aria/focus@npm:^3.19.1": + version: 3.19.1 + resolution: "@react-aria/focus@npm:3.19.1" + dependencies: + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + clsx: "npm:^2.0.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/3cc0c971dea11a187cbda3ff35b43a8f6d85d1b889c70dc3ffd4ede3aaa0d6038809f868be95f23d84c04c4738ec654bf97fb8de501f2ee0765e1e5ba1482102 + languageName: node + linkType: hard + +"@react-aria/form@npm:^3.0.12": + version: 3.0.12 + resolution: "@react-aria/form@npm:3.0.12" + dependencies: + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/form": "npm:^3.1.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/1a880f4aacdb2f31cc0c013e3636fc0b8908dfc404e9b5b0d3907eb6391141a40084377b1e53e5e6ed59aa9e6d3a4ee9b5e80a696364d6d036ab88d503b43691 + languageName: node + linkType: hard + +"@react-aria/grid@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/grid@npm:3.11.1" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/grid": "npm:^3.10.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/37c98866b9c7c39328011e34412e29ac62ce08d19c35ab9236db89d0844b72087c4d092b8d760963ff25338d4c40d1c88688e479182d8cc9ccee7f54dc8ee462 + languageName: node + linkType: hard + +"@react-aria/gridlist@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/gridlist@npm:3.10.1" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/grid": "npm:^3.11.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/list": "npm:^3.11.2" + "@react-stately/tree": "npm:^3.8.7" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/aa1cb5d99d01b1fdd951abfa7642110085717d7b1b817e20639aad0bb85b78e6a6eaa94e94bde89cc3e7ad6fae0a8ef1885a946dac6d0b1d702a666b12ef6ad1 + languageName: node + linkType: hard + +"@react-aria/i18n@npm:^3.12.5": + version: 3.12.5 + resolution: "@react-aria/i18n@npm:3.12.5" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@internationalized/message": "npm:^3.1.6" + "@internationalized/number": "npm:^3.6.0" + "@internationalized/string": "npm:^3.2.5" + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d87afa6029a2f94e88b76ad74f34b478fe0aab6425c73e3569c90d83f12c1f01c473d6a79018d3e0e15b28f3a123aed7eb4ab9ca371ce48e875d77e5521b39df + languageName: node + linkType: hard + +"@react-aria/interactions@npm:^3.23.0": + version: 3.23.0 + resolution: "@react-aria/interactions@npm:3.23.0" + dependencies: + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/913c6e0c585a8a58af4efc6c5081093b1588d12e92e5f072471481e64c8690f16f233ee41765e79956c7f83400c17e6e1da7e82437581e393a3344d691177891 + languageName: node + linkType: hard + +"@react-aria/label@npm:^3.7.14": + version: 3.7.14 + resolution: "@react-aria/label@npm:3.7.14" + dependencies: + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/07545e8d4706246be6b181cdf9b628b3c8471aea2ed8168f26193142672c45958b31ea92c5cac5498f324d3c96a2cde73d36d26bf70a460c39cf5fe1db36911b + languageName: node + linkType: hard + +"@react-aria/link@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-aria/link@npm:3.7.8" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/link": "npm:^3.5.10" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/bc7c3175e4acde4d8803307175dec0ecf21f6ce9544e254b94742b81057a73f13286fc06d2fd4e045486a4a34aa0b8f081f58c76d5fe18b238a54f85110d4a9b + languageName: node + linkType: hard + +"@react-aria/listbox@npm:^3.14.0": + version: 3.14.0 + resolution: "@react-aria/listbox@npm:3.14.0" + dependencies: + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/list": "npm:^3.11.2" + "@react-types/listbox": "npm:^3.5.4" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/fbf1992e77efd943be5559ac9230c50a871079c52443f4ccbf32cf4534b9719dc476d7cde1f92f70c413d68542d183e5dfc017a1cf442e0612ed3ee7be351a89 + languageName: node + linkType: hard + +"@react-aria/live-announcer@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-aria/live-announcer@npm:3.4.1" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/285ce2e72e607c6e2793a3e8978bdaa388aad34168de3211bc88f78ec994a393ce1a4f3e728d8c57d7acc8a7ce1ca1e926c8badc371e547af7f4e3d55a99c1c8 + languageName: node + linkType: hard + +"@react-aria/menu@npm:^3.17.0": + version: 3.17.0 + resolution: "@react-aria/menu@npm:3.17.0" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/overlays": "npm:^3.25.0" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/menu": "npm:^3.9.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/tree": "npm:^3.8.7" + "@react-types/button": "npm:^3.10.2" + "@react-types/menu": "npm:^3.9.14" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/ee209278cf8dad43de526072d5f971ea3132eaee9071864221fbb9ab376ac01a70627667b0eff9c0e01a353feec82eb05aacfd2dbbdd3f64a555676ef8555a88 + languageName: node + linkType: hard + +"@react-aria/meter@npm:^3.4.19": + version: 3.4.19 + resolution: "@react-aria/meter@npm:3.4.19" + dependencies: + "@react-aria/progress": "npm:^3.4.19" + "@react-types/meter": "npm:^3.4.6" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/c6a688f410c588a5735b09804b2b86ee8a2ba1db01ebc8f0fe9aaa0661f1f28fe0de718f49f7a90b476bcb2d8eec0b005828bcfdabeacffe8607caf47afb23d3 + languageName: node + linkType: hard + +"@react-aria/numberfield@npm:^3.11.10": + version: 3.11.10 + resolution: "@react-aria/numberfield@npm:3.11.10" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/spinbutton": "npm:^3.6.11" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/numberfield": "npm:^3.9.9" + "@react-types/button": "npm:^3.10.2" + "@react-types/numberfield": "npm:^3.8.8" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/4b456f208c31086df14d6d5494fdae22fc184f54c2f1965f71a911fb62e77b0379c8f892223112ce4bca022ce3fdcf8579fc3c51fbf5730c2e98ac8731e9ac56 + languageName: node + linkType: hard + +"@react-aria/overlays@npm:^3.25.0": + version: 3.25.0 + resolution: "@react-aria/overlays@npm:3.25.0" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/visually-hidden": "npm:^3.8.19" + "@react-stately/overlays": "npm:^3.6.13" + "@react-types/button": "npm:^3.10.2" + "@react-types/overlays": "npm:^3.8.12" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/b10e39a4c489340623d685e13980fcbc47d7091d7ac7a90cd6df2cd2821add4e2ed7c4481782cd90cc53f05ad399ff93de7779d8a75c910dfdb1450bf39d4cce + languageName: node + linkType: hard + +"@react-aria/progress@npm:^3.4.19": + version: 3.4.19 + resolution: "@react-aria/progress@npm:3.4.19" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/progress": "npm:^3.5.9" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/0fbcebfd03e1f21f47230e1a09d5485873b7267902dc0621844282d9727d9bc136e9d55dc904a3d0a44157cbd5274e786e416f87661eaf8f1a4f6649dc9e9b63 + languageName: node + linkType: hard + +"@react-aria/radio@npm:^3.10.11": + version: 3.10.11 + resolution: "@react-aria/radio@npm:3.10.11" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/form": "npm:^3.0.12" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/radio": "npm:^3.10.10" + "@react-types/radio": "npm:^3.8.6" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/219b44d0cbd62047a60bd980b3c0ef097f25e6b096a7cc738d098ca6311f44773d21fad8c29b0ce7760fba2776088f471c8794d105c97e581a55169c46a23156 + languageName: node + linkType: hard + +"@react-aria/searchfield@npm:^3.8.0": + version: 3.8.0 + resolution: "@react-aria/searchfield@npm:3.8.0" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/searchfield": "npm:^3.5.9" + "@react-types/button": "npm:^3.10.2" + "@react-types/searchfield": "npm:^3.5.11" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/37b6a747e6fa0dbacf575fbcdc1ed538a712bc7713a315ea2c5709389652973eb8846476ee614c0eb1c46cc350c9930ae34bebaa8104e0d2fb61900bdf7199f4 + languageName: node + linkType: hard + +"@react-aria/select@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-aria/select@npm:3.15.1" + dependencies: + "@react-aria/form": "npm:^3.0.12" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/listbox": "npm:^3.14.0" + "@react-aria/menu": "npm:^3.17.0" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/visually-hidden": "npm:^3.8.19" + "@react-stately/select": "npm:^3.6.10" + "@react-types/button": "npm:^3.10.2" + "@react-types/select": "npm:^3.9.9" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/60ddef50070d0aa819dbaed4c5a969941a9baa16697cb8c8741a3d9c6d636ca10b078aef82253b0a76a7a91eebbbb226624fa1b0d65410115190971aecf91966 + languageName: node + linkType: hard + +"@react-aria/selection@npm:^3.22.0": + version: 3.22.0 + resolution: "@react-aria/selection@npm:3.22.0" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/selection": "npm:^3.19.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/eeac43f98e6b76f63e2f44df85f01e7a201a04c8935fa95c73e072bc0bfcc8598f48ec61a20b8219a22e577817ac2194f16104f8b4e7e9bd0693a39ab2a503b6 + languageName: node + linkType: hard + +"@react-aria/separator@npm:^3.4.5": + version: 3.4.5 + resolution: "@react-aria/separator@npm:3.4.5" + dependencies: + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/a3146ad965f29c32d9d1d25a1974985496c76e9006d48174ee5a4cfe060b69f6c10db776c9af3e5c59dba91f1be3703ceca4a161277b13485f81376d13ffa7e6 + languageName: node + linkType: hard + +"@react-aria/slider@npm:^3.7.15": + version: 3.7.15 + resolution: "@react-aria/slider@npm:3.7.15" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/slider": "npm:^3.6.1" + "@react-types/shared": "npm:^3.27.0" + "@react-types/slider": "npm:^3.7.8" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/cbf1e440ad18be009232501b13f004eec7e71282a3395162dfbefa02e8c663249ef9c01d08a94a2c77aeb3076286a8a30383a7dc919257ddbb6165dccc8b87e4 + languageName: node + linkType: hard + +"@react-aria/spinbutton@npm:^3.6.11": + version: 3.6.11 + resolution: "@react-aria/spinbutton@npm:3.6.11" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/33b6a090c2956de7feb6971d5aaca6bfa5238688f88295e0bbacb8d026979a88332c8b1d100a38b1091ca38803ca90b5bb91c9dec90b1f29200d1b8823593e29 + languageName: node + linkType: hard + +"@react-aria/ssr@npm:^3.9.5, @react-aria/ssr@npm:^3.9.7": + version: 3.9.7 + resolution: "@react-aria/ssr@npm:3.9.7" + dependencies: + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/37168cd81b1e8223aedb906c1333381f3c436dadf58cbd675606ced314605ce5c49eee5c831309648bfbab78a8598c344be636a85962c742ebf11ae7e87ee93e + languageName: node + linkType: hard + +"@react-aria/switch@npm:^3.6.11": + version: 3.6.11 + resolution: "@react-aria/switch@npm:3.6.11" + dependencies: + "@react-aria/toggle": "npm:^3.10.11" + "@react-stately/toggle": "npm:^3.8.1" + "@react-types/shared": "npm:^3.27.0" + "@react-types/switch": "npm:^3.5.8" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/632244350b935544b70322b81f3ec0381f28433c693a351772131c9f67df836cb518635faea791de740391a1c4ee09e3dabb686bafc4534014e7d23cdfac7721 + languageName: node + linkType: hard + +"@react-aria/table@npm:^3.16.1": + version: 3.16.1 + resolution: "@react-aria/table@npm:3.16.1" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/grid": "npm:^3.11.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/visually-hidden": "npm:^3.8.19" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/flags": "npm:^3.0.5" + "@react-stately/table": "npm:^3.13.1" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@react-types/table": "npm:^3.10.4" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/2592a2cbb28de3b3d07bf7697cac552129dcd6c6033afb5b27dbc77308132255564a38cba36d42e50c527ec5b077590b922f7309354d6fb0a8483c7e11645f10 + languageName: node + linkType: hard + +"@react-aria/tabs@npm:^3.9.9": + version: 3.9.9 + resolution: "@react-aria/tabs@npm:3.9.9" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/tabs": "npm:^3.7.1" + "@react-types/shared": "npm:^3.27.0" + "@react-types/tabs": "npm:^3.3.12" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/ba89e1f590d282659752230b9b039239b6b583425bf49b70ad14e23c378ba08e0484580b28f44d0bccfe0e6fd55cc82057249a8d478277f1ed34674aa84a1a9e + languageName: node + linkType: hard + +"@react-aria/tag@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-aria/tag@npm:3.4.9" + dependencies: + "@react-aria/gridlist": "npm:^3.10.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/list": "npm:^3.11.2" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/b4bbd2bc09668862029c758dcc65406d3b6d2578a61c30b1254a0ac06b47e4ecd5a4c5bb889c3db7a3d7c560f78f7a44d23cf6acc3317937a5fc23031228abb6 + languageName: node + linkType: hard + +"@react-aria/textfield@npm:^3.16.0": + version: 3.16.0 + resolution: "@react-aria/textfield@npm:3.16.0" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/form": "npm:^3.0.12" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@react-types/textfield": "npm:^3.11.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/3ac88e2d550494fff16adff40914ba035ed8f5c83628a79048966362619a395800367adb3510610643cc07cf3465412db6835a719ddb3033a1de2ec5752d2549 + languageName: node + linkType: hard + +"@react-aria/toggle@npm:^3.10.11": + version: 3.10.11 + resolution: "@react-aria/toggle@npm:3.10.11" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/toggle": "npm:^3.8.1" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/f240962c2bc85b541f73a24dde49456580ad99822756dbe5203bd72949055e5dbda9b033e9a654ebc7d8979332af4bb671c33edca0c069a82c708753b35541b3 + languageName: node + linkType: hard + +"@react-aria/toolbar@npm:3.0.0-beta.12": + version: 3.0.0-beta.12 + resolution: "@react-aria/toolbar@npm:3.0.0-beta.12" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/ef311befb605c2c1b2dbf14177828940b9f59c9a9dd4cc465ae14b75e676b583842e9212d798d88460cce9b8e4aff29940418ab687671e544698975122fbf287 + languageName: node + linkType: hard + +"@react-aria/tooltip@npm:^3.7.11": + version: 3.7.11 + resolution: "@react-aria/tooltip@npm:3.7.11" + dependencies: + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/tooltip": "npm:^3.5.1" + "@react-types/shared": "npm:^3.27.0" + "@react-types/tooltip": "npm:^3.4.14" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/85f61f0ea6184be4ed7c798131364f09f05605c66f83d5cda3cb9437024a5d3331680095e526cd848557900192ece936e603755ab41292b6154fe9dd83c3e885 + languageName: node + linkType: hard + +"@react-aria/tree@npm:3.0.0-beta.3": + version: 3.0.0-beta.3 + resolution: "@react-aria/tree@npm:3.0.0-beta.3" + dependencies: + "@react-aria/gridlist": "npm:^3.10.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/tree": "npm:^3.8.7" + "@react-types/button": "npm:^3.10.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/638d9161f29aa5fa586bad8a087f6076e0ab34aa34ea5155b1b9d36bebfcbceba728baadfbe5eece843cb0602eccf1ae9850f60dd1756d6a063dfa9464b19c37 + languageName: node + linkType: hard + +"@react-aria/utils@npm:^3.27.0": + version: 3.27.0 + resolution: "@react-aria/utils@npm:3.27.0" + dependencies: + "@react-aria/ssr": "npm:^3.9.7" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + clsx: "npm:^2.0.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/28f12eb6e416567244ffa88a91392d10a719b68fb6e5f14871aa934c163ab36aa70f79ba3fda46d8eb9dd047c0fa2af7fd08e9d05eefde2395ebbe3c260d63da + languageName: node + linkType: hard + +"@react-aria/virtualizer@npm:^4.1.1": + version: 4.1.1 + resolution: "@react-aria/virtualizer@npm:4.1.1" + dependencies: + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-stately/virtualizer": "npm:^4.2.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d62588f5ca42c84e7152529ed621ccca7b8366bdb82a599ab494eaf938c600ebb704fd81a0d8ef59a15a2cfe72eff7f777c9c101ee9261e1742feca82ff518d3 + languageName: node + linkType: hard + +"@react-aria/visually-hidden@npm:^3.8.19": + version: 3.8.19 + resolution: "@react-aria/visually-hidden@npm:3.8.19" + dependencies: + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/b43d483c88eb9d6826f76280b9df6ed63bd58ad15526648cebb7564b334a07d75fc9d01e6d49cdaf618a8f22f925bb73e37b1912745698333e34e3482bd4f4e9 + languageName: node + linkType: hard + +"@react-stately/autocomplete@npm:3.0.0-alpha.0": + version: 3.0.0-alpha.0 + resolution: "@react-stately/autocomplete@npm:3.0.0-alpha.0" + dependencies: + "@react-stately/utils": "npm:^3.10.4" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6cea8300d5bda9c188b4653dab54e69d20371bff62fd65ebddf0e485a409970245fc318b6c5a41a4c806eb12ff4b580f2bd2d1c03bd1c073d00615ce237d4ac0 + languageName: node + linkType: hard + +"@react-stately/calendar@npm:^3.7.0": + version: 3.7.0 + resolution: "@react-stately/calendar@npm:3.7.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/calendar": "npm:^3.6.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/f11002ffb3a6ddc35fcc3ae8ecd4e902d7e8ce8732810f57b514d47b06258bb426d25328254c4d382629e67490a83e1c1b4f20818aeaaf938582c84342712e0c + languageName: node + linkType: hard + +"@react-stately/checkbox@npm:^3.6.11": + version: 3.6.11 + resolution: "@react-stately/checkbox@npm:3.6.11" + dependencies: + "@react-stately/form": "npm:^3.1.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/142203ace8408ab12d55c77df363f78f240979b766a22ff01d38dea78bb7969720489c5a98040eaa4f61e9e46252632722e54cfd3208b1f2fd02323124a48563 + languageName: node + linkType: hard + +"@react-stately/collections@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-stately/collections@npm:3.12.1" + dependencies: + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/eab655b101f1efbeabfb14a1e49a7c744fa45ed48b81627701f09439b57a9c3b126f19f06cf7ca74f4e2aac75e7bc109f4967650028667946975864cdbea1450 + languageName: node + linkType: hard + +"@react-stately/color@npm:^3.8.2": + version: 3.8.2 + resolution: "@react-stately/color@npm:3.8.2" + dependencies: + "@internationalized/number": "npm:^3.6.0" + "@internationalized/string": "npm:^3.2.5" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/numberfield": "npm:^3.9.9" + "@react-stately/slider": "npm:^3.6.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/color": "npm:^3.0.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/989a40373c4d4882905e9e6cacfb6160d3ed3cdb1d6bf327d39b42915651d636a1b56b8e60b898d442e5a10125a3a34a0176fbdbe8cd5d458d00701661096a07 + languageName: node + linkType: hard + +"@react-stately/combobox@npm:^3.10.2": + version: 3.10.2 + resolution: "@react-stately/combobox@npm:3.10.2" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/list": "npm:^3.11.2" + "@react-stately/overlays": "npm:^3.6.13" + "@react-stately/select": "npm:^3.6.10" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/combobox": "npm:^3.13.2" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/560c5d86c9ad07b64f2e03f70a5867436f9a00f5d77dd845742ced3ecc9722705e574a3a198cfce31f74835589d01f8fdd518d76e71f5c1ea332b14e9d29dbe2 + languageName: node + linkType: hard + +"@react-stately/data@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-stately/data@npm:3.12.1" + dependencies: + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/fba7d562879aebfe780a214ecc199954b909556e269e5712f98b3fc7674524f310a04229bbb95155f2e3cb153c9b46ee252c6a0b54d1e371cc2276c5f57774b7 + languageName: node + linkType: hard + +"@react-stately/datepicker@npm:^3.12.0": + version: 3.12.0 + resolution: "@react-stately/datepicker@npm:3.12.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@internationalized/string": "npm:^3.2.5" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/overlays": "npm:^3.6.13" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/datepicker": "npm:^3.10.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/85c71518db40de5bb13870a5fcf2f4e1ac8b59dc6fd970cac02dc940c6007a607c82d6c32479b1898d59fa4c533344ccc9b2d6760e6d2131212d7f6ec9840cd7 + languageName: node + linkType: hard + +"@react-stately/disclosure@npm:^3.0.1": + version: 3.0.1 + resolution: "@react-stately/disclosure@npm:3.0.1" + dependencies: + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/8bb54a19a0474b1e9354109b9ab85ff8f46b1ccacfdacecc00d806d97e240d51640db3c3f881b0f5bb693ee51ba9a2ee8412794f7858a37412acd785bf632b16 + languageName: node + linkType: hard + +"@react-stately/dnd@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-stately/dnd@npm:3.5.1" + dependencies: + "@react-stately/selection": "npm:^3.19.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6a7314da47dc311eb0a25939f9d41bf8367915b19075ff61ec29bccaa114ef562e638ff35d4a5e2b40ddbb457e5e00bdc09598f469261eca004e7192d4c5b6c3 + languageName: node + linkType: hard + +"@react-stately/flags@npm:^3.0.5": + version: 3.0.5 + resolution: "@react-stately/flags@npm:3.0.5" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 10c0/7cc8e1c1768f4c482cc0c402d42ff0c2f062bffc2197a2222c011db1851ad0becd8710c290ddf0b716cd4bed853885778a098d87a1021931d09e7cd1eec95401 + languageName: node + linkType: hard + +"@react-stately/form@npm:^3.1.1": + version: 3.1.1 + resolution: "@react-stately/form@npm:3.1.1" + dependencies: + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/fca8b0cd2891e51db51577d34b0c98a87175b7c2983187d66ef185201e0d19d0033c20d6dc56cf1f92f8636f831ce8fc81ebfe934ccc2ec73e6c7424bb2a5726 + languageName: node + linkType: hard + +"@react-stately/grid@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-stately/grid@npm:3.10.1" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/5a3eb34b505b509890a08be3d9fe86cfb9a22396e0ec99cc1df82144d3c2ab8120834b5c3f973eb5fce35e7fe42102edc3b9a1c646d6653c86eacf0040dcb2a1 + languageName: node + linkType: hard + +"@react-stately/layout@npm:^4.1.1": + version: 4.1.1 + resolution: "@react-stately/layout@npm:4.1.1" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/table": "npm:^3.13.1" + "@react-stately/virtualizer": "npm:^4.2.1" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@react-types/table": "npm:^3.10.4" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/ebae2724bbb6200d4da4372614592b38b5b2242bc4e195ef9e81f1762facb29e63eb779eff877e6b5620ed603b40353f87669273f69b847a52c7e5213fd5a70f + languageName: node + linkType: hard + +"@react-stately/list@npm:^3.11.2": + version: 3.11.2 + resolution: "@react-stately/list@npm:3.11.2" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/a66a46c7560c31a4253f6d4aefb4831bb6b6df59b982a52dad0a777be37faa4f7486c092a580e5e3361d17f58c0a8bc9167fa777920d81e200c41ddb1447c6eb + languageName: node + linkType: hard + +"@react-stately/menu@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-stately/menu@npm:3.9.1" + dependencies: + "@react-stately/overlays": "npm:^3.6.13" + "@react-types/menu": "npm:^3.9.14" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/9369d734c2583167be10ca61d6bf13fac3f273275b91015d191cf0b424a785f5ff4b815406a45ac3ef3dd52f16ba376fb9ad1e362f643549f187eb40e806fc89 + languageName: node + linkType: hard + +"@react-stately/numberfield@npm:^3.9.9": + version: 3.9.9 + resolution: "@react-stately/numberfield@npm:3.9.9" + dependencies: + "@internationalized/number": "npm:^3.6.0" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/numberfield": "npm:^3.8.8" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/3ee9569ea541dce3dd89eb9b360819cc3eb2266c2b9db18c1d2294f4d7fb0f2ec3b344f62389947e002609afb2201ee65398d51109add38db258da5ffffa79be + languageName: node + linkType: hard + +"@react-stately/overlays@npm:^3.6.13": + version: 3.6.13 + resolution: "@react-stately/overlays@npm:3.6.13" + dependencies: + "@react-stately/utils": "npm:^3.10.5" + "@react-types/overlays": "npm:^3.8.12" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/4a808fbfea6694978a40bb45816bc1a82a2cf26d975d0cf751b583179a5626679d145c2afdb539c994689235b80410f740df9e6d1f15ed9daf97a3d7ad104955 + languageName: node + linkType: hard + +"@react-stately/radio@npm:^3.10.10": + version: 3.10.10 + resolution: "@react-stately/radio@npm:3.10.10" + dependencies: + "@react-stately/form": "npm:^3.1.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/radio": "npm:^3.8.6" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d9a91545c96184e603d13785522b531b6612e18b058de5b82212a4d8220847a4b3dbb3b06e4ffc3ea4e0e787df40ab802795eefb27696cf038cc944c1b22e3d8 + languageName: node + linkType: hard + +"@react-stately/searchfield@npm:^3.5.9": + version: 3.5.9 + resolution: "@react-stately/searchfield@npm:3.5.9" + dependencies: + "@react-stately/utils": "npm:^3.10.5" + "@react-types/searchfield": "npm:^3.5.11" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/915f62ee6a7ff7aa01b93cd72eda80ed4ec695d38448bb3fe47352079d3edcd8e8adef0e0348fcddd86ba6fa68505d556c507994c94daa516320bd8974127314 + languageName: node + linkType: hard + +"@react-stately/select@npm:^3.6.10": + version: 3.6.10 + resolution: "@react-stately/select@npm:3.6.10" + dependencies: + "@react-stately/form": "npm:^3.1.1" + "@react-stately/list": "npm:^3.11.2" + "@react-stately/overlays": "npm:^3.6.13" + "@react-types/select": "npm:^3.9.9" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/06d7a8e944c46d5ce75c6c90c0efc5cf7e44ee443e783c3658a80ef6ccfb3e51ef2c8444ba754537e85963902ee8ebd92fe79a59ebf2f46d925d86c690fb6d0c + languageName: node + linkType: hard + +"@react-stately/selection@npm:^3.19.0": + version: 3.19.0 + resolution: "@react-stately/selection@npm:3.19.0" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d064fb571a7d08e48db0a537a3458e024da2ebf8328131fd285c9f07b3412ff7cc2600dadbe1227318abb4ae5b1fa4982a2b4c8503ae114f85c1e3865f94ac10 + languageName: node + linkType: hard + +"@react-stately/slider@npm:^3.6.1": + version: 3.6.1 + resolution: "@react-stately/slider@npm:3.6.1" + dependencies: + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@react-types/slider": "npm:^3.7.8" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/26ccf1b586d06867026df19d8dcdd5e5d789da5f90a57a7930d44b1fd082a6485987fcfb7f20946051a8b1572606460e18306c639701040a3fd027ed53196bc3 + languageName: node + linkType: hard + +"@react-stately/table@npm:^3.13.1": + version: 3.13.1 + resolution: "@react-stately/table@npm:3.13.1" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/flags": "npm:^3.0.5" + "@react-stately/grid": "npm:^3.10.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@react-types/table": "npm:^3.10.4" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/2ed5b4046ef847c52fe55cfa273a6db8fd5c40323084dcc2d75c02011416d1399c45e4fa8da19069272d4dd70e61764237488fbc5850181b2df4fb6f2646daaa + languageName: node + linkType: hard + +"@react-stately/tabs@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/tabs@npm:3.7.1" + dependencies: + "@react-stately/list": "npm:^3.11.2" + "@react-types/shared": "npm:^3.27.0" + "@react-types/tabs": "npm:^3.3.12" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/30571157dfd8c065ef314b05b653ca71a89d2e54988f6288d021f989d1e63af40f42706444e97e38f5b1acf3e7ea8f6016ffa21a8cb1d12bcd1088ecd64a0eba + languageName: node + linkType: hard + +"@react-stately/toggle@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-stately/toggle@npm:3.8.1" + dependencies: + "@react-stately/utils": "npm:^3.10.5" + "@react-types/checkbox": "npm:^3.9.1" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/675fda59149c4240cc053476f5edac8ed591cd1a42b20da02ad9e316afc56cb1b8d8978211b050350467391dc1cb5e32da4e3a6bea7e93a6048ffa62b6e6f4b7 + languageName: node + linkType: hard + +"@react-stately/tooltip@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-stately/tooltip@npm:3.5.1" + dependencies: + "@react-stately/overlays": "npm:^3.6.13" + "@react-types/tooltip": "npm:^3.4.14" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/e9c0492dc28b6db61093bd60d2494cbe63911a76b03a0838c5d58c2c038e7dea64f89a3ad232122f1106b6cbacc33ea5cf04efce20e39ff7f6946aebc10bb671 + languageName: node + linkType: hard + +"@react-stately/tree@npm:^3.8.7": + version: 3.8.7 + resolution: "@react-stately/tree@npm:3.8.7" + dependencies: + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/utils": "npm:^3.10.5" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/99f5f4f7c8db4cef70245aaaffc6abfc9ec5f9b057ca367f3d7bcabdcbd97d9f83931ad1a0fe776d0aae23fe9fe6f800beb6fc9cb6cbfe1004ad6706dec5ec14 + languageName: node + linkType: hard + +"@react-stately/utils@npm:^3.10.4, @react-stately/utils@npm:^3.10.5": + version: 3.10.5 + resolution: "@react-stately/utils@npm:3.10.5" + dependencies: + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/188500fef26361515d1a6c506ad347f68c82a1d61a13a09109080966a195e1cf97686991143e0d5684fd0b1a3c6a0a1e0149c92c0665bcc34c2026cd9730af1c + languageName: node + linkType: hard + +"@react-stately/virtualizer@npm:^4.2.1": + version: 4.2.1 + resolution: "@react-stately/virtualizer@npm:4.2.1" + dependencies: + "@react-aria/utils": "npm:^3.27.0" + "@react-types/shared": "npm:^3.27.0" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/43ed5d8a2be21a366b51fff1dc67522c710894eb0aa30c6a50f6cebbad441794d73a3ebc36ab5271bad8ffd56417e38c5f2c211cb4e0070d020e2c0f81148fa0 + languageName: node + linkType: hard + +"@react-types/autocomplete@npm:3.0.0-alpha.28": + version: 3.0.0-alpha.28 + resolution: "@react-types/autocomplete@npm:3.0.0-alpha.28" + dependencies: + "@react-types/combobox": "npm:^3.13.2" + "@react-types/searchfield": "npm:^3.5.11" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/430099e9f8d9b04cc1eb594d0c0197a0269cf2a7f16e7eb58d52b17d5815b5bbd8774b4ed330ecb8531667609e4b2656724b7486680b86bcfe2fdf9642fc0648 + languageName: node + linkType: hard + +"@react-types/breadcrumbs@npm:^3.7.10": + version: 3.7.10 + resolution: "@react-types/breadcrumbs@npm:3.7.10" + dependencies: + "@react-types/link": "npm:^3.5.10" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/3c7ce2f5a3ea2e3320b5da84c312e67249dc327ba4bc3c0ea4b755760d44dd38bf7a6c6efd0a3fa69f99d130874975ea05880bd315a2911358da3c840be35009 + languageName: node + linkType: hard + +"@react-types/button@npm:^3.10.2": + version: 3.10.2 + resolution: "@react-types/button@npm:3.10.2" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/973ef42e495218287d392876844ad0fe3c866fac1c1b20f8050df1e4f3abc96aeb8f7089054371a68b525ddda6d3956bd8bb67880a740e6a14d08c2a2fc80d5d + languageName: node + linkType: hard + +"@react-types/calendar@npm:^3.6.0": + version: 3.6.0 + resolution: "@react-types/calendar@npm:3.6.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/0a228229e23e8234502bd00f77a2ce36c7327e7e4633ffae87cfa8b9c5774f361d4eedb50c53c39f9b5380825b7cdabea69d8d292ba45d373ed054fb484bca7a + languageName: node + linkType: hard + +"@react-types/checkbox@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-types/checkbox@npm:3.9.1" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/9cadd1e523f214308ff65340e28608a036e59dae9bac544c79f122d1c49df0d632db7637fdeb1569b1b7611f359c0cea1d6324442ab986c1ce7b14ac1722bf75 + languageName: node + linkType: hard + +"@react-types/color@npm:^3.0.2": + version: 3.0.2 + resolution: "@react-types/color@npm:3.0.2" + dependencies: + "@react-types/shared": "npm:^3.27.0" + "@react-types/slider": "npm:^3.7.8" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/aac0701365e5c168288df8d04b896ac1c7192b1c78a594ff75671425fe08ff400d495f00d8549832343c103edeca863ea6db286750d781e1cfdebd28a830238b + languageName: node + linkType: hard + +"@react-types/combobox@npm:^3.13.2": + version: 3.13.2 + resolution: "@react-types/combobox@npm:3.13.2" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/acf4186342236ccb55ad3565024954d4ca7c54768f9670ba9992088780b548d56e9c13ec0cb6538109bfd912f20ee73257491c25b2942e2aae0dd4db2f70f5ec + languageName: node + linkType: hard + +"@react-types/datepicker@npm:^3.10.0": + version: 3.10.0 + resolution: "@react-types/datepicker@npm:3.10.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@react-types/calendar": "npm:^3.6.0" + "@react-types/overlays": "npm:^3.8.12" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/b19ec51fa3843ec5725dbea1d94c74acfebfacf1ec705f3d8fe6010b6a04d9b8a08a04447dc6591cecbece857d5a5433b6b4dc2f34cb6ec20cbbf8b74d23a52f + languageName: node + linkType: hard + +"@react-types/dialog@npm:^3.5.15": + version: 3.5.15 + resolution: "@react-types/dialog@npm:3.5.15" + dependencies: + "@react-types/overlays": "npm:^3.8.12" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/2c86301dd044d967f62a8049cd99cc40e8c96fa3cd32c154f45065f36a919f25d9951970fbbd11f4cabd2a9c0f416624135a0db4d1df1db313dbc809b529553d + languageName: node + linkType: hard + +"@react-types/form@npm:^3.7.9": + version: 3.7.9 + resolution: "@react-types/form@npm:3.7.9" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/a5858f8983ee1b8d73f331872f465745c1c69604d5ee457dfe3a6d36e03ffd8d7125906f6455354bedf93a3636eda31d95a8a98dcabd32613bdf24344037d8c7 + languageName: node + linkType: hard + +"@react-types/grid@npm:^3.2.11": + version: 3.2.11 + resolution: "@react-types/grid@npm:3.2.11" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/7badbdd89b4445cd9327e64e81c04c61b62990617224c8fc5a4649e8e2c254fc256c2a6eddf4ef3150fca9a19640d51c09270af0a5e49c1f35dcecd8fa4f10b4 + languageName: node + linkType: hard + +"@react-types/link@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-types/link@npm:3.5.10" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/49a9730b71862e92fcdb66b1549989a26cc24df04ce58b6a82f16498719396aeb0729b29aba590a3684dcf7580487526fc4e606b619ea595cc932ccacbe1b16b + languageName: node + linkType: hard + +"@react-types/listbox@npm:^3.5.4": + version: 3.5.4 + resolution: "@react-types/listbox@npm:3.5.4" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/197576b0a62e97a58d648eb460cb3575a4d4490f4e689c16b2aec87f61603ad9be369389c76427fccf3ddff6157d20d8bae924a59dec4e1fe1bf5ae34ec630c0 + languageName: node + linkType: hard + +"@react-types/menu@npm:^3.9.14": + version: 3.9.14 + resolution: "@react-types/menu@npm:3.9.14" + dependencies: + "@react-types/overlays": "npm:^3.8.12" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/080d0cd6870c04be55160002242aafa8b19b2b203213f6b440ae7f4a61ec5c4e664db8c3d3e0b60b8ebd255ba7054eaf2039dedf70ba8143480c4dc627435647 + languageName: node + linkType: hard + +"@react-types/meter@npm:^3.4.6": + version: 3.4.6 + resolution: "@react-types/meter@npm:3.4.6" + dependencies: + "@react-types/progress": "npm:^3.5.9" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/0f962e27b6736e9c1a33fdf7baa2101555ac50ea363a7a4da5bb1f78ad3d8fe0e09d0d97937af818c11840cb426f7533a0efda7fff0585850cca794418c69e91 + languageName: node + linkType: hard + +"@react-types/numberfield@npm:^3.8.8": + version: 3.8.8 + resolution: "@react-types/numberfield@npm:3.8.8" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/1f580aee682668f7a5949977a44cfa71246779d778155702f2026fe2c501ca154185fe6df328e830b7e708f39343ba2184a7016b560d98c8247edc7ab3ed1bb6 + languageName: node + linkType: hard + +"@react-types/overlays@npm:^3.8.12": + version: 3.8.12 + resolution: "@react-types/overlays@npm:3.8.12" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/4223961e8c685d3c98d7c2302fe26caa7f665b5bc718c95677bfc95b7442406de58a364a3fb0dedb56e280e7457dadb1163823cd2338b1aeab2ea981956b76cb + languageName: node + linkType: hard + +"@react-types/progress@npm:^3.5.9": + version: 3.5.9 + resolution: "@react-types/progress@npm:3.5.9" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d28cd1d63b97f6dd28f0035fa9565095d3701470c6330afb59d1a6092d391517d52a7b36072d306498c57821df752ff02e2933ccde11a1d27c9d181116f0ef7c + languageName: node + linkType: hard + +"@react-types/radio@npm:^3.8.6": + version: 3.8.6 + resolution: "@react-types/radio@npm:3.8.6" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/24bac2b2df9fbb6b05e001db984a08a700b5702049da7caed243776433967ee2b169f6ef1f9e4c7c58ec4a41e7a9c04da905de7a5aa621ffb93e6e5a06f1057b + languageName: node + linkType: hard + +"@react-types/searchfield@npm:^3.5.11": + version: 3.5.11 + resolution: "@react-types/searchfield@npm:3.5.11" + dependencies: + "@react-types/shared": "npm:^3.27.0" + "@react-types/textfield": "npm:^3.11.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/971fedf47134c3723710563c97319ad8eef3afeeb6785da43c04ec2f40d219dac7d87121027596122f28c2538e9b1e3d1fe6a679a68a7604afc11ea8bfd25704 + languageName: node + linkType: hard + +"@react-types/select@npm:^3.9.9": + version: 3.9.9 + resolution: "@react-types/select@npm:3.9.9" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/d4c0ec686af30d747a083b663f4df6d9a5e0b091ab84651626eca65be0c9d2a52e55697f58280ecc37355312ecbd675839abefa3abf3fac02f0aeeb0e44fcada + languageName: node + linkType: hard + +"@react-types/shared@npm:^3.27.0": + version: 3.27.0 + resolution: "@react-types/shared@npm:3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/7d710d776dcb6a832d3dc5ec281a81cd00a5b5aec1ecfcf7799c73bdb62c8739e574e29dafe04f7710a0ea568e4e11621091658a9c73d3191e1b0f5f3ff21f95 + languageName: node + linkType: hard + +"@react-types/slider@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-types/slider@npm:3.7.8" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/4b3ce3e8fcf9a31ed65032e8bf213826bd3cf2c50c539f633df25a3681794ec31b53379fcd4615077f388470353c0c75ab45593dffd206602ded6751d1326c12 + languageName: node + linkType: hard + +"@react-types/switch@npm:^3.5.8": + version: 3.5.8 + resolution: "@react-types/switch@npm:3.5.8" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6f40dc847b528755dbfd70ad4f57e8d15208f38bbf200a21dab8e74108aeda7dde94e5b9f119764db73cc72fa223770f25216f8f92112866beac6a548f46ff85 + languageName: node + linkType: hard + +"@react-types/table@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-types/table@npm:3.10.4" + dependencies: + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/6088bc1ab3c73caf8d363f89a02aa252853f5fa0c728eccc32190f788fc54032c16503d905ca849eb990d7945a947b2b2cfa7af922ae4e653d4fe2d549f923b4 + languageName: node + linkType: hard + +"@react-types/tabs@npm:^3.3.12": + version: 3.3.12 + resolution: "@react-types/tabs@npm:3.3.12" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/2fe176975e7243a0ecdabd7fbecea0239883a4cc68937e0607a09cb9652f2aefeeaf20862f9728abd93e7df7512dcc7d2a7646d918abbdcb00a95b339d5c87a6 + languageName: node + linkType: hard + +"@react-types/textfield@npm:^3.11.0": + version: 3.11.0 + resolution: "@react-types/textfield@npm:3.11.0" + dependencies: + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/5e058c82738a1a6edc50ca650a9b769e557e2e0f2cfe22311fd7d8654f7fd9a758d614c6ea98c59d12efb231611b2f36c67a4485e40ee401cdaaa965ce22d1d3 + languageName: node + linkType: hard + +"@react-types/tooltip@npm:^3.4.14": + version: 3.4.14 + resolution: "@react-types/tooltip@npm:3.4.14" + dependencies: + "@react-types/overlays": "npm:^3.8.12" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/2eacf7ed585b8e6e6f191d0cf30c693a09a006314eb0d8def9b96de02b4f54db594e0c60480e6444dc36cd79958abf35c8e7142a57898cc9899b999ab565a5cb + languageName: node + linkType: hard + +"@rollup/plugin-commonjs@npm:28.0.1": + version: 28.0.1 + resolution: "@rollup/plugin-commonjs@npm:28.0.1" + dependencies: + "@rollup/pluginutils": "npm:^5.0.1" + commondir: "npm:^1.0.1" + estree-walker: "npm:^2.0.2" + fdir: "npm:^6.2.0" + is-reference: "npm:1.2.1" + magic-string: "npm:^0.30.3" + picomatch: "npm:^4.0.2" + peerDependencies: + rollup: ^2.68.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: 10c0/15d73306f539763a4b0d5723a0be9099b56d07118ff12b4c7f4c04b26e762076706e9f88a45f131d639ed9b7bd52e51facf93f2ca265b994172677b48ca705fe + languageName: node + linkType: hard + +"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.0.2, @rollup/pluginutils@npm:^5.1.0": + version: 5.1.4 + resolution: "@rollup/pluginutils@npm:5.1.4" + dependencies: + "@types/estree": "npm:^1.0.0" + estree-walker: "npm:^2.0.2" + picomatch: "npm:^4.0.2" + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: 10c0/6d58fbc6f1024eb4b087bc9bf59a1d655a8056a60c0b4021d3beaeec3f0743503f52467fd89d2cf0e7eccf2831feb40a05ad541a17637ea21ba10b21c2004deb + languageName: node + linkType: hard + +"@rollup/rollup-android-arm-eabi@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.8" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@rollup/rollup-android-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-android-arm64@npm:4.34.8" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-darwin-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-darwin-x64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-darwin-x64@npm:4.34.8" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@rollup/rollup-freebsd-arm64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8" + conditions: os=freebsd & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-freebsd-x64@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8" + conditions: os=linux & cpu=arm & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm-musleabihf@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8" + conditions: os=linux & cpu=arm & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm64-musl@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8" + conditions: os=linux & cpu=loong64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-riscv64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-s390x-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-gnu@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-gnu@npm:4.9.5": + version: 4.9.5 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.9.5" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-musl@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-win32-arm64-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@rollup/rollup-win32-ia32-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@rollup/rollup-win32-x64-msvc@npm:4.34.8": + version: 4.34.8 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@rtsao/scc@npm:^1.1.0": + version: 1.1.0 + resolution: "@rtsao/scc@npm:1.1.0" + checksum: 10c0/b5bcfb0d87f7d1c1c7c0f7693f53b07866ed9fec4c34a97a8c948fb9a7c0082e416ce4d3b60beb4f5e167cbe04cdeefbf6771320f3ede059b9ce91188c409a5b + languageName: node + linkType: hard + +"@rushstack/eslint-patch@npm:^1.3.3": + version: 1.10.5 + resolution: "@rushstack/eslint-patch@npm:1.10.5" + checksum: 10c0/ea66e8be3a78a48d06e8ff33221cef5749386589236bbcd24013577d2b4e1035e3dc919740c6e0f16d44c1e0b62d06d00898508fc74cc2adb0ac6b667aa5a8e4 + languageName: node + linkType: hard + +"@rushstack/node-core-library@npm:4.0.2": + version: 4.0.2 + resolution: "@rushstack/node-core-library@npm:4.0.2" + dependencies: + fs-extra: "npm:~7.0.1" + import-lazy: "npm:~4.0.0" + jju: "npm:~1.4.0" + resolve: "npm:~1.22.1" + semver: "npm:~7.5.4" + z-schema: "npm:~5.0.2" + peerDependencies: + "@types/node": "*" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/b60070b5b8f4da0cbda5b37f950ed5d3843f3c68aab13ce1d4383b9fd71ca94065dfdd2e3b10b361ae0ef5fd0182d891da2addfd3f1ca21e7789110f6266d83f + languageName: node + linkType: hard + +"@rushstack/rig-package@npm:0.5.2": + version: 0.5.2 + resolution: "@rushstack/rig-package@npm:0.5.2" + dependencies: + resolve: "npm:~1.22.1" + strip-json-comments: "npm:~3.1.1" + checksum: 10c0/7bff460eb8407a68de20681b6354703c0fdb7a325c58060a2c4591b86dd3b83b95b651ccba3cc833f8d1a94c3a19638091b447c03d89eaa9df57bc9de7abb29d + languageName: node + linkType: hard + +"@rushstack/terminal@npm:0.10.0": + version: 0.10.0 + resolution: "@rushstack/terminal@npm:0.10.0" + dependencies: + "@rushstack/node-core-library": "npm:4.0.2" + supports-color: "npm:~8.1.1" + peerDependencies: + "@types/node": "*" + peerDependenciesMeta: + "@types/node": + optional: true + checksum: 10c0/128d13d353265bd318fc52a5d2eaf6d352d3abd29fc3500d630b4d114b43392e2dfe8c4df200e855dc2c07e6d4e8f2175c38b5a8b71dff1eee7aa1f5a261e1c7 + languageName: node + linkType: hard + +"@rushstack/ts-command-line@npm:4.19.1": + version: 4.19.1 + resolution: "@rushstack/ts-command-line@npm:4.19.1" + dependencies: + "@rushstack/terminal": "npm:0.10.0" + "@types/argparse": "npm:1.0.38" + argparse: "npm:~1.0.9" + string-argv: "npm:~0.3.1" + checksum: 10c0/329184ae53b3d5dc0218ef63dbbd65efc3a3f423595cf69865cb47ee7ae233cfa8c93d87c31cdb1ef8a00f286d3dd56dc629a16c5903777a9eb1f603dd801c25 + languageName: node + linkType: hard + +"@scandic-hotels/design-system@workspace:*, @scandic-hotels/design-system@workspace:packages/design-system": + version: 0.0.0-use.local + resolution: "@scandic-hotels/design-system@workspace:packages/design-system" + dependencies: + "@laynezh/vite-plugin-lib-assets": "npm:^0.5.18" + "@storybook/addon-essentials": "npm:^8.0.0-beta.0" + "@storybook/addon-interactions": "npm:^8.0.0-beta.0" + "@storybook/addon-links": "npm:^8.0.0-beta.0" + "@storybook/addon-onboarding": "npm:^1.0.11" + "@storybook/blocks": "npm:^8.0.0-beta.0" + "@storybook/react": "npm:^8.0.0-beta.0" + "@storybook/react-vite": "npm:^8.0.0-beta.0" + "@storybook/test": "npm:^8.0.0-beta.0" + "@types/react": "npm:^18.2.43" + "@types/react-dom": "npm:^18.2.17" + "@typescript-eslint/eslint-plugin": "npm:^6.14.0" + "@typescript-eslint/parser": "npm:^6.14.0" + "@vitejs/plugin-react": "npm:^4.2.1" + class-variance-authority: "npm:^0.7.0" + eslint: "npm:^8.55.0" + eslint-plugin-react-hooks: "npm:^4.6.0" + eslint-plugin-react-refresh: "npm:^0.4.5" + eslint-plugin-storybook: "npm:^0.6.15" + glob: "npm:^10.3.10" + jiti: "npm:^1.21.0" + lint-staged: "npm:^15.2.2" + magic-string: "npm:^0.30.7" + natural-orderby: "npm:^3.0.2" + patch-package: "npm:^8.0.0" + prettier: "npm:^3.2.5" + react: "npm:^18.2.0" + react-aria-components: "npm:^1.0.1" + react-dom: "npm:^18.2.0" + storybook: "npm:^8.0.0-beta.0" + typescript: "npm:^5.2.2" + vite: "npm:^5.0.8" + vite-plugin-dts: "npm:^3.7.2" + vite-plugin-lib-inject-css: "npm:^1.3.0" + vitest: "npm:^1.2.2" + peerDependencies: + react: ^18.2.0 + react-aria-components: ^1.0.1 + react-dom: ^18.2.0 + languageName: unknown + linkType: soft + +"@scandic-hotels/scandic-web@workspace:apps/scandic-web": + version: 0.0.0-use.local + resolution: "@scandic-hotels/scandic-web@workspace:apps/scandic-web" + dependencies: + "@azure/monitor-opentelemetry-exporter": "npm:^1.0.0-beta.27" + "@contentstack/live-preview-utils": "npm:^3.0.0" + "@formatjs/intl": "npm:^2.10.15" + "@hookform/error-message": "npm:^2.0.1" + "@hookform/resolvers": "npm:^3.3.4" + "@internationalized/date": "npm:^3.6.0" + "@netlify/blobs": "npm:^8.1.0" + "@netlify/functions": "npm:^3.0.0" + "@netlify/plugin-nextjs": "npm:^5.9.4" + "@opentelemetry/api": "npm:^1.9.0" + "@opentelemetry/api-logs": "npm:^0.56.0" + "@opentelemetry/instrumentation": "npm:^0.56.0" + "@opentelemetry/resources": "npm:^1.29.0" + "@opentelemetry/sdk-logs": "npm:^0.56.0" + "@opentelemetry/sdk-metrics": "npm:^1.25.1" + "@opentelemetry/sdk-trace-base": "npm:^1.29.0" + "@preact/signals-core": "npm:^1.7.0" + "@radix-ui/react-dialog": "npm:^1.1.1" + "@radix-ui/react-slot": "npm:^1.0.2" + "@radix-ui/react-visually-hidden": "npm:^1.1.0" + "@react-aria/ssr": "npm:^3.9.5" + "@scandic-hotels/design-system": "workspace:*" + "@sentry/nextjs": "npm:^8.41.0" + "@svgr/webpack": "npm:^8.1.0" + "@t3-oss/env-nextjs": "npm:^0.9.2" + "@tanstack/react-query": "npm:^5.28.6" + "@tanstack/react-query-devtools": "npm:^5.64.2" + "@tanstack/react-table": "npm:^8.20.5" + "@testing-library/dom": "npm:^10.0.0" + "@testing-library/jest-dom": "npm:^6.4.6" + "@testing-library/react": "npm:^16.0.0" + "@testing-library/user-event": "npm:^14.5.2" + "@trpc/client": "npm:^11.0.0-rc.467" + "@trpc/react-query": "npm:^11.0.0-rc.467" + "@trpc/server": "npm:^11.0.0-rc.467" + "@tsparticles/confetti": "npm:^3.5.0" + "@types/geojson": "npm:^7946.0.16" + "@types/jest": "npm:^29.5.12" + "@types/json-stable-stringify-without-jsonify": "npm:^1.0.2" + "@types/node": "npm:^20" + "@types/react": "npm:^18" + "@types/react-dom": "npm:^18" + "@types/supercluster": "npm:^7.1.3" + "@typescript-eslint/eslint-plugin": "npm:^8.17.0" + "@typescript-eslint/parser": "npm:^8.17.0" + "@vercel/otel": "npm:^1.9.1" + "@vis.gl/react-google-maps": "npm:^1.2.0" + class-variance-authority: "npm:^0.7.0" + clean-deep: "npm:^3.4.0" + contentstack: "npm:^3.23.0" + cypress: "npm:^13.6.6" + date-fns: "npm:^4.1.0" + dayjs: "npm:^1.11.10" + deepmerge: "npm:^4.3.1" + dotenv: "npm:^16.4.5" + downshift: "npm:^9.0.8" + embla-carousel: "npm:^8.5.2" + embla-carousel-react: "npm:^8.5.2" + eslint: "npm:^8" + eslint-config-next: "npm:^14.0.4" + eslint-plugin-import: "npm:^2.29.1" + eslint-plugin-simple-import-sort: "npm:^12.1.0" + fast-deep-equal: "npm:^3.1.3" + fetch-retry: "npm:^6.0.0" + framer-motion: "npm:11.3.28" + graphql: "npm:^16.8.1" + graphql-request: "npm:^6.1.0" + graphql-tag: "npm:^2.12.6" + html-react-parser: "npm:^5.2.2" + ics: "npm:^3.8.1" + immer: "npm:10.1.1" + input-otp: "npm:^1.4.2" + jest: "npm:^29.7.0" + jest-environment-jsdom: "npm:^29.7.0" + jiti: "npm:^1.21.0" + json-sort-cli: "npm:^4.0.4" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + libphonenumber-js: "npm:^1.10.60" + lint-staged: "npm:^15.2.2" + nanoid: "npm:^5.0.9" + netlify-plugin-cypress: "npm:^2.2.1" + next: "npm:^14.2.18" + next-auth: "npm:5.0.0-beta.19" + prettier: "npm:^3.2.5" + react: "npm:^18" + react-aria-components: "npm:^1.6.0" + react-day-picker: "npm:^9.0.8" + react-dom: "npm:^18" + react-feather: "npm:^2.0.10" + react-hook-form: "npm:^7.51.2" + react-international-phone: "npm:^4.2.6" + react-intl: "npm:^6.6.8" + react-to-print: "npm:^3.0.2" + schema-dts: "npm:^1.1.2" + server-only: "npm:^0.0.1" + slugify: "npm:^1.6.6" + sonner: "npm:^1.7.0" + start-server-and-test: "npm:^2.0.3" + supercluster: "npm:^8.0.1" + superjson: "npm:^2.2.1" + ts-node: "npm:^10.9.2" + typescript: "npm:5.4.5" + typescript-plugin-css-modules: "npm:^5.1.0" + usehooks-ts: "npm:3.1.0" + uuid: "npm:^11.0.5" + zod: "npm:3.22.4" + zustand: "npm:^4.5.2" + languageName: unknown + linkType: soft + +"@sentry-internal/browser-utils@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry-internal/browser-utils@npm:8.55.0" + dependencies: + "@sentry/core": "npm:8.55.0" + checksum: 10c0/201eb94ee64a4dab058153c64dd4ce0af082f3c3bc84a5441cdadf344d9554a0a67c9d9dfdff720eb42de214d67d734d5bda25a050c2efd59c03f60562bb139a + languageName: node + linkType: hard + +"@sentry-internal/feedback@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry-internal/feedback@npm:8.55.0" + dependencies: + "@sentry/core": "npm:8.55.0" + checksum: 10c0/2515c4eca6226e3df28a498f7f3771d7820556887bf8c06f2d5469c92474cf72ed81eaa0079f6bcf46905c54315e2631bb7b9ed7ed6741cf9b7f73a3f4875acc + languageName: node + linkType: hard + +"@sentry-internal/replay-canvas@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry-internal/replay-canvas@npm:8.55.0" + dependencies: + "@sentry-internal/replay": "npm:8.55.0" + "@sentry/core": "npm:8.55.0" + checksum: 10c0/6f3c619ede1de47635035f74477dd5a11e5c2cac9d0906448a7fffb6dad1c5bd9a49a594fbc2a51ba3b1859a91f60e08ab6de2d9961ccbaa343af580f1d13fb1 + languageName: node + linkType: hard + +"@sentry-internal/replay@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry-internal/replay@npm:8.55.0" + dependencies: + "@sentry-internal/browser-utils": "npm:8.55.0" + "@sentry/core": "npm:8.55.0" + checksum: 10c0/320fd5685c1e84c5feebaa88fc72afd0bd5189b95d690f8c24301cd8b13789431b2c1d28e3e5a93f669ca3b80cdc830e672723aa7a28ff8f0b901674ce0c0529 + languageName: node + linkType: hard + +"@sentry/babel-plugin-component-annotate@npm:2.22.7": + version: 2.22.7 + resolution: "@sentry/babel-plugin-component-annotate@npm:2.22.7" + checksum: 10c0/1812aa3de7ec1a93e24d4fbac49b609a4feac9a7c72de440456707013b6e68c3e2a1bac5d24d99ca710eac49a96fa1cf081ca032e24e667ae1b1165e143dc03d + languageName: node + linkType: hard + +"@sentry/browser@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/browser@npm:8.55.0" + dependencies: + "@sentry-internal/browser-utils": "npm:8.55.0" + "@sentry-internal/feedback": "npm:8.55.0" + "@sentry-internal/replay": "npm:8.55.0" + "@sentry-internal/replay-canvas": "npm:8.55.0" + "@sentry/core": "npm:8.55.0" + checksum: 10c0/a485de7385851c96ed4c2291d065594aeea2076b11b3b113f4866fdbff1522524abd97664f0d0b011e0eff6c4986a556f080bccfa1b770466c6afcb6122dfbaf + languageName: node + linkType: hard + +"@sentry/bundler-plugin-core@npm:2.22.7": + version: 2.22.7 + resolution: "@sentry/bundler-plugin-core@npm:2.22.7" + dependencies: + "@babel/core": "npm:^7.18.5" + "@sentry/babel-plugin-component-annotate": "npm:2.22.7" + "@sentry/cli": "npm:2.39.1" + dotenv: "npm:^16.3.1" + find-up: "npm:^5.0.0" + glob: "npm:^9.3.2" + magic-string: "npm:0.30.8" + unplugin: "npm:1.0.1" + checksum: 10c0/0dbc8d7359a70b0195a87605123eec6dc60ccdad8f84520bc92be0377f1bd9d3e3c92af2939f4c27ed31fc2d6c174a33a8024ce9a9f4b40b79f7ffe8f9cf872c + languageName: node + linkType: hard + +"@sentry/cli-darwin@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-darwin@npm:2.39.1" + conditions: os=darwin + languageName: node + linkType: hard + +"@sentry/cli-linux-arm64@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-linux-arm64@npm:2.39.1" + conditions: (os=linux | os=freebsd) & cpu=arm64 + languageName: node + linkType: hard + +"@sentry/cli-linux-arm@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-linux-arm@npm:2.39.1" + conditions: (os=linux | os=freebsd) & cpu=arm + languageName: node + linkType: hard + +"@sentry/cli-linux-i686@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-linux-i686@npm:2.39.1" + conditions: (os=linux | os=freebsd) & (cpu=x86 | cpu=ia32) + languageName: node + linkType: hard + +"@sentry/cli-linux-x64@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-linux-x64@npm:2.39.1" + conditions: (os=linux | os=freebsd) & cpu=x64 + languageName: node + linkType: hard + +"@sentry/cli-win32-i686@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-win32-i686@npm:2.39.1" + conditions: os=win32 & (cpu=x86 | cpu=ia32) + languageName: node + linkType: hard + +"@sentry/cli-win32-x64@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli-win32-x64@npm:2.39.1" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@sentry/cli@npm:2.39.1": + version: 2.39.1 + resolution: "@sentry/cli@npm:2.39.1" + dependencies: + "@sentry/cli-darwin": "npm:2.39.1" + "@sentry/cli-linux-arm": "npm:2.39.1" + "@sentry/cli-linux-arm64": "npm:2.39.1" + "@sentry/cli-linux-i686": "npm:2.39.1" + "@sentry/cli-linux-x64": "npm:2.39.1" + "@sentry/cli-win32-i686": "npm:2.39.1" + "@sentry/cli-win32-x64": "npm:2.39.1" + https-proxy-agent: "npm:^5.0.0" + node-fetch: "npm:^2.6.7" + progress: "npm:^2.0.3" + proxy-from-env: "npm:^1.1.0" + which: "npm:^2.0.2" + dependenciesMeta: + "@sentry/cli-darwin": + optional: true + "@sentry/cli-linux-arm": + optional: true + "@sentry/cli-linux-arm64": + optional: true + "@sentry/cli-linux-i686": + optional: true + "@sentry/cli-linux-x64": + optional: true + "@sentry/cli-win32-i686": + optional: true + "@sentry/cli-win32-x64": + optional: true + bin: + sentry-cli: bin/sentry-cli + checksum: 10c0/fcef4ac58a268f1c4242360ac74fef319a7e629d4168b1cf22c67c7d4e5d1fdf3613c29a949c570cb0375a42a289a13ba495545b60cda037f9783254abd7b4c8 + languageName: node + linkType: hard + +"@sentry/core@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/core@npm:8.55.0" + checksum: 10c0/51c1768f0bd940a060787b402dba9df3347c918ea4c0fdc300d45c37703ebbf6f7adee9fff332cfd6b23372b33c46e6d2f31a04227762d490aaddc14773894a0 + languageName: node + linkType: hard + +"@sentry/nextjs@npm:^8.41.0": + version: 8.55.0 + resolution: "@sentry/nextjs@npm:8.55.0" + dependencies: + "@opentelemetry/api": "npm:^1.9.0" + "@opentelemetry/semantic-conventions": "npm:^1.28.0" + "@rollup/plugin-commonjs": "npm:28.0.1" + "@sentry-internal/browser-utils": "npm:8.55.0" + "@sentry/core": "npm:8.55.0" + "@sentry/node": "npm:8.55.0" + "@sentry/opentelemetry": "npm:8.55.0" + "@sentry/react": "npm:8.55.0" + "@sentry/vercel-edge": "npm:8.55.0" + "@sentry/webpack-plugin": "npm:2.22.7" + chalk: "npm:3.0.0" + resolve: "npm:1.22.8" + rollup: "npm:3.29.5" + stacktrace-parser: "npm:^0.1.10" + peerDependencies: + next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0 + checksum: 10c0/1c52342d69dfbf2c06c06ae3409c9caf7e2760a107585392803edcb08ed78e8d5d30c6241e0fbf350ef0f33fa5cca71bd0af9da4d987749437980aeb924dd140 + languageName: node + linkType: hard + +"@sentry/node@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/node@npm:8.55.0" + dependencies: + "@opentelemetry/api": "npm:^1.9.0" + "@opentelemetry/context-async-hooks": "npm:^1.30.1" + "@opentelemetry/core": "npm:^1.30.1" + "@opentelemetry/instrumentation": "npm:^0.57.1" + "@opentelemetry/instrumentation-amqplib": "npm:^0.46.0" + "@opentelemetry/instrumentation-connect": "npm:0.43.0" + "@opentelemetry/instrumentation-dataloader": "npm:0.16.0" + "@opentelemetry/instrumentation-express": "npm:0.47.0" + "@opentelemetry/instrumentation-fastify": "npm:0.44.1" + "@opentelemetry/instrumentation-fs": "npm:0.19.0" + "@opentelemetry/instrumentation-generic-pool": "npm:0.43.0" + "@opentelemetry/instrumentation-graphql": "npm:0.47.0" + "@opentelemetry/instrumentation-hapi": "npm:0.45.1" + "@opentelemetry/instrumentation-http": "npm:0.57.1" + "@opentelemetry/instrumentation-ioredis": "npm:0.47.0" + "@opentelemetry/instrumentation-kafkajs": "npm:0.7.0" + "@opentelemetry/instrumentation-knex": "npm:0.44.0" + "@opentelemetry/instrumentation-koa": "npm:0.47.0" + "@opentelemetry/instrumentation-lru-memoizer": "npm:0.44.0" + "@opentelemetry/instrumentation-mongodb": "npm:0.51.0" + "@opentelemetry/instrumentation-mongoose": "npm:0.46.0" + "@opentelemetry/instrumentation-mysql": "npm:0.45.0" + "@opentelemetry/instrumentation-mysql2": "npm:0.45.0" + "@opentelemetry/instrumentation-nestjs-core": "npm:0.44.0" + "@opentelemetry/instrumentation-pg": "npm:0.50.0" + "@opentelemetry/instrumentation-redis-4": "npm:0.46.0" + "@opentelemetry/instrumentation-tedious": "npm:0.18.0" + "@opentelemetry/instrumentation-undici": "npm:0.10.0" + "@opentelemetry/resources": "npm:^1.30.1" + "@opentelemetry/sdk-trace-base": "npm:^1.30.1" + "@opentelemetry/semantic-conventions": "npm:^1.28.0" + "@prisma/instrumentation": "npm:5.22.0" + "@sentry/core": "npm:8.55.0" + "@sentry/opentelemetry": "npm:8.55.0" + import-in-the-middle: "npm:^1.11.2" + checksum: 10c0/fa18fa05ac25eb82f19ac58bfa136137d37162bc620206dd27ace3cfb3cedbf03acaced814725dbd25392976ea264678ba2b0da745cda563d456527873f5b89f + languageName: node + linkType: hard + +"@sentry/opentelemetry@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/opentelemetry@npm:8.55.0" + dependencies: + "@sentry/core": "npm:8.55.0" + peerDependencies: + "@opentelemetry/api": ^1.9.0 + "@opentelemetry/context-async-hooks": ^1.30.1 + "@opentelemetry/core": ^1.30.1 + "@opentelemetry/instrumentation": ^0.57.1 + "@opentelemetry/sdk-trace-base": ^1.30.1 + "@opentelemetry/semantic-conventions": ^1.28.0 + checksum: 10c0/8175aebd39064c288c0f0ec117f5b22daae67dbdb3827ffcc60ec32400833f6a5e1f7dc44b28ebabec3aa45952cf31e8237c216c4fdd7d7f3a228eabca583b58 + languageName: node + linkType: hard + +"@sentry/react@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/react@npm:8.55.0" + dependencies: + "@sentry/browser": "npm:8.55.0" + "@sentry/core": "npm:8.55.0" + hoist-non-react-statics: "npm:^3.3.2" + peerDependencies: + react: ^16.14.0 || 17.x || 18.x || 19.x + checksum: 10c0/09dafee92cb62d3aea5c4503b6d1ad79e293c0e4ad59a60b7700b9d99b18e8e8d6a47e18ed26278d7aa64adbf64c0797c2d096287eeb122a379f5b23b35f597e + languageName: node + linkType: hard + +"@sentry/vercel-edge@npm:8.55.0": + version: 8.55.0 + resolution: "@sentry/vercel-edge@npm:8.55.0" + dependencies: + "@opentelemetry/api": "npm:^1.9.0" + "@sentry/core": "npm:8.55.0" + checksum: 10c0/27d4ee0b03e422aabb7bb7c92ab15109ed53e2a476c753a308a3cf23a575dad51018e0d3bea36b4eab7dc504d8bda1e606c91bdcbc3f479104fc4508341b9e0a + languageName: node + linkType: hard + +"@sentry/webpack-plugin@npm:2.22.7": + version: 2.22.7 + resolution: "@sentry/webpack-plugin@npm:2.22.7" + dependencies: + "@sentry/bundler-plugin-core": "npm:2.22.7" + unplugin: "npm:1.0.1" + uuid: "npm:^9.0.0" + peerDependencies: + webpack: ">=4.40.0" + checksum: 10c0/075ac3f3a35814d0af5b14f078c662d9f07133f7c1a8dbe6d7d19aeb60cfe01aafbe0ecb9be8e8115fdf82390650a1cd68f3d47d6f76db014b355dbe17e52645 + languageName: node + linkType: hard + +"@sideway/address@npm:^4.1.5": + version: 4.1.5 + resolution: "@sideway/address@npm:4.1.5" + dependencies: + "@hapi/hoek": "npm:^9.0.0" + checksum: 10c0/638eb6f7e7dba209053dd6c8da74d7cc995e2b791b97644d0303a7dd3119263bcb7225a4f6804d4db2bc4f96e5a9d262975a014f58eae4d1753c27cbc96ef959 + languageName: node + linkType: hard + +"@sideway/formula@npm:^3.0.1": + version: 3.0.1 + resolution: "@sideway/formula@npm:3.0.1" + checksum: 10c0/3fe81fa9662efc076bf41612b060eb9b02e846ea4bea5bd114f1662b7f1541e9dedcf98aff0d24400bcb92f113964a50e0290b86e284edbdf6346fa9b7e2bf2c + languageName: node + linkType: hard + +"@sideway/pinpoint@npm:^2.0.0": + version: 2.0.0 + resolution: "@sideway/pinpoint@npm:2.0.0" + checksum: 10c0/d2ca75dacaf69b8fc0bb8916a204e01def3105ee44d8be16c355e5f58189eb94039e15ce831f3d544f229889ccfa35562a0ce2516179f3a7ee1bbe0b71e55b36 + languageName: node + linkType: hard + +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 10c0/ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e + languageName: node + linkType: hard + +"@sindresorhus/is@npm:^2.0.0": + version: 2.1.1 + resolution: "@sindresorhus/is@npm:2.1.1" + checksum: 10c0/0e19eb3024a44e2de575e169e49a3a7fcea5558b52f2173ce249d57ad3d45fe6d0401b0d0c0a190feb92974c9be523bd0dfd6d660f651c74d8c2b4532b748105 + languageName: node + linkType: hard + +"@sindresorhus/merge-streams@npm:^2.1.0": + version: 2.3.0 + resolution: "@sindresorhus/merge-streams@npm:2.3.0" + checksum: 10c0/69ee906f3125fb2c6bb6ec5cdd84e8827d93b49b3892bce8b62267116cc7e197b5cccf20c160a1d32c26014ecd14470a72a5e3ee37a58f1d6dadc0db1ccf3894 + languageName: node + linkType: hard + +"@sinonjs/commons@npm:^3.0.0": + version: 3.0.1 + resolution: "@sinonjs/commons@npm:3.0.1" + dependencies: + type-detect: "npm:4.0.8" + checksum: 10c0/1227a7b5bd6c6f9584274db996d7f8cee2c8c350534b9d0141fc662eaf1f292ea0ae3ed19e5e5271c8fd390d27e492ca2803acd31a1978be2cdc6be0da711403 + languageName: node + linkType: hard + +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.3.0 + resolution: "@sinonjs/fake-timers@npm:10.3.0" + dependencies: + "@sinonjs/commons": "npm:^3.0.0" + checksum: 10c0/2e2fb6cc57f227912814085b7b01fede050cd4746ea8d49a1e44d5a0e56a804663b0340ae2f11af7559ea9bf4d087a11f2f646197a660ea3cb04e19efc04aa63 + languageName: node + linkType: hard + +"@storybook/addon-actions@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-actions@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + "@types/uuid": "npm:^9.0.1" + dequal: "npm:^2.0.2" + polished: "npm:^4.2.2" + uuid: "npm:^9.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/6d83052e7746b79efb72593c29b61d18def896216d0d4559038c7d18cd46403a88bcdd41dfa14405671203a626d37221fd91f8a45316fa6c2073e5e1de9ca9d5 + languageName: node + linkType: hard + +"@storybook/addon-backgrounds@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-backgrounds@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + memoizerific: "npm:^1.11.3" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/7f852c73a4116755097a0fefd848a74d9907c4ce88bbcf18c1db8aed0254943c028626c440c75353f3102931f6f34795615a2eda3f5fd1a2bb620a7cff9fb035 + languageName: node + linkType: hard + +"@storybook/addon-controls@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-controls@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + dequal: "npm:^2.0.2" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/0d6a61148067d5015029322cb2beedc635cf9e1342357e1eda6b1b44abb9af44709772e29d144e280f7f91d3251c53abe43af711f552a08e52d2a47c9f8f2aea + languageName: node + linkType: hard + +"@storybook/addon-docs@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-docs@npm:8.5.8" + dependencies: + "@mdx-js/react": "npm:^3.0.0" + "@storybook/blocks": "npm:8.5.8" + "@storybook/csf-plugin": "npm:8.5.8" + "@storybook/react-dom-shim": "npm:8.5.8" + react: "npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + react-dom: "npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/f480e265a450f2de6e379c480e1f470bcdd17869721d57b3e96843b365f40b9ef2e38d7c6103ce976e575bb34a5400d39758b4a2ed5846a779f2a53bdd9184ea + languageName: node + linkType: hard + +"@storybook/addon-essentials@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/addon-essentials@npm:8.5.8" + dependencies: + "@storybook/addon-actions": "npm:8.5.8" + "@storybook/addon-backgrounds": "npm:8.5.8" + "@storybook/addon-controls": "npm:8.5.8" + "@storybook/addon-docs": "npm:8.5.8" + "@storybook/addon-highlight": "npm:8.5.8" + "@storybook/addon-measure": "npm:8.5.8" + "@storybook/addon-outline": "npm:8.5.8" + "@storybook/addon-toolbars": "npm:8.5.8" + "@storybook/addon-viewport": "npm:8.5.8" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/9dd3a3d79cce807a615a238e45f62f1519308a777730f199468b859337763502a442c555234d6c54535d8aea4aee8f4561840338bd310384f3340d8499592a5d + languageName: node + linkType: hard + +"@storybook/addon-highlight@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-highlight@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/80c4fd899cf0c11e75994617713cc69e156db64d46ea61b855356b7a2766925d2a8db470e27544664932ce96875c85e84f52d7b9e5f3d6a3e8e4c8cdb6ba393b + languageName: node + linkType: hard + +"@storybook/addon-interactions@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/addon-interactions@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + "@storybook/instrumenter": "npm:8.5.8" + "@storybook/test": "npm:8.5.8" + polished: "npm:^4.2.2" + ts-dedent: "npm:^2.2.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/1d48582c91cac1c676961c6dd510d570112082c52680b353ac6ff5905d7356046dc614338ed317991d15292fede2254f6e3a4f940be2d25ec48ea60fb56befee + languageName: node + linkType: hard + +"@storybook/addon-links@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/addon-links@npm:8.5.8" + dependencies: + "@storybook/csf": "npm:0.1.12" + "@storybook/global": "npm:^5.0.0" + ts-dedent: "npm:^2.0.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.5.8 + peerDependenciesMeta: + react: + optional: true + checksum: 10c0/bfa75da4a02fee803a30b1b1bdd6477cd37d3dc9d99945d105b3b00f3736aba5e31456fa938837a8f6cbe90f1628def78f0554396f2235ca362c18547064e0d6 + languageName: node + linkType: hard + +"@storybook/addon-measure@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-measure@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + tiny-invariant: "npm:^1.3.1" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/1de801b44b09402249dea38f463bc6a3ee49aeaaa1329ea2581da175b9a961316f3e01ce70311d277c99975ffe2aa19fbd39ab1565564e6569ac156542aab08f + languageName: node + linkType: hard + +"@storybook/addon-onboarding@npm:^1.0.11": + version: 1.0.11 + resolution: "@storybook/addon-onboarding@npm:1.0.11" + dependencies: + "@storybook/telemetry": "npm:^7.1.0" + react-confetti: "npm:^6.1.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + checksum: 10c0/ca3de3eb85fb6d04309dbc07c26956777c064bb5032fb99aca3e43361b0816ac4326183aac99204d795fdc2010aa69c4978353c70a42926e9da0819343fcd2a0 + languageName: node + linkType: hard + +"@storybook/addon-outline@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-outline@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/15b0251ad2ca46437a52d7ace4bdcaae068c40d3f3f56046637bb106336a64635eb59883c7561f71465f7ece5b8061f0a5ae22904324e55a6f0e65596220c659 + languageName: node + linkType: hard + +"@storybook/addon-toolbars@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-toolbars@npm:8.5.8" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/961a2bf7c415b91dc0aa1703369d6350481ecc249a972a20282d275466ed92af29615516e198dd8ef001833febe36991640659cc6d852f25cf4e31fb955aac1d + languageName: node + linkType: hard + +"@storybook/addon-viewport@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/addon-viewport@npm:8.5.8" + dependencies: + memoizerific: "npm:^1.11.3" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/9c9fa6332e81a6e83e75468d5365b8cd5fcd9e40abeca138f8c0e3abefc1a56addc92f97bd79e317b366db0d87d80c29c775a05fc810f7fa7b387044784b4737 + languageName: node + linkType: hard + +"@storybook/blocks@npm:8.5.8, @storybook/blocks@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/blocks@npm:8.5.8" + dependencies: + "@storybook/csf": "npm:0.1.12" + "@storybook/icons": "npm:^1.2.12" + ts-dedent: "npm:^2.0.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^8.5.8 + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + checksum: 10c0/842c8d239c34dfee2d9e6fd7eb68a9b1fb7e5656617271e1fef17064973416b13d870636bc11a0516dae490dd91774ca15043bd66740d5fb9886b9efb01b8043 + languageName: node + linkType: hard + +"@storybook/builder-vite@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/builder-vite@npm:8.5.8" + dependencies: + "@storybook/csf-plugin": "npm:8.5.8" + browser-assert: "npm:^1.2.1" + ts-dedent: "npm:^2.0.0" + peerDependencies: + storybook: ^8.5.8 + vite: ^4.0.0 || ^5.0.0 || ^6.0.0 + checksum: 10c0/93aba75aa79afbf285d073bfa76c8fc91b59928c4f0f69c99f81c0d675895470e3ac2fa2053acc1e871fd865f069c34e7abb680d709385714c4403044a87b7e0 + languageName: node + linkType: hard + +"@storybook/channels@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/channels@npm:7.6.20" + dependencies: + "@storybook/client-logger": "npm:7.6.20" + "@storybook/core-events": "npm:7.6.20" + "@storybook/global": "npm:^5.0.0" + qs: "npm:^6.10.0" + telejson: "npm:^7.2.0" + tiny-invariant: "npm:^1.3.1" + checksum: 10c0/5aaa3e06a27750ffc48be6a5375dc286e1de5ae6c54f8318338afa2bbea68e37842f8eb17ce509c5587af173289640e78a4bbec3f234be9395bd08a0e1820308 + languageName: node + linkType: hard + +"@storybook/client-logger@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/client-logger@npm:7.6.20" + dependencies: + "@storybook/global": "npm:^5.0.0" + checksum: 10c0/cd1a9cb0a484a1585d5b4a918b20335ba8bd6655ae0051ba30c729b75678bafca62b8ef124fecd5c5883debf41d93a1827cf7bdf08df666f64de3cc15864be54 + languageName: node + linkType: hard + +"@storybook/components@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/components@npm:8.5.8" + peerDependencies: + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 10c0/dde5ac41f60a4561095a15fb8de99344b26f8887a93fd4947ea7f378c2be71cc0421a9a46be57c9521e5e2fc6c42d222e8138ca2b3390a4eb7c1b7fa299fd0d6 + languageName: node + linkType: hard + +"@storybook/core-common@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/core-common@npm:7.6.20" + dependencies: + "@storybook/core-events": "npm:7.6.20" + "@storybook/node-logger": "npm:7.6.20" + "@storybook/types": "npm:7.6.20" + "@types/find-cache-dir": "npm:^3.2.1" + "@types/node": "npm:^18.0.0" + "@types/node-fetch": "npm:^2.6.4" + "@types/pretty-hrtime": "npm:^1.0.0" + chalk: "npm:^4.1.0" + esbuild: "npm:^0.18.0" + esbuild-register: "npm:^3.5.0" + file-system-cache: "npm:2.3.0" + find-cache-dir: "npm:^3.0.0" + find-up: "npm:^5.0.0" + fs-extra: "npm:^11.1.0" + glob: "npm:^10.0.0" + handlebars: "npm:^4.7.7" + lazy-universal-dotenv: "npm:^4.0.0" + node-fetch: "npm:^2.0.0" + picomatch: "npm:^2.3.0" + pkg-dir: "npm:^5.0.0" + pretty-hrtime: "npm:^1.0.3" + resolve-from: "npm:^5.0.0" + ts-dedent: "npm:^2.0.0" + checksum: 10c0/ea916ed15d080279d8556d9fc7d3fd1ac9c3ffaed17e8122bc81d2268bccf0c2b0017db9528c7d21e057fd16d8bcc239bb19e60ad348d38ff579507187896783 + languageName: node + linkType: hard + +"@storybook/core-events@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/core-events@npm:7.6.20" + dependencies: + ts-dedent: "npm:^2.0.0" + checksum: 10c0/4ee2cc7ca6d7cae579befab640bfe1e8b30243305f73e7d731e40aa1295ff5fc1b6c61561929d2e4db315f7c4f5b3cfdf0ddc3746b3660d34b0dd3911a55d4ad + languageName: node + linkType: hard + +"@storybook/core@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/core@npm:8.5.8" + dependencies: + "@storybook/csf": "npm:0.1.12" + better-opn: "npm:^3.0.2" + browser-assert: "npm:^1.2.1" + esbuild: "npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0" + esbuild-register: "npm:^3.5.0" + jsdoc-type-pratt-parser: "npm:^4.0.0" + process: "npm:^0.11.10" + recast: "npm:^0.23.5" + semver: "npm:^7.6.2" + util: "npm:^0.12.5" + ws: "npm:^8.2.3" + peerDependencies: + prettier: ^2 || ^3 + peerDependenciesMeta: + prettier: + optional: true + checksum: 10c0/bf883e32827668e50dd90bb52ee8f2b419b1beaba3213695ec21afe39f6b880feb107c96768021388222519c4bab8870bba5971415f68a426912a3cb7f5e3d80 + languageName: node + linkType: hard + +"@storybook/csf-plugin@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/csf-plugin@npm:8.5.8" + dependencies: + unplugin: "npm:^1.3.1" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/27d51f0ba97971826bbf3276e568427a1c39c8a7b6ea308ac833e797c1e39a6b3171231513c6ff9880c4677197cb2b18b33e69fce0cfcf294e74e5b1bee6d7c3 + languageName: node + linkType: hard + +"@storybook/csf-tools@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/csf-tools@npm:7.6.20" + dependencies: + "@babel/generator": "npm:^7.23.0" + "@babel/parser": "npm:^7.23.0" + "@babel/traverse": "npm:^7.23.2" + "@babel/types": "npm:^7.23.0" + "@storybook/csf": "npm:^0.1.2" + "@storybook/types": "npm:7.6.20" + fs-extra: "npm:^11.1.0" + recast: "npm:^0.23.1" + ts-dedent: "npm:^2.0.0" + checksum: 10c0/f1dd3bf645b4828c8e88ce65db9ebcfc074368e7e818f0c656bc41d5f5e1b1fd435a8a4b488907025a58c200f805e20c7fb7673feac2dad5d62d2e0917387d94 + languageName: node + linkType: hard + +"@storybook/csf@npm:0.1.12": + version: 0.1.12 + resolution: "@storybook/csf@npm:0.1.12" + dependencies: + type-fest: "npm:^2.19.0" + checksum: 10c0/3d96a976ada67eb683279338d1eb6aa730b228107d4c4f6616ea7b94061899c1fdc11957a756e7bc0708d18cb39af0010c865d124efd84559cd82dcb2d8bc959 + languageName: node + linkType: hard + +"@storybook/csf@npm:^0.0.1": + version: 0.0.1 + resolution: "@storybook/csf@npm:0.0.1" + dependencies: + lodash: "npm:^4.17.15" + checksum: 10c0/7b0f75763415f9147692a460b44417ee56ea9639433716a1fd4d1df4c8b0221cbc71b8da0fbed4dcecb3ccd6c7ed64be39f5c255c713539a6088a1d6488aaa24 + languageName: node + linkType: hard + +"@storybook/csf@npm:^0.1.2": + version: 0.1.13 + resolution: "@storybook/csf@npm:0.1.13" + dependencies: + type-fest: "npm:^2.19.0" + checksum: 10c0/7c57b531ac95ca45239f498d419483d675e58cd8d549e0bac623519cc1ef4f3c9c6b75ec3873aa51cc2872728012db5dd5e1f2c2d8085014241eb4b896480996 + languageName: node + linkType: hard + +"@storybook/global@npm:^5.0.0": + version: 5.0.0 + resolution: "@storybook/global@npm:5.0.0" + checksum: 10c0/8f1b61dcdd3a89584540896e659af2ecc700bc740c16909a7be24ac19127ea213324de144a141f7caf8affaed017d064fea0618d453afbe027cf60f54b4a6d0b + languageName: node + linkType: hard + +"@storybook/icons@npm:^1.2.12": + version: 1.3.2 + resolution: "@storybook/icons@npm:1.3.2" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + checksum: 10c0/83f21af9c95a1431a651d2e87d9ea0a06a9981e19c00e4db61bc6d4272624ef296929c4e93b8a962ee5b7af18beab5368249a37125f6663bc7761fd89a1fd3fe + languageName: node + linkType: hard + +"@storybook/instrumenter@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/instrumenter@npm:8.5.8" + dependencies: + "@storybook/global": "npm:^5.0.0" + "@vitest/utils": "npm:^2.1.1" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/d73c497aca597033ef6e1ed0b01429df4c18d522b7723fbb1b80a8e50da9e54a212da6953d5d78fa1959d3eced8e97918668a2ebc0367c2dcbf5a5a5567f89ff + languageName: node + linkType: hard + +"@storybook/manager-api@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/manager-api@npm:8.5.8" + peerDependencies: + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 10c0/4045257c2169cef88508cef8087d177faea481fa6bf403ea92d531f6c27291c06107d786bf0bd7bb380631f86a2d87819e60f84598bd7eefdc6c12c85e97b4ab + languageName: node + linkType: hard + +"@storybook/node-logger@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/node-logger@npm:7.6.20" + checksum: 10c0/0f3107669d233131dd25649289abe4a2eb10fc01d108e9833f38a0a26bd8195f17a65cdef7948001968ecd28bd1775a6e0f0a5d9e6def47ca33715fe7b83da0e + languageName: node + linkType: hard + +"@storybook/preview-api@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/preview-api@npm:8.5.8" + peerDependencies: + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 10c0/278dff2940ba93c366a2a83a347f8e17dc80d087e0aa44eb868e4fe95f76a23e12d740867f3fd8e65142c47a73e5a66a628847179ce10b5ae22c4b1645910c2c + languageName: node + linkType: hard + +"@storybook/react-dom-shim@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/react-dom-shim@npm:8.5.8" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.5.8 + checksum: 10c0/0d6a7f24bb0ae168dfb7f984e2defd16e15d65dd07b1f9c4251c23e1abe88c11fa58d716125c536199e689266eca371cd054f5514c952ab76863946406fbeedd + languageName: node + linkType: hard + +"@storybook/react-vite@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/react-vite@npm:8.5.8" + dependencies: + "@joshwooding/vite-plugin-react-docgen-typescript": "npm:0.5.0" + "@rollup/pluginutils": "npm:^5.0.2" + "@storybook/builder-vite": "npm:8.5.8" + "@storybook/react": "npm:8.5.8" + find-up: "npm:^5.0.0" + magic-string: "npm:^0.30.0" + react-docgen: "npm:^7.0.0" + resolve: "npm:^1.22.8" + tsconfig-paths: "npm:^4.2.0" + peerDependencies: + "@storybook/test": 8.5.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.5.8 + vite: ^4.0.0 || ^5.0.0 || ^6.0.0 + peerDependenciesMeta: + "@storybook/test": + optional: true + checksum: 10c0/7ae18c594f17d8305a498e676095ec1f8f254386c87fd9d990bd133d106592e0dce821a5c569ffcdb933ff09ffb054f4b76b997cf28de5b7ac6fc1eda8071ce9 + languageName: node + linkType: hard + +"@storybook/react@npm:8.5.8, @storybook/react@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/react@npm:8.5.8" + dependencies: + "@storybook/components": "npm:8.5.8" + "@storybook/global": "npm:^5.0.0" + "@storybook/manager-api": "npm:8.5.8" + "@storybook/preview-api": "npm:8.5.8" + "@storybook/react-dom-shim": "npm:8.5.8" + "@storybook/theming": "npm:8.5.8" + peerDependencies: + "@storybook/test": 8.5.8 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta + storybook: ^8.5.8 + typescript: ">= 4.2.x" + peerDependenciesMeta: + "@storybook/test": + optional: true + typescript: + optional: true + checksum: 10c0/6cc2c8d88dbc710107193c63a4e9a642faf73888aec7eb04076ccb5c6b6a79d9d3fa2b70ddb360789483dcb3bca26bd09ec4b3476c169af4310df854207cfd48 + languageName: node + linkType: hard + +"@storybook/telemetry@npm:^7.1.0": + version: 7.6.20 + resolution: "@storybook/telemetry@npm:7.6.20" + dependencies: + "@storybook/client-logger": "npm:7.6.20" + "@storybook/core-common": "npm:7.6.20" + "@storybook/csf-tools": "npm:7.6.20" + chalk: "npm:^4.1.0" + detect-package-manager: "npm:^2.0.1" + fetch-retry: "npm:^5.0.2" + fs-extra: "npm:^11.1.0" + read-pkg-up: "npm:^7.0.1" + checksum: 10c0/8f0d5be9893d8fb56f07b83b56954b4a7f99492ae6b554051a2ebbe92d03999a3eb2160c6a365ca0a36287961e486a9f049110c801a058ecfedc672a69bd25bf + languageName: node + linkType: hard + +"@storybook/test@npm:8.5.8, @storybook/test@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "@storybook/test@npm:8.5.8" + dependencies: + "@storybook/csf": "npm:0.1.12" + "@storybook/global": "npm:^5.0.0" + "@storybook/instrumenter": "npm:8.5.8" + "@testing-library/dom": "npm:10.4.0" + "@testing-library/jest-dom": "npm:6.5.0" + "@testing-library/user-event": "npm:14.5.2" + "@vitest/expect": "npm:2.0.5" + "@vitest/spy": "npm:2.0.5" + peerDependencies: + storybook: ^8.5.8 + checksum: 10c0/5d7fb8db776bc9806f1cce9165642ee1889dbecafdf36d546d43c54a78b62e7f7813a9acff94852538f158de9c4bafd6539627d6aff77095b2418aefd7de8311 + languageName: node + linkType: hard + +"@storybook/theming@npm:8.5.8": + version: 8.5.8 + resolution: "@storybook/theming@npm:8.5.8" + peerDependencies: + storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0 + checksum: 10c0/6a3083fb2f3166a86fd177a24974149cea71d31e44cac1730c5c17b04f22cb17de41f65ead2984adb26a272fdf7bcab6d6ebda791c2ce5a21671e90a07a7d8a9 + languageName: node + linkType: hard + +"@storybook/types@npm:7.6.20": + version: 7.6.20 + resolution: "@storybook/types@npm:7.6.20" + dependencies: + "@storybook/channels": "npm:7.6.20" + "@types/babel__core": "npm:^7.0.0" + "@types/express": "npm:^4.7.0" + file-system-cache: "npm:2.3.0" + checksum: 10c0/148ba54a43a247291d43e06585688279a6ea52ea0e227bab3f28d589adb02b5f436862e49a6c943940da81204662bcfc87922f61011518a554b0d3c83b0293aa + languageName: node + linkType: hard + +"@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-add-jsx-attribute@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/a50bd0baa34faf16bcba712091f94c7f0e230431fe99a9dfc3401fa92823ad3f68495b86ab9bf9044b53839e8c416cfbb37eb3f246ff33f261e0fa9ee1779c5b + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-attribute@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/8a98e59bd9971e066815b4129409932f7a4db4866834fe75677ea6d517972fb40b380a69a4413189f20e7947411f9ab1b0f029dd5e8068686a5a0188d3ccd4c7 + languageName: node + linkType: hard + +"@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-remove-jsx-empty-expression@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/517dcca75223bd05d3f056a8514dbba3031278bea4eadf0842c576d84f4651e7a4e0e7082d3ee4ef42456de0f9c4531d8a1917c04876ca64b014b859ca8f1bde + languageName: node + linkType: hard + +"@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-replace-jsx-attribute-value@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/004bd1892053b7e9c1b0bb14acc44e77634ec393722b87b1e4fae53e2c35122a2dd0d5c15e9070dbeec274e22e7693a2b8b48506733a8009ee92b12946fcb10a + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-svg-dynamic-title@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/80e0a7fcf902f984c705051ca5c82ea6050ccbb70b651a8fea6d0eb5809e4dac274b49ea6be2d87f1eb9dfc0e2d6cdfffe1669ec2117f44b67a60a07d4c0b8b8 + languageName: node + linkType: hard + +"@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-svg-em-dimensions@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/73e92c8277a89279745c0c500f59f083279a8dc30cd552b22981fade2a77628fb2bd2819ee505725fcd2e93f923e3790b52efcff409a159e657b46604a0b9a21 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/babel-plugin-transform-react-native-svg@npm:8.1.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/655ed6bc7a208ceaa4ecff0a54ccc36008c3cb31efa90d11e171cab325ebbb21aa78f09c7b65f9b3ddeda3a85f348c0c862902c48be13c14b4de165c847974e3 + languageName: node + linkType: hard + +"@svgr/babel-plugin-transform-svg-component@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/babel-plugin-transform-svg-component@npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/4ac00bb99a3db4ef05e4362f116a3c608ee365a2d26cf7318d8d41a4a5b30a02c80455cce0e62c65b60ed815b5d632bedabac2ccd4b56f998fadef5286e3ded4 + languageName: node + linkType: hard + +"@svgr/babel-preset@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/babel-preset@npm:8.1.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute": "npm:8.0.0" + "@svgr/babel-plugin-remove-jsx-attribute": "npm:8.0.0" + "@svgr/babel-plugin-remove-jsx-empty-expression": "npm:8.0.0" + "@svgr/babel-plugin-replace-jsx-attribute-value": "npm:8.0.0" + "@svgr/babel-plugin-svg-dynamic-title": "npm:8.0.0" + "@svgr/babel-plugin-svg-em-dimensions": "npm:8.0.0" + "@svgr/babel-plugin-transform-react-native-svg": "npm:8.1.0" + "@svgr/babel-plugin-transform-svg-component": "npm:8.0.0" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/49367d3ad0831f79b1056871b91766246f449d4d1168623af5e283fbaefce4a01d77ab00de6b045b55e956f9aae27895823198493cd232d88d3435ea4517ffc5 + languageName: node + linkType: hard + +"@svgr/core@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/core@npm:8.1.0" + dependencies: + "@babel/core": "npm:^7.21.3" + "@svgr/babel-preset": "npm:8.1.0" + camelcase: "npm:^6.2.0" + cosmiconfig: "npm:^8.1.3" + snake-case: "npm:^3.0.4" + checksum: 10c0/6a2f6b1bc79bce39f66f088d468985d518005fc5147ebf4f108570a933818b5951c2cb7da230ddff4b7c8028b5a672b2d33aa2acce012b8b9770073aa5a2d041 + languageName: node + linkType: hard + +"@svgr/hast-util-to-babel-ast@npm:8.0.0": + version: 8.0.0 + resolution: "@svgr/hast-util-to-babel-ast@npm:8.0.0" + dependencies: + "@babel/types": "npm:^7.21.3" + entities: "npm:^4.4.0" + checksum: 10c0/f4165b583ba9eaf6719e598977a7b3ed182f177983e55f9eb55a6a73982d81277510e9eb7ab41f255151fb9ed4edd11ac4bef95dd872f04ed64966d8c85e0f79 + languageName: node + linkType: hard + +"@svgr/plugin-jsx@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/plugin-jsx@npm:8.1.0" + dependencies: + "@babel/core": "npm:^7.21.3" + "@svgr/babel-preset": "npm:8.1.0" + "@svgr/hast-util-to-babel-ast": "npm:8.0.0" + svg-parser: "npm:^2.0.4" + peerDependencies: + "@svgr/core": "*" + checksum: 10c0/07b4d9e00de795540bf70556fa2cc258774d01e97a12a26234c6fdf42b309beb7c10f31ee24d1a71137239347b1547b8bb5587d3a6de10669f95dcfe99cddc56 + languageName: node + linkType: hard + +"@svgr/plugin-svgo@npm:8.1.0": + version: 8.1.0 + resolution: "@svgr/plugin-svgo@npm:8.1.0" + dependencies: + cosmiconfig: "npm:^8.1.3" + deepmerge: "npm:^4.3.1" + svgo: "npm:^3.0.2" + peerDependencies: + "@svgr/core": "*" + checksum: 10c0/bfd25460f23f1548bfb8f6f3bedd6d6972c1a4f8881bd35a4f8c115218da6e999e8f9ac0ef0ed88c4e0b93fcec37f382b94c0322f4ec2b26752a89e5cc8b9d7a + languageName: node + linkType: hard + +"@svgr/webpack@npm:^8.1.0": + version: 8.1.0 + resolution: "@svgr/webpack@npm:8.1.0" + dependencies: + "@babel/core": "npm:^7.21.3" + "@babel/plugin-transform-react-constant-elements": "npm:^7.21.3" + "@babel/preset-env": "npm:^7.20.2" + "@babel/preset-react": "npm:^7.18.6" + "@babel/preset-typescript": "npm:^7.21.0" + "@svgr/core": "npm:8.1.0" + "@svgr/plugin-jsx": "npm:8.1.0" + "@svgr/plugin-svgo": "npm:8.1.0" + checksum: 10c0/4c1cac45bd5890de8643e5a7bfb71f3bcd8b85ae5bbacf10b8ad9f939b7a98e8d601c3ada204ffb95223abf4a24beeac5a2a0d6928a52a1ab72a29da3c015c22 + languageName: node + linkType: hard + +"@swc/counter@npm:0.1.3, @swc/counter@npm:^0.1.3": + version: 0.1.3 + resolution: "@swc/counter@npm:0.1.3" + checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356 + languageName: node + linkType: hard + +"@swc/helpers@npm:0.5.15, @swc/helpers@npm:^0.5.0": + version: 0.5.15 + resolution: "@swc/helpers@npm:0.5.15" + dependencies: + tslib: "npm:^2.8.0" + checksum: 10c0/33002f74f6f885f04c132960835fdfc474186983ea567606db62e86acd0680ca82f34647e8e610f4e1e422d1c16fce729dde22cd3b797ab1fd9061a825dabca4 + languageName: node + linkType: hard + +"@swc/helpers@npm:0.5.5": + version: 0.5.5 + resolution: "@swc/helpers@npm:0.5.5" + dependencies: + "@swc/counter": "npm:^0.1.3" + tslib: "npm:^2.4.0" + checksum: 10c0/21a9b9cfe7e00865f9c9f3eb4c1cc5b397143464f7abee76a2c5366e591e06b0155b5aac93fe8269ef8d548df253f6fd931e9ddfc0fd12efd405f90f45506e7d + languageName: node + linkType: hard + +"@szmarczak/http-timer@npm:^4.0.0": + version: 4.0.6 + resolution: "@szmarczak/http-timer@npm:4.0.6" + dependencies: + defer-to-connect: "npm:^2.0.0" + checksum: 10c0/73946918c025339db68b09abd91fa3001e87fc749c619d2e9c2003a663039d4c3cb89836c98a96598b3d47dec2481284ba85355392644911f5ecd2336536697f + languageName: node + linkType: hard + +"@t3-oss/env-core@npm:0.9.2": + version: 0.9.2 + resolution: "@t3-oss/env-core@npm:0.9.2" + peerDependencies: + typescript: ">=5.0.0" + zod: ^3.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/2e87aff2e811535eaa8cbc85f26a44fddf5af4428add237fc75770978ef6c43914031bc3d827c5face170632cd08fb7af8d037379f30b8d73fceaf6b1b746e0b + languageName: node + linkType: hard + +"@t3-oss/env-nextjs@npm:^0.9.2": + version: 0.9.2 + resolution: "@t3-oss/env-nextjs@npm:0.9.2" + dependencies: + "@t3-oss/env-core": "npm:0.9.2" + peerDependencies: + typescript: ">=5.0.0" + zod: ^3.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/2defb935eb65f87eb6dd620cd46a2a873ca2283076b4e0ba8acd30e5e6c7c425cb144668a6830977dc4b4467b645a04056b9dd258a04c51871a223fc351368b7 + languageName: node + linkType: hard + +"@tanstack/query-core@npm:5.66.4": + version: 5.66.4 + resolution: "@tanstack/query-core@npm:5.66.4" + checksum: 10c0/ef0ebf572e0109791e53e9a7c2790a93cbfe1c6f3fb462793c621c0f2d44c0b38f78f22a32526e124790f69a017ae3254877281f418ffef06d83f4edb82df51a + languageName: node + linkType: hard + +"@tanstack/query-devtools@npm:5.65.0": + version: 5.65.0 + resolution: "@tanstack/query-devtools@npm:5.65.0" + checksum: 10c0/7d223e267d7d807d8d597edf08403dbd08e033079fe235e1a37e1449a9922a00cf68d4d1feeb2852f99e2efe386d0c3242856cb0568da0f574778a3187e67a38 + languageName: node + linkType: hard + +"@tanstack/react-query-devtools@npm:^5.64.2": + version: 5.66.9 + resolution: "@tanstack/react-query-devtools@npm:5.66.9" + dependencies: + "@tanstack/query-devtools": "npm:5.65.0" + peerDependencies: + "@tanstack/react-query": ^5.66.9 + react: ^18 || ^19 + checksum: 10c0/cd51820ba8cbb2ad1b9d6ad555694072834cacb47d2fa3c8e69685cc26244fe85434fd74d5f42d46c3bc8829a54bbe26d5565bf558c341453358588cfb788304 + languageName: node + linkType: hard + +"@tanstack/react-query@npm:^5.28.6": + version: 5.66.9 + resolution: "@tanstack/react-query@npm:5.66.9" + dependencies: + "@tanstack/query-core": "npm:5.66.4" + peerDependencies: + react: ^18 || ^19 + checksum: 10c0/80565eb550e1fe3e90117c8dd4dd13c1ef27d1bf89689b09c6cdf6df084173582c3a20fbc709638b64502a10b1e10357b3172c38604739641dbdeb29715cae0d + languageName: node + linkType: hard + +"@tanstack/react-table@npm:^8.20.5": + version: 8.21.2 + resolution: "@tanstack/react-table@npm:8.21.2" + dependencies: + "@tanstack/table-core": "npm:8.21.2" + peerDependencies: + react: ">=16.8" + react-dom: ">=16.8" + checksum: 10c0/192392c7d945bf50a21a0904fdce07e4abb74bc6187bcd32ae843031d48e851a10899e0218443d742ee01c30ca1ff890a8677a5878b8904561ebc23479adfdf1 + languageName: node + linkType: hard + +"@tanstack/table-core@npm:8.21.2": + version: 8.21.2 + resolution: "@tanstack/table-core@npm:8.21.2" + checksum: 10c0/836326c6aef7e0b9b4566f9b2ade5ea73b90ce94f2b0cc35a3b3e1f44a9b3512d5507e4818c509824443b3d0488f2026df54e7a9f8f0cdccae6040347e6ff079 + languageName: node + linkType: hard + +"@testing-library/dom@npm:10.4.0, @testing-library/dom@npm:^10.0.0": + version: 10.4.0 + resolution: "@testing-library/dom@npm:10.4.0" + dependencies: + "@babel/code-frame": "npm:^7.10.4" + "@babel/runtime": "npm:^7.12.5" + "@types/aria-query": "npm:^5.0.1" + aria-query: "npm:5.3.0" + chalk: "npm:^4.1.0" + dom-accessibility-api: "npm:^0.5.9" + lz-string: "npm:^1.5.0" + pretty-format: "npm:^27.0.2" + checksum: 10c0/0352487720ecd433400671e773df0b84b8268fb3fe8e527cdfd7c11b1365b398b4e0eddba6e7e0c85e8d615f48257753283fccec41f6b986fd6c85f15eb5f84f + languageName: node + linkType: hard + +"@testing-library/jest-dom@npm:6.5.0": + version: 6.5.0 + resolution: "@testing-library/jest-dom@npm:6.5.0" + dependencies: + "@adobe/css-tools": "npm:^4.4.0" + aria-query: "npm:^5.0.0" + chalk: "npm:^3.0.0" + css.escape: "npm:^1.5.1" + dom-accessibility-api: "npm:^0.6.3" + lodash: "npm:^4.17.21" + redent: "npm:^3.0.0" + checksum: 10c0/fd5936a547f04608d8de15a7de3ae26516f21023f8f45169b10c8c8847015fd20ec259b7309f08aa1031bcbc37c6e5e6f532d1bb85ef8f91bad654193ec66a4c + languageName: node + linkType: hard + +"@testing-library/jest-dom@npm:^6.4.6": + version: 6.6.3 + resolution: "@testing-library/jest-dom@npm:6.6.3" + dependencies: + "@adobe/css-tools": "npm:^4.4.0" + aria-query: "npm:^5.0.0" + chalk: "npm:^3.0.0" + css.escape: "npm:^1.5.1" + dom-accessibility-api: "npm:^0.6.3" + lodash: "npm:^4.17.21" + redent: "npm:^3.0.0" + checksum: 10c0/5566b6c0b7b0709bc244aec3aa3dc9e5f4663e8fb2b99d8cd456fc07279e59db6076cbf798f9d3099a98fca7ef4cd50e4e1f4c4dec5a60a8fad8d24a638a5bf6 + languageName: node + linkType: hard + +"@testing-library/react@npm:^16.0.0": + version: 16.2.0 + resolution: "@testing-library/react@npm:16.2.0" + dependencies: + "@babel/runtime": "npm:^7.12.5" + peerDependencies: + "@testing-library/dom": ^10.0.0 + "@types/react": ^18.0.0 || ^19.0.0 + "@types/react-dom": ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/7adaedaf237002b42e04a6261d2756074a19cbca0f0c79ba375660f618e123c0ee56256ced00aeb0bb7225ba1a8a81b92b692cca053521a21bb92a8cace1e4c6 + languageName: node + linkType: hard + +"@testing-library/user-event@npm:14.5.2": + version: 14.5.2 + resolution: "@testing-library/user-event@npm:14.5.2" + peerDependencies: + "@testing-library/dom": ">=7.21.4" + checksum: 10c0/68a0c2aa28a3c8e6eb05cafee29705438d7d8a9427423ce5064d44f19c29e89b5636de46dd2f28620fb10abba75c67130185bbc3aa23ac1163a227a5f36641e1 + languageName: node + linkType: hard + +"@testing-library/user-event@npm:^14.5.2": + version: 14.6.1 + resolution: "@testing-library/user-event@npm:14.6.1" + peerDependencies: + "@testing-library/dom": ">=7.21.4" + checksum: 10c0/75fea130a52bf320d35d46ed54f3eec77e71a56911b8b69a3fe29497b0b9947b2dc80d30f04054ad4ce7f577856ae3e5397ea7dff0ef14944d3909784c7a93fe + languageName: node + linkType: hard + +"@tootallnate/once@npm:1": + version: 1.1.2 + resolution: "@tootallnate/once@npm:1.1.2" + checksum: 10c0/8fe4d006e90422883a4fa9339dd05a83ff626806262e1710cee5758d493e8cbddf2db81c0e4690636dc840b02c9fda62877866ea774ebd07c1777ed5fafbdec6 + languageName: node + linkType: hard + +"@tootallnate/once@npm:2": + version: 2.0.0 + resolution: "@tootallnate/once@npm:2.0.0" + checksum: 10c0/073bfa548026b1ebaf1659eb8961e526be22fa77139b10d60e712f46d2f0f05f4e6c8bec62a087d41088ee9e29faa7f54838568e475ab2f776171003c3920858 + languageName: node + linkType: hard + +"@trpc/client@npm:^11.0.0-rc.467": + version: 11.0.0-rc.804 + resolution: "@trpc/client@npm:11.0.0-rc.804" + peerDependencies: + "@trpc/server": 11.0.0-rc.804+ab12d16b0 + typescript: ">=5.7.2" + checksum: 10c0/713da95dc8cadc3bd9a667193301358676858977828506bf9711b2b1747aa974b522780ce46b124d2c57b39bff2f8f5112bbbf7ddef3f736256c6a01e9d21b2b + languageName: node + linkType: hard + +"@trpc/react-query@npm:^11.0.0-rc.467": + version: 11.0.0-rc.804 + resolution: "@trpc/react-query@npm:11.0.0-rc.804" + peerDependencies: + "@tanstack/react-query": ^5.62.8 + "@trpc/client": 11.0.0-rc.804+ab12d16b0 + "@trpc/server": 11.0.0-rc.804+ab12d16b0 + react: ">=18.2.0" + react-dom: ">=18.2.0" + typescript: ">=5.7.2" + checksum: 10c0/40795ff9f6f1796ff8ed6075d91a24fc4833448b0c2fe6a8e061aa98d839729c38c9bd46ef8794833517846816093a75998ea40cdda0b05a8c70ddd91b90fd03 + languageName: node + linkType: hard + +"@trpc/server@npm:^11.0.0-rc.467": + version: 11.0.0-rc.804 + resolution: "@trpc/server@npm:11.0.0-rc.804" + peerDependencies: + typescript: ">=5.7.2" + checksum: 10c0/72390c8e4d96c9897bf03a88e7d8c9e413289097f88803cc312552946f0ac2ea191ed53cd5d29103eee2d09a4d782f8b58ec390d3f38f2f192cfd3b929c91031 + languageName: node + linkType: hard + +"@trysound/sax@npm:0.2.0": + version: 0.2.0 + resolution: "@trysound/sax@npm:0.2.0" + checksum: 10c0/44907308549ce775a41c38a815f747009ac45929a45d642b836aa6b0a536e4978d30b8d7d680bbd116e9dd73b7dbe2ef0d1369dcfc2d09e83ba381e485ecbe12 + languageName: node + linkType: hard + +"@tsconfig/node10@npm:^1.0.7": + version: 1.0.11 + resolution: "@tsconfig/node10@npm:1.0.11" + checksum: 10c0/28a0710e5d039e0de484bdf85fee883bfd3f6a8980601f4d44066b0a6bcd821d31c4e231d1117731c4e24268bd4cf2a788a6787c12fc7f8d11014c07d582783c + languageName: node + linkType: hard + +"@tsconfig/node12@npm:^1.0.7": + version: 1.0.11 + resolution: "@tsconfig/node12@npm:1.0.11" + checksum: 10c0/dddca2b553e2bee1308a056705103fc8304e42bb2d2cbd797b84403a223b25c78f2c683ec3e24a095e82cd435387c877239bffcb15a590ba817cd3f6b9a99fd9 + languageName: node + linkType: hard + +"@tsconfig/node14@npm:^1.0.0": + version: 1.0.3 + resolution: "@tsconfig/node14@npm:1.0.3" + checksum: 10c0/67c1316d065fdaa32525bc9449ff82c197c4c19092b9663b23213c8cbbf8d88b6ed6a17898e0cbc2711950fbfaf40388938c1c748a2ee89f7234fc9e7fe2bf44 + languageName: node + linkType: hard + +"@tsconfig/node16@npm:^1.0.2": + version: 1.0.4 + resolution: "@tsconfig/node16@npm:1.0.4" + checksum: 10c0/05f8f2734e266fb1839eb1d57290df1664fe2aa3b0fdd685a9035806daa635f7519bf6d5d9b33f6e69dd545b8c46bd6e2b5c79acb2b1f146e885f7f11a42a5bb + languageName: node + linkType: hard + +"@tsparticles/basic@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/basic@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + "@tsparticles/move-base": "npm:3.8.1" + "@tsparticles/plugin-hex-color": "npm:3.8.1" + "@tsparticles/plugin-hsl-color": "npm:3.8.1" + "@tsparticles/plugin-rgb-color": "npm:3.8.1" + "@tsparticles/shape-circle": "npm:3.8.1" + "@tsparticles/updater-color": "npm:3.8.1" + "@tsparticles/updater-opacity": "npm:3.8.1" + "@tsparticles/updater-out-modes": "npm:3.8.1" + "@tsparticles/updater-size": "npm:3.8.1" + checksum: 10c0/ab554f6aa1975bd1575e0c830894ac8b33481029a29acc2c526d8ebd64f354af61a4dcdab39a49e4728678e70a63529413d641bdbc2313cc58f574728985c0ac + languageName: node + linkType: hard + +"@tsparticles/confetti@npm:^3.5.0": + version: 3.8.1 + resolution: "@tsparticles/confetti@npm:3.8.1" + dependencies: + "@tsparticles/basic": "npm:3.8.1" + "@tsparticles/engine": "npm:3.8.1" + "@tsparticles/plugin-emitters": "npm:3.8.1" + "@tsparticles/plugin-motion": "npm:3.8.1" + "@tsparticles/shape-cards": "npm:3.8.1" + "@tsparticles/shape-emoji": "npm:3.8.1" + "@tsparticles/shape-heart": "npm:3.8.1" + "@tsparticles/shape-image": "npm:3.8.1" + "@tsparticles/shape-polygon": "npm:3.8.1" + "@tsparticles/shape-square": "npm:3.8.1" + "@tsparticles/shape-star": "npm:3.8.1" + "@tsparticles/updater-life": "npm:3.8.1" + "@tsparticles/updater-roll": "npm:3.8.1" + "@tsparticles/updater-rotate": "npm:3.8.1" + "@tsparticles/updater-tilt": "npm:3.8.1" + "@tsparticles/updater-wobble": "npm:3.8.1" + checksum: 10c0/cb0b52213a21e14d1fa82260b4eced50114e8fbf598b3eee72e595cbd440fe159c23bf8667484bdadf56bc50420e9be4f82e0f8cbb12894fde935e609eca0fab + languageName: node + linkType: hard + +"@tsparticles/engine@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/engine@npm:3.8.1" + checksum: 10c0/822b3682a258f59dcb469e41e8144d22a78cbeb94c44dc783f7296b78ff5e5d3ced0ab59aca992a12c7b81a403dd73359aafa5adab8bfe14bd5acd3e4f034de3 + languageName: node + linkType: hard + +"@tsparticles/move-base@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/move-base@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/dd10030b0482ad92d815188f10c8250ee6785a78f30ae6dd92132e49c09cbc7f57f69c9bb02307c68d10cd28f50a5200e9f31eb9f09127bac78e5419820ba636 + languageName: node + linkType: hard + +"@tsparticles/plugin-emitters@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/plugin-emitters@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/2dbc2cc1614321291f044af7a57f9628a1e4305f11e4695ccbc6b1fb70f9353a582dba50a8adff21e9fb62ad6ef14fcdd5af670dd864683ffcb65229490e8b13 + languageName: node + linkType: hard + +"@tsparticles/plugin-hex-color@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/plugin-hex-color@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/e8508fe53b7639127ff1dc746d6d882e35d7b51585b943fba7028ee02cf3e89ded15fabf76cb2d7db258bfaa01b94c247c369e62106ec84306ed296d80499a00 + languageName: node + linkType: hard + +"@tsparticles/plugin-hsl-color@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/plugin-hsl-color@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/24a52ccc19c2fdf96edacd9f15af7697444785343c413339ff6da23d29f1b20f8df02693d4508e0a8092a74a2f4ff5638aa0632fc3889666b392bee903809098 + languageName: node + linkType: hard + +"@tsparticles/plugin-motion@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/plugin-motion@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/2637377c6bb5b71b05063ea063f6f0f9164ea958a84fc6d7ff93ac2a3f4fb20cff248702d76e4485e2eedd6caf202bc6214e4b721ba79970aa9022c3b05e6ae1 + languageName: node + linkType: hard + +"@tsparticles/plugin-rgb-color@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/plugin-rgb-color@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/a6c0f752d660e6e9496bda38e4a56a96dfa810b6526178399583ec6d705960f76362f072d4d41153098a3e978f855096270723702e62ea6c66bd0c03cdf10cfd + languageName: node + linkType: hard + +"@tsparticles/shape-cards@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-cards@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/21c0526a63d090db4cfe60ccb14bb3c612cafc21fcd2a0c105cd4a9a381d6e39599263314fbe0eb9a2514e72f726fe14cad70ae40748d7face243e0522d4ae2c + languageName: node + linkType: hard + +"@tsparticles/shape-circle@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-circle@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/d0ce512d27a4be19c5c899bd8120c5fdff8bb13497a6495536ad9453b0a1a3786ba32cc767d9064f77c9da3962a12a9b502f13ce2ce9119317a46b2c415314c4 + languageName: node + linkType: hard + +"@tsparticles/shape-emoji@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-emoji@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/a68e18a1d081ecb7fc1f875e3d0fc9be06240fc686c8e06711cc6e20ecccadc935e289d291928e7919708c1ac9a9e1a4fc29351fcdeb696bdd1c978c1e4aa12d + languageName: node + linkType: hard + +"@tsparticles/shape-heart@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-heart@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/21052693f670c81a9456ba3198ce4494e438e4dc53a944eae59306bfa83b68ce9ba10f60b306caf80ca2e49c087cd69dab8f4e8b6ee0bf5b1034297fba898542 + languageName: node + linkType: hard + +"@tsparticles/shape-image@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-image@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/e364c4946b8c87e46707ebfc16d0598d019a8b4bba9f8a9dc3f55520dc9a1764bef3db2c2cd59aae0fbb3e39f46f6bf442484597e4d044e94b91931973cf3379 + languageName: node + linkType: hard + +"@tsparticles/shape-polygon@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-polygon@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/3a2fe9c3e7b00c8a7f7c77f283c0931a0c48590f7f4b3ee6defcba00a9c666dccfb1ce902bc302a1a13bc8c26d87311af39ad4df8983adf95f9b48d85947fea4 + languageName: node + linkType: hard + +"@tsparticles/shape-square@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-square@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/387cc8ffbfb3d9e63811b52b07d29505eaccbb224eafcac388c419817bd860a2b4587c874643dd37b0e69742b2af891bd6ef0b0ac557853382f64ea7fe6a89d5 + languageName: node + linkType: hard + +"@tsparticles/shape-star@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/shape-star@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/4f7df361d8b3269015cb5d2b99c4f3ce5c2dca413f9b93aee78449710fa6b090d19433c4c8459d6f32c779b2441baa0df098b7a54a8fa5ee5f734a7d5472bc8b + languageName: node + linkType: hard + +"@tsparticles/updater-color@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-color@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/6aca85a10a99e2aa92973ed23ffdbf9e0f24bcf893296d00af8ceaf5b8c46e8c143808055a6ad3eb5e5f20c4a7dab51c9ace8a5a0b724a0d6465a9dd2c803c07 + languageName: node + linkType: hard + +"@tsparticles/updater-life@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-life@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/72d64cc54183f48882b2e2dff6814abe726c8578042acd5632e6e5dfe9288f834a19a61576d0a18fa2d343286dd47594456707b2102b750643b617bc5419e5fa + languageName: node + linkType: hard + +"@tsparticles/updater-opacity@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-opacity@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/9d5be919d96cff69757e24e72b36881aaa5d9b61b0906e77c649f230a045af3433b411fe0a78a6fb0194f49f70e04fcd18e0cf2f731b82362e94afced36ae621 + languageName: node + linkType: hard + +"@tsparticles/updater-out-modes@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-out-modes@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/52f6b41c89635d896b2ca070dc32b2ef218bdf16ae2527e83ecb862ea882ce4d11237d1aadfd748c763837db57c48efbd743b1d482ad94ddb6868a3d8d3da1e7 + languageName: node + linkType: hard + +"@tsparticles/updater-roll@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-roll@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/bc4440d8a06b71ce4d7de47db80f812332a5b5346e05e34f99fffd09fa29f5d34f5e7f02db47c80eba651a20f776a894c6fbe85db60e5d0b345ad8396e171454 + languageName: node + linkType: hard + +"@tsparticles/updater-rotate@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-rotate@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/46a563c00bc4e37f3439d5add32eb030e3eb8385e357de82c1342455b974039764077f8831edf8596db6d6255087100fa7d64d89cd80f57cb30918d592cd6bba + languageName: node + linkType: hard + +"@tsparticles/updater-size@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-size@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/1d11d3cead2519e67d426b08953b51257648f6cdc879706639b957e61a7476eaf58b329add17876f73cd7ba797076a941b56fe9f684d6e2266ff7799a8e6bce9 + languageName: node + linkType: hard + +"@tsparticles/updater-tilt@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-tilt@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/3699cd9914c42d53892ff243a0ff10ee6fbb3ac3f3e364396ea9c9045ca0d5c0817bbe33c0df2b969fd3ed63653de11701ff44760198a038ec2151357c47f906 + languageName: node + linkType: hard + +"@tsparticles/updater-wobble@npm:3.8.1": + version: 3.8.1 + resolution: "@tsparticles/updater-wobble@npm:3.8.1" + dependencies: + "@tsparticles/engine": "npm:3.8.1" + checksum: 10c0/6c1ea7b6625414f97fa254af2fa855f7fc436d915bcc31f53a41eadfdddfe61bb564eb066e13ea3d1adea5698491d423549a5ea5b872b26d0f94d689d136531e + languageName: node + linkType: hard + +"@types/argparse@npm:1.0.38": + version: 1.0.38 + resolution: "@types/argparse@npm:1.0.38" + checksum: 10c0/4fc892da5df16923f48180da2d1f4562fa8b0507cf636b24780444fa0a1d7321d4dc0c0ecbee6152968823f5a2ae0d321b4f8c705a489bf1ae1245bdeb0868fd + languageName: node + linkType: hard + +"@types/aria-query@npm:^5.0.1": + version: 5.0.4 + resolution: "@types/aria-query@npm:5.0.4" + checksum: 10c0/dc667bc6a3acc7bba2bccf8c23d56cb1f2f4defaa704cfef595437107efaa972d3b3db9ec1d66bc2711bfc35086821edd32c302bffab36f2e79b97f312069f08 + languageName: node + linkType: hard + +"@types/babel__core@npm:^7.0.0, @types/babel__core@npm:^7.1.14, @types/babel__core@npm:^7.18.0, @types/babel__core@npm:^7.20.5": + version: 7.20.5 + resolution: "@types/babel__core@npm:7.20.5" + dependencies: + "@babel/parser": "npm:^7.20.7" + "@babel/types": "npm:^7.20.7" + "@types/babel__generator": "npm:*" + "@types/babel__template": "npm:*" + "@types/babel__traverse": "npm:*" + checksum: 10c0/bdee3bb69951e833a4b811b8ee9356b69a61ed5b7a23e1a081ec9249769117fa83aaaf023bb06562a038eb5845155ff663e2d5c75dd95c1d5ccc91db012868ff + languageName: node + linkType: hard + +"@types/babel__generator@npm:*": + version: 7.6.8 + resolution: "@types/babel__generator@npm:7.6.8" + dependencies: + "@babel/types": "npm:^7.0.0" + checksum: 10c0/f0ba105e7d2296bf367d6e055bb22996886c114261e2cb70bf9359556d0076c7a57239d019dee42bb063f565bade5ccb46009bce2044b2952d964bf9a454d6d2 + languageName: node + linkType: hard + +"@types/babel__template@npm:*": + version: 7.4.4 + resolution: "@types/babel__template@npm:7.4.4" + dependencies: + "@babel/parser": "npm:^7.1.0" + "@babel/types": "npm:^7.0.0" + checksum: 10c0/cc84f6c6ab1eab1427e90dd2b76ccee65ce940b778a9a67be2c8c39e1994e6f5bbc8efa309f6cea8dc6754994524cd4d2896558df76d92e7a1f46ecffee7112b + languageName: node + linkType: hard + +"@types/babel__traverse@npm:*, @types/babel__traverse@npm:^7.0.6, @types/babel__traverse@npm:^7.18.0": + version: 7.20.6 + resolution: "@types/babel__traverse@npm:7.20.6" + dependencies: + "@babel/types": "npm:^7.20.7" + checksum: 10c0/7ba7db61a53e28cac955aa99af280d2600f15a8c056619c05b6fc911cbe02c61aa4f2823299221b23ce0cce00b294c0e5f618ec772aa3f247523c2e48cf7b888 + languageName: node + linkType: hard + +"@types/body-parser@npm:*": + version: 1.19.5 + resolution: "@types/body-parser@npm:1.19.5" + dependencies: + "@types/connect": "npm:*" + "@types/node": "npm:*" + checksum: 10c0/aebeb200f25e8818d8cf39cd0209026750d77c9b85381cdd8deeb50913e4d18a1ebe4b74ca9b0b4d21952511eeaba5e9fbbf739b52731a2061e206ec60d568df + languageName: node + linkType: hard + +"@types/cacheable-request@npm:^6.0.1": + version: 6.0.3 + resolution: "@types/cacheable-request@npm:6.0.3" + dependencies: + "@types/http-cache-semantics": "npm:*" + "@types/keyv": "npm:^3.1.4" + "@types/node": "npm:*" + "@types/responselike": "npm:^1.0.0" + checksum: 10c0/10816a88e4e5b144d43c1d15a81003f86d649776c7f410c9b5e6579d0ad9d4ca71c541962fb403077388b446e41af7ae38d313e46692144985f006ac5e11fa03 + languageName: node + linkType: hard + +"@types/connect@npm:*": + version: 3.4.38 + resolution: "@types/connect@npm:3.4.38" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/2e1cdba2c410f25649e77856505cd60223250fa12dff7a503e492208dbfdd25f62859918f28aba95315251fd1f5e1ffbfca1e25e73037189ab85dd3f8d0a148c + languageName: node + linkType: hard + +"@types/connect@npm:3.4.36": + version: 3.4.36 + resolution: "@types/connect@npm:3.4.36" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/0dd8fcf576e178e69cbc00d47be69d3198dca4d86734a00fc55de0df147982e0a5f34592117571c5979e92ce8f3e0596e31aa454496db8a43ab90c5ab1068f40 + languageName: node + linkType: hard + +"@types/cookie@npm:0.6.0": + version: 0.6.0 + resolution: "@types/cookie@npm:0.6.0" + checksum: 10c0/5b326bd0188120fb32c0be086b141b1481fec9941b76ad537f9110e10d61ee2636beac145463319c71e4be67a17e85b81ca9e13ceb6e3bb63b93d16824d6c149 + languageName: node + linkType: hard + +"@types/doctrine@npm:^0.0.9": + version: 0.0.9 + resolution: "@types/doctrine@npm:0.0.9" + checksum: 10c0/cdaca493f13c321cf0cacd1973efc0ae74569633145d9e6fc1128f32217a6968c33bea1f858275239fe90c98f3be57ec8f452b416a9ff48b8e8c1098b20fa51c + languageName: node + linkType: hard + +"@types/estree@npm:*, @types/estree@npm:1.0.6, @types/estree@npm:^1.0.0": + version: 1.0.6 + resolution: "@types/estree@npm:1.0.6" + checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a + languageName: node + linkType: hard + +"@types/express-serve-static-core@npm:^4.17.33": + version: 4.19.6 + resolution: "@types/express-serve-static-core@npm:4.19.6" + dependencies: + "@types/node": "npm:*" + "@types/qs": "npm:*" + "@types/range-parser": "npm:*" + "@types/send": "npm:*" + checksum: 10c0/4281f4ead71723f376b3ddf64868ae26244d434d9906c101cf8d436d4b5c779d01bd046e4ea0ed1a394d3e402216fabfa22b1fa4dba501061cd7c81c54045983 + languageName: node + linkType: hard + +"@types/express@npm:^4.7.0": + version: 4.17.21 + resolution: "@types/express@npm:4.17.21" + dependencies: + "@types/body-parser": "npm:*" + "@types/express-serve-static-core": "npm:^4.17.33" + "@types/qs": "npm:*" + "@types/serve-static": "npm:*" + checksum: 10c0/12e562c4571da50c7d239e117e688dc434db1bac8be55613294762f84fd77fbd0658ccd553c7d3ab02408f385bc93980992369dd30e2ecd2c68c358e6af8fabf + languageName: node + linkType: hard + +"@types/find-cache-dir@npm:^3.2.1": + version: 3.2.1 + resolution: "@types/find-cache-dir@npm:3.2.1" + checksum: 10c0/68059aec88ef776a689c1711a881fd91a9ce1b03dd5898ea1d2ac5d77d7b0235f21fdf210f380c13deca8b45e4499841a63aaf31fd2123af687f2c6b472f41ce + languageName: node + linkType: hard + +"@types/geojson@npm:*, @types/geojson@npm:^7946.0.16": + version: 7946.0.16 + resolution: "@types/geojson@npm:7946.0.16" + checksum: 10c0/1ff24a288bd5860b766b073ead337d31d73bdc715e5b50a2cee5cb0af57a1ed02cc04ef295f5fa68dc40fe3e4f104dd31282b2b818a5ba3231bc1001ba084e3c + languageName: node + linkType: hard + +"@types/glob-to-regexp@npm:^0.4.4": + version: 0.4.4 + resolution: "@types/glob-to-regexp@npm:0.4.4" + checksum: 10c0/7288ff853850d8302a8770a3698b187fc3970ad12ee6427f0b3758a3e7a0ebb0bd993abc6ebaaa979d09695b4194157d2bfaa7601b0fb9ed72c688b4c1298b88 + languageName: node + linkType: hard + +"@types/google.maps@npm:^3.54.10": + version: 3.58.1 + resolution: "@types/google.maps@npm:3.58.1" + checksum: 10c0/0247c61d2aeb216d04ab9392602ef41d58328c6336ed4e9a4e9e69834002e82c116a34def2bf4ceb31c4292f14899815058da4bb8d803147295c6b47c1162621 + languageName: node + linkType: hard + +"@types/graceful-fs@npm:^4.1.3": + version: 4.1.9 + resolution: "@types/graceful-fs@npm:4.1.9" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/235d2fc69741448e853333b7c3d1180a966dd2b8972c8cbcd6b2a0c6cd7f8d582ab2b8e58219dbc62cce8f1b40aa317ff78ea2201cdd8249da5025adebed6f0b + languageName: node + linkType: hard + +"@types/hoist-non-react-statics@npm:3": + version: 3.3.6 + resolution: "@types/hoist-non-react-statics@npm:3.3.6" + dependencies: + "@types/react": "npm:*" + hoist-non-react-statics: "npm:^3.3.0" + checksum: 10c0/149a4c217d81f21f8a1e152160a59d5b99b6a9aa6d354385d5f5bc02760cbf1e170a8442ba92eb653befff44b0c5bc2234bb77ce33e0d11a65f779e8bab5c321 + languageName: node + linkType: hard + +"@types/http-cache-semantics@npm:*": + version: 4.0.4 + resolution: "@types/http-cache-semantics@npm:4.0.4" + checksum: 10c0/51b72568b4b2863e0fe8d6ce8aad72a784b7510d72dc866215642da51d84945a9459fa89f49ec48f1e9a1752e6a78e85a4cda0ded06b1c73e727610c925f9ce6 + languageName: node + linkType: hard + +"@types/http-errors@npm:*": + version: 2.0.4 + resolution: "@types/http-errors@npm:2.0.4" + checksum: 10c0/494670a57ad4062fee6c575047ad5782506dd35a6b9ed3894cea65830a94367bd84ba302eb3dde331871f6d70ca287bfedb1b2cf658e6132cd2cbd427ab56836 + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0, @types/istanbul-lib-coverage@npm:^2.0.1": + version: 2.0.6 + resolution: "@types/istanbul-lib-coverage@npm:2.0.6" + checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7 + languageName: node + linkType: hard + +"@types/istanbul-lib-report@npm:*": + version: 3.0.3 + resolution: "@types/istanbul-lib-report@npm:3.0.3" + dependencies: + "@types/istanbul-lib-coverage": "npm:*" + checksum: 10c0/247e477bbc1a77248f3c6de5dadaae85ff86ac2d76c5fc6ab1776f54512a745ff2a5f791d22b942e3990ddbd40f3ef5289317c4fca5741bedfaa4f01df89051c + languageName: node + linkType: hard + +"@types/istanbul-reports@npm:^3.0.0": + version: 3.0.4 + resolution: "@types/istanbul-reports@npm:3.0.4" + dependencies: + "@types/istanbul-lib-report": "npm:*" + checksum: 10c0/1647fd402aced5b6edac87274af14ebd6b3a85447ef9ad11853a70fd92a98d35f81a5d3ea9fcb5dbb5834e800c6e35b64475e33fcae6bfa9acc70d61497c54ee + languageName: node + linkType: hard + +"@types/jest@npm:^29.5.12": + version: 29.5.14 + resolution: "@types/jest@npm:29.5.14" + dependencies: + expect: "npm:^29.0.0" + pretty-format: "npm:^29.0.0" + checksum: 10c0/18e0712d818890db8a8dab3d91e9ea9f7f19e3f83c2e50b312f557017dc81466207a71f3ed79cf4428e813ba939954fa26ffa0a9a7f153181ba174581b1c2aed + languageName: node + linkType: hard + +"@types/jsdom@npm:^20.0.0": + version: 20.0.1 + resolution: "@types/jsdom@npm:20.0.1" + dependencies: + "@types/node": "npm:*" + "@types/tough-cookie": "npm:*" + parse5: "npm:^7.0.0" + checksum: 10c0/3d4b2a3eab145674ee6da482607c5e48977869109f0f62560bf91ae1a792c9e847ac7c6aaf243ed2e97333cb3c51aef314ffa54a19ef174b8f9592dfcb836b25 + languageName: node + linkType: hard + +"@types/json-schema@npm:^7.0.12, @types/json-schema@npm:^7.0.9": + version: 7.0.15 + resolution: "@types/json-schema@npm:7.0.15" + checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db + languageName: node + linkType: hard + +"@types/json-stable-stringify-without-jsonify@npm:^1.0.2": + version: 1.0.2 + resolution: "@types/json-stable-stringify-without-jsonify@npm:1.0.2" + checksum: 10c0/a4bfa5ef8bfcc5ed9449994e41b358851a38542da280c8e3da9ac4a8e37e03b0f4bef84bcb3a51a94d722a97247c3ca443a80cd60f9b55b473a574e30f1088f2 + languageName: node + linkType: hard + +"@types/json5@npm:^0.0.29": + version: 0.0.29 + resolution: "@types/json5@npm:0.0.29" + checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac + languageName: node + linkType: hard + +"@types/keyv@npm:^3.1.1, @types/keyv@npm:^3.1.4": + version: 3.1.4 + resolution: "@types/keyv@npm:3.1.4" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/ff8f54fc49621210291f815fe5b15d809fd7d032941b3180743440bd507ecdf08b9e844625fa346af568c84bf34114eb378dcdc3e921a08ba1e2a08d7e3c809c + languageName: node + linkType: hard + +"@types/mdx@npm:^2.0.0": + version: 2.0.13 + resolution: "@types/mdx@npm:2.0.13" + checksum: 10c0/5edf1099505ac568da55f9ae8a93e7e314e8cbc13d3445d0be61b75941226b005e1390d9b95caecf5dcb00c9d1bab2f1f60f6ff9876dc091a48b547495007720 + languageName: node + linkType: hard + +"@types/mime@npm:^1": + version: 1.3.5 + resolution: "@types/mime@npm:1.3.5" + checksum: 10c0/c2ee31cd9b993804df33a694d5aa3fa536511a49f2e06eeab0b484fef59b4483777dbb9e42a4198a0809ffbf698081fdbca1e5c2218b82b91603dfab10a10fbc + languageName: node + linkType: hard + +"@types/mysql@npm:2.15.26": + version: 2.15.26 + resolution: "@types/mysql@npm:2.15.26" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/3cf279e7db05d56c0544532a4380b9079f579092379a04c8138bd5cf88dda5b31208ac2d23ce7dbf4e3a3f43aaeed44e72f9f19f726518f308efe95a7435619a + languageName: node + linkType: hard + +"@types/node-fetch@npm:^2.6.4": + version: 2.6.12 + resolution: "@types/node-fetch@npm:2.6.12" + dependencies: + "@types/node": "npm:*" + form-data: "npm:^4.0.0" + checksum: 10c0/7693acad5499b7df2d1727d46cff092a63896dc04645f36b973dd6dd754a59a7faba76fcb777bdaa35d80625c6a9dd7257cca9c401a4bab03b04480cda7fd1af + languageName: node + linkType: hard + +"@types/node@npm:*": + version: 22.13.5 + resolution: "@types/node@npm:22.13.5" + dependencies: + undici-types: "npm:~6.20.0" + checksum: 10c0/a2e7ed7bb0690e439004779baedeb05159c5cc41ef6d81c7a6ebea5303fde4033669e1c0e41ff7453b45fd2fea8dbd55fddfcd052950c7fcae3167c970bca725 + languageName: node + linkType: hard + +"@types/node@npm:^18.0.0": + version: 18.19.76 + resolution: "@types/node@npm:18.19.76" + dependencies: + undici-types: "npm:~5.26.4" + checksum: 10c0/211250b264ca3967d4cce41921b8a4cd704d920152f723f95c18dc7b70771c43472c69a6adc1be1a8364007cfa6ae17408424b3b0bc1d55b5f29bab4a6741336 + languageName: node + linkType: hard + +"@types/node@npm:^20": + version: 20.17.19 + resolution: "@types/node@npm:20.17.19" + dependencies: + undici-types: "npm:~6.19.2" + checksum: 10c0/930e554eadeb0c2848f9225007ef66ea9c7fe987c80e2f2c1a9f316b297036d4054bbc5459b67051cf32cd360a022344c2998dcb1ec7579109f631b6d5f21bf8 + languageName: node + linkType: hard + +"@types/normalize-package-data@npm:^2.4.0": + version: 2.4.4 + resolution: "@types/normalize-package-data@npm:2.4.4" + checksum: 10c0/aef7bb9b015883d6f4119c423dd28c4bdc17b0e8a0ccf112c78b4fe0e91fbc4af7c6204b04bba0e199a57d2f3fbbd5b4a14bf8739bf9d2a39b2a0aad545e0f86 + languageName: node + linkType: hard + +"@types/pg-pool@npm:2.0.6": + version: 2.0.6 + resolution: "@types/pg-pool@npm:2.0.6" + dependencies: + "@types/pg": "npm:*" + checksum: 10c0/41965d4d0b677c54ce45d36add760e496d356b78019cb062d124af40287cf6b0fd4d86e3b0085f443856c185983a60c8b0795ff76d15683e2a93c62f5ac0125f + languageName: node + linkType: hard + +"@types/pg@npm:*": + version: 8.11.11 + resolution: "@types/pg@npm:8.11.11" + dependencies: + "@types/node": "npm:*" + pg-protocol: "npm:*" + pg-types: "npm:^4.0.1" + checksum: 10c0/18c2585e1ba7a5dd5f849d49410d53fdfe9a6c3cbc4ae46c51fd728264d6ecf9a84a5cd82d89cb1f870a74383bad88effce1eed888f16accbcbde56a53d23a69 + languageName: node + linkType: hard + +"@types/pg@npm:8.6.1": + version: 8.6.1 + resolution: "@types/pg@npm:8.6.1" + dependencies: + "@types/node": "npm:*" + pg-protocol: "npm:*" + pg-types: "npm:^2.2.0" + checksum: 10c0/8d16660c9a4f050d6d5e391c59f9a62e9d377a2a6a7eb5865f8828082dbdfeab700fd707e585f42d67b29e796b32863aea5bd6d5cbb8ceda2d598da5d0c61693 + languageName: node + linkType: hard + +"@types/postcss-modules-local-by-default@npm:^4.0.2": + version: 4.0.2 + resolution: "@types/postcss-modules-local-by-default@npm:4.0.2" + dependencies: + postcss: "npm:^8.0.0" + checksum: 10c0/af13e40673abf96f1427c467bc9d96986fc0fb702f65ef702de05f70e51af2212bc0bdf177bfd817e418f2238bf210fdee3541dd2d939fde9a4df5f8972ad716 + languageName: node + linkType: hard + +"@types/postcss-modules-scope@npm:^3.0.4": + version: 3.0.4 + resolution: "@types/postcss-modules-scope@npm:3.0.4" + dependencies: + postcss: "npm:^8.0.0" + checksum: 10c0/6364674e429143fd686e0238d071377cf9ae1780a77f99e99292a06adc93057609146aaf55c09310ae99526c37e56be5a8a843086c0ff95513bd34c6bc4c7480 + languageName: node + linkType: hard + +"@types/pretty-hrtime@npm:^1.0.0": + version: 1.0.3 + resolution: "@types/pretty-hrtime@npm:1.0.3" + checksum: 10c0/e4c22475c588be982b398dee9ac0b05b21078bc26581819290a4901c5b269bcaa04cae0e61e012d412e811b0897c9dab316db064208914df2f0ed0960fc5306b + languageName: node + linkType: hard + +"@types/prop-types@npm:*": + version: 15.7.14 + resolution: "@types/prop-types@npm:15.7.14" + checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1 + languageName: node + linkType: hard + +"@types/qs@npm:*": + version: 6.9.18 + resolution: "@types/qs@npm:6.9.18" + checksum: 10c0/790b9091348e06dde2c8e4118b5771ab386a8c22a952139a2eb0675360a2070d0b155663bf6f75b23f258fd0a1f7ffc0ba0f059d99a719332c03c40d9e9cd63b + languageName: node + linkType: hard + +"@types/range-parser@npm:*": + version: 1.2.7 + resolution: "@types/range-parser@npm:1.2.7" + checksum: 10c0/361bb3e964ec5133fa40644a0b942279ed5df1949f21321d77de79f48b728d39253e5ce0408c9c17e4e0fd95ca7899da36841686393b9f7a1e209916e9381a3c + languageName: node + linkType: hard + +"@types/react-dom@npm:^18, @types/react-dom@npm:^18.2.17": + version: 18.3.5 + resolution: "@types/react-dom@npm:18.3.5" + peerDependencies: + "@types/react": ^18.0.0 + checksum: 10c0/b163d35a6b32a79f5782574a7aeb12a31a647e248792bf437e6d596e2676961c394c5e3c6e91d1ce44ae90441dbaf93158efb4f051c0d61e2612f1cb04ce4faa + languageName: node + linkType: hard + +"@types/react@npm:*": + version: 19.0.10 + resolution: "@types/react@npm:19.0.10" + dependencies: + csstype: "npm:^3.0.2" + checksum: 10c0/41884cca21850c8b2d6578b172ca0ca4fff6021251a68532b19f2031ac23dc5a9222470208065f8d9985d367376047df2f49ece8d927f7d04cdc94922b1eb34b + languageName: node + linkType: hard + +"@types/react@npm:16 || 17 || 18, @types/react@npm:^18, @types/react@npm:^18.2.43": + version: 18.3.18 + resolution: "@types/react@npm:18.3.18" + dependencies: + "@types/prop-types": "npm:*" + csstype: "npm:^3.0.2" + checksum: 10c0/8fb2b00672072135d0858dc9db07873ea107cc238b6228aaa2a9afd1ef7a64a7074078250db38afbeb19064be8ea6af5eac32d404efdd5f45e093cc4829d87f8 + languageName: node + linkType: hard + +"@types/resolve@npm:^1.20.2": + version: 1.20.6 + resolution: "@types/resolve@npm:1.20.6" + checksum: 10c0/a9b0549d816ff2c353077365d865a33655a141d066d0f5a3ba6fd4b28bc2f4188a510079f7c1f715b3e7af505a27374adce2a5140a3ece2a059aab3d6e1a4244 + languageName: node + linkType: hard + +"@types/responselike@npm:^1.0.0": + version: 1.0.3 + resolution: "@types/responselike@npm:1.0.3" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/a58ba341cb9e7d74f71810a88862da7b2a6fa42e2a1fc0ce40498f6ea1d44382f0640117057da779f74c47039f7166bf48fad02dc876f94e005c7afa50f5e129 + languageName: node + linkType: hard + +"@types/semver@npm:^7.3.12, @types/semver@npm:^7.5.0": + version: 7.5.8 + resolution: "@types/semver@npm:7.5.8" + checksum: 10c0/8663ff927234d1c5fcc04b33062cb2b9fcfbe0f5f351ed26c4d1e1581657deebd506b41ff7fdf89e787e3d33ce05854bc01686379b89e9c49b564c4cfa988efa + languageName: node + linkType: hard + +"@types/send@npm:*": + version: 0.17.4 + resolution: "@types/send@npm:0.17.4" + dependencies: + "@types/mime": "npm:^1" + "@types/node": "npm:*" + checksum: 10c0/7f17fa696cb83be0a104b04b424fdedc7eaba1c9a34b06027239aba513b398a0e2b7279778af521f516a397ced417c96960e5f50fcfce40c4bc4509fb1a5883c + languageName: node + linkType: hard + +"@types/serve-static@npm:*": + version: 1.15.7 + resolution: "@types/serve-static@npm:1.15.7" + dependencies: + "@types/http-errors": "npm:*" + "@types/node": "npm:*" + "@types/send": "npm:*" + checksum: 10c0/26ec864d3a626ea627f8b09c122b623499d2221bbf2f470127f4c9ebfe92bd8a6bb5157001372d4c4bd0dd37a1691620217d9dc4df5aa8f779f3fd996b1c60ae + languageName: node + linkType: hard + +"@types/shimmer@npm:^1.2.0": + version: 1.2.0 + resolution: "@types/shimmer@npm:1.2.0" + checksum: 10c0/6f7bfe1b55601cfc3ae713fc74a03341f3834253b8b91cb2add926d5949e4a63f7e666f59c2a6e40a883a5f9e2f3e3af10f9d3aed9b60fced0bda87659e58d8d + languageName: node + linkType: hard + +"@types/sinonjs__fake-timers@npm:8.1.1": + version: 8.1.1 + resolution: "@types/sinonjs__fake-timers@npm:8.1.1" + checksum: 10c0/e2e6c425a548177c0930c2f9b82d3951956c9701b9ebf59623d5ad2c3229c523d3c0d598e79fe7392a239657abd3dbe3676be0650ce438bcd1199ee3b617a4d7 + languageName: node + linkType: hard + +"@types/sizzle@npm:^2.3.2": + version: 2.3.9 + resolution: "@types/sizzle@npm:2.3.9" + checksum: 10c0/db0277ff62e8ebe6cdae2020fd045fd7fd19f29a3a2ce13c555b14fb00e105e79004883732118b9f2e8b943cb302645e9eddb4e7bdeef1a171da679cd4c32b72 + languageName: node + linkType: hard + +"@types/stack-utils@npm:^2.0.0": + version: 2.0.3 + resolution: "@types/stack-utils@npm:2.0.3" + checksum: 10c0/1f4658385ae936330581bcb8aa3a066df03867d90281cdf89cc356d404bd6579be0f11902304e1f775d92df22c6dd761d4451c804b0a4fba973e06211e9bd77c + languageName: node + linkType: hard + +"@types/supercluster@npm:^7.1.3": + version: 7.1.3 + resolution: "@types/supercluster@npm:7.1.3" + dependencies: + "@types/geojson": "npm:*" + checksum: 10c0/0d55dad98df0990fc38a7bb64dc23dda46014187c0d7638e6f2b6717ba8931b13e5b1d394789833a2ac822014c977ef64623dffd81a0bbf39e52c53c8183741f + languageName: node + linkType: hard + +"@types/tedious@npm:^4.0.14": + version: 4.0.14 + resolution: "@types/tedious@npm:4.0.14" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/d2914f8e9b5b998e4275ec5f0130cba1c2fb47e75616b5c125a65ef6c1db2f1dc3f978c7900693856a15d72bbb4f4e94f805537a4ecb6dc126c64415d31c0590 + languageName: node + linkType: hard + +"@types/tough-cookie@npm:*": + version: 4.0.5 + resolution: "@types/tough-cookie@npm:4.0.5" + checksum: 10c0/68c6921721a3dcb40451543db2174a145ef915bc8bcbe7ad4e59194a0238e776e782b896c7a59f4b93ac6acefca9161fccb31d1ce3b3445cb6faa467297fb473 + languageName: node + linkType: hard + +"@types/uuid@npm:^9.0.1": + version: 9.0.8 + resolution: "@types/uuid@npm:9.0.8" + checksum: 10c0/b411b93054cb1d4361919579ef3508a1f12bf15b5fdd97337d3d351bece6c921b52b6daeef89b62340fd73fd60da407878432a1af777f40648cbe53a01723489 + languageName: node + linkType: hard + +"@types/yargs-parser@npm:*": + version: 21.0.3 + resolution: "@types/yargs-parser@npm:21.0.3" + checksum: 10c0/e71c3bd9d0b73ca82e10bee2064c384ab70f61034bbfb78e74f5206283fc16a6d85267b606b5c22cb2a3338373586786fed595b2009825d6a9115afba36560a0 + languageName: node + linkType: hard + +"@types/yargs@npm:^17.0.8": + version: 17.0.33 + resolution: "@types/yargs@npm:17.0.33" + dependencies: + "@types/yargs-parser": "npm:*" + checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b + languageName: node + linkType: hard + +"@types/yauzl@npm:^2.9.1": + version: 2.10.3 + resolution: "@types/yauzl@npm:2.10.3" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/f1b7c1b99fef9f2fe7f1985ef7426d0cebe48cd031f1780fcdc7451eec7e31ac97028f16f50121a59bcf53086a1fc8c856fd5b7d3e00970e43d92ae27d6b43dc + languageName: node + linkType: hard + +"@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/eslint-plugin@npm:^8.17.0": + version: 8.24.1 + resolution: "@typescript-eslint/eslint-plugin@npm:8.24.1" + dependencies: + "@eslint-community/regexpp": "npm:^4.10.0" + "@typescript-eslint/scope-manager": "npm:8.24.1" + "@typescript-eslint/type-utils": "npm:8.24.1" + "@typescript-eslint/utils": "npm:8.24.1" + "@typescript-eslint/visitor-keys": "npm:8.24.1" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.3.1" + natural-compare: "npm:^1.4.0" + ts-api-utils: "npm:^2.0.1" + peerDependencies: + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/fe5f56f248370f40322a7cb2d96fbab724a7a8892895e3d41027c9a1df309916433633e04df84a1d3f9535d282953738b1ad627d8af37ab288a39a6e411afd76 + languageName: node + linkType: hard + +"@typescript-eslint/eslint-plugin@npm:^6.14.0": + version: 6.21.0 + resolution: "@typescript-eslint/eslint-plugin@npm:6.21.0" + dependencies: + "@eslint-community/regexpp": "npm:^4.5.1" + "@typescript-eslint/scope-manager": "npm:6.21.0" + "@typescript-eslint/type-utils": "npm:6.21.0" + "@typescript-eslint/utils": "npm:6.21.0" + "@typescript-eslint/visitor-keys": "npm:6.21.0" + debug: "npm:^4.3.4" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.4" + natural-compare: "npm:^1.4.0" + semver: "npm:^7.5.4" + ts-api-utils: "npm:^1.0.1" + peerDependencies: + "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/f911a79ee64d642f814a3b6cdb0d324b5f45d9ef955c5033e78903f626b7239b4aa773e464a38c3e667519066169d983538f2bf8e5d00228af587c9d438fb344 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0, @typescript-eslint/parser@npm:^8.17.0": + version: 8.24.1 + resolution: "@typescript-eslint/parser@npm:8.24.1" + dependencies: + "@typescript-eslint/scope-manager": "npm:8.24.1" + "@typescript-eslint/types": "npm:8.24.1" + "@typescript-eslint/typescript-estree": "npm:8.24.1" + "@typescript-eslint/visitor-keys": "npm:8.24.1" + debug: "npm:^4.3.4" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/9de557698c8debf3de06b6adf6aa06a8345e0e38600e5ccbeda62270d1a4a757dfa191db89d4e86cf373103a11bef1965c9d9889f622c51f4f26d1bf12394ae3 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^6.14.0": + version: 6.21.0 + resolution: "@typescript-eslint/parser@npm:6.21.0" + dependencies: + "@typescript-eslint/scope-manager": "npm:6.21.0" + "@typescript-eslint/types": "npm:6.21.0" + "@typescript-eslint/typescript-estree": "npm:6.21.0" + "@typescript-eslint/visitor-keys": "npm:6.21.0" + debug: "npm:^4.3.4" + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/a8f99820679decd0d115c0af61903fb1de3b1b5bec412dc72b67670bf636de77ab07f2a68ee65d6da7976039bbf636907f9d5ca546db3f0b98a31ffbc225bc7d + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/scope-manager@npm:5.62.0" + dependencies: + "@typescript-eslint/types": "npm:5.62.0" + "@typescript-eslint/visitor-keys": "npm:5.62.0" + checksum: 10c0/861253235576c1c5c1772d23cdce1418c2da2618a479a7de4f6114a12a7ca853011a1e530525d0931c355a8fd237b9cd828fac560f85f9623e24054fd024726f + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/scope-manager@npm:6.21.0" + dependencies: + "@typescript-eslint/types": "npm:6.21.0" + "@typescript-eslint/visitor-keys": "npm:6.21.0" + checksum: 10c0/eaf868938d811cbbea33e97e44ba7050d2b6892202cea6a9622c486b85ab1cf801979edf78036179a8ba4ac26f1dfdf7fcc83a68c1ff66be0b3a8e9a9989b526 + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/scope-manager@npm:8.24.1" + dependencies: + "@typescript-eslint/types": "npm:8.24.1" + "@typescript-eslint/visitor-keys": "npm:8.24.1" + checksum: 10c0/779880743ed7ab67fe477f1ad5648bbd77ad69b4663b5a42024112004c8f231049b1e4eeb67e260005769c3bb005049e00a80b885e19d593ffb080bd39f4fa94 + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/type-utils@npm:6.21.0" + dependencies: + "@typescript-eslint/typescript-estree": "npm:6.21.0" + "@typescript-eslint/utils": "npm:6.21.0" + debug: "npm:^4.3.4" + ts-api-utils: "npm:^1.0.1" + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/7409c97d1c4a4386b488962739c4f1b5b04dc60cf51f8cd88e6b12541f84d84c6b8b67e491a147a2c95f9ec486539bf4519fb9d418411aef6537b9c156468117 + languageName: node + linkType: hard + +"@typescript-eslint/type-utils@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/type-utils@npm:8.24.1" + dependencies: + "@typescript-eslint/typescript-estree": "npm:8.24.1" + "@typescript-eslint/utils": "npm:8.24.1" + debug: "npm:^4.3.4" + ts-api-utils: "npm:^2.0.1" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/ba248bc12068383374d9d077f9cca1815f347ea008d04d08ad7a54dbef70189a0da7872246f8369e6d30938fa7e408dadcda0ae71041be68fc836c886dd9c3ab + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/types@npm:5.62.0" + checksum: 10c0/7febd3a7f0701c0b927e094f02e82d8ee2cada2b186fcb938bc2b94ff6fbad88237afc304cbaf33e82797078bbbb1baf91475f6400912f8b64c89be79bfa4ddf + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/types@npm:6.21.0" + checksum: 10c0/020631d3223bbcff8a0da3efbdf058220a8f48a3de221563996ad1dcc30d6c08dadc3f7608cc08830d21c0d565efd2db19b557b9528921c78aabb605eef2d74d + languageName: node + linkType: hard + +"@typescript-eslint/types@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/types@npm:8.24.1" + checksum: 10c0/ebb40ce16c746ef236dbcc25cb2e6950753ca6fb34d04ed7d477016370de1fdaf7402ed4569673c6ff14bf60af7124ff45c6ddd9328d2f8c94dc04178368e2a3 + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" + dependencies: + "@typescript-eslint/types": "npm:5.62.0" + "@typescript-eslint/visitor-keys": "npm:5.62.0" + debug: "npm:^4.3.4" + globby: "npm:^11.1.0" + is-glob: "npm:^4.0.3" + semver: "npm:^7.3.7" + tsutils: "npm:^3.21.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/d7984a3e9d56897b2481940ec803cb8e7ead03df8d9cfd9797350be82ff765dfcf3cfec04e7355e1779e948da8f02bc5e11719d07a596eb1cb995c48a95e38cf + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/typescript-estree@npm:6.21.0" + dependencies: + "@typescript-eslint/types": "npm:6.21.0" + "@typescript-eslint/visitor-keys": "npm:6.21.0" + debug: "npm:^4.3.4" + globby: "npm:^11.1.0" + is-glob: "npm:^4.0.3" + minimatch: "npm:9.0.3" + semver: "npm:^7.5.4" + ts-api-utils: "npm:^1.0.1" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/af1438c60f080045ebb330155a8c9bb90db345d5069cdd5d01b67de502abb7449d6c75500519df829f913a6b3f490ade3e8215279b6bdc63d0fb0ae61034df5f + languageName: node + linkType: hard + +"@typescript-eslint/typescript-estree@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/typescript-estree@npm:8.24.1" + dependencies: + "@typescript-eslint/types": "npm:8.24.1" + "@typescript-eslint/visitor-keys": "npm:8.24.1" + debug: "npm:^4.3.4" + fast-glob: "npm:^3.3.2" + is-glob: "npm:^4.0.3" + minimatch: "npm:^9.0.4" + semver: "npm:^7.6.0" + ts-api-utils: "npm:^2.0.1" + peerDependencies: + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/8eeeae6e8de1cd83f2eddd52293e9c31a655e0974cc2d410f00ba2b6fd6bb9aec1c346192d5784d64d0d1b15a55e56e35550788c04dda87e0f1a99b21a3eb709 + languageName: node + linkType: hard + +"@typescript-eslint/utils@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/utils@npm:6.21.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@types/json-schema": "npm:^7.0.12" + "@types/semver": "npm:^7.5.0" + "@typescript-eslint/scope-manager": "npm:6.21.0" + "@typescript-eslint/types": "npm:6.21.0" + "@typescript-eslint/typescript-estree": "npm:6.21.0" + semver: "npm:^7.5.4" + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + checksum: 10c0/ab2df3833b2582d4e5467a484d08942b4f2f7208f8e09d67de510008eb8001a9b7460f2f9ba11c12086fd3cdcac0c626761c7995c2c6b5657d5fa6b82030a32d + languageName: node + linkType: hard + +"@typescript-eslint/utils@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/utils@npm:8.24.1" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@typescript-eslint/scope-manager": "npm:8.24.1" + "@typescript-eslint/types": "npm:8.24.1" + "@typescript-eslint/typescript-estree": "npm:8.24.1" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <5.8.0" + checksum: 10c0/b3300d5c7e18ec524a46bf683052539f24df0d8c709e39e3bde9dfc6c65180610c46b875f1f4eaad5e311193a56acdfd7111a73f1e8aec4108e9cd19561bf8b8 + languageName: node + linkType: hard + +"@typescript-eslint/utils@npm:^5.45.0": + version: 5.62.0 + resolution: "@typescript-eslint/utils@npm:5.62.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@types/json-schema": "npm:^7.0.9" + "@types/semver": "npm:^7.3.12" + "@typescript-eslint/scope-manager": "npm:5.62.0" + "@typescript-eslint/types": "npm:5.62.0" + "@typescript-eslint/typescript-estree": "npm:5.62.0" + eslint-scope: "npm:^5.1.1" + semver: "npm:^7.3.7" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 10c0/f09b7d9952e4a205eb1ced31d7684dd55cee40bf8c2d78e923aa8a255318d97279825733902742c09d8690f37a50243f4c4d383ab16bd7aefaf9c4b438f785e1 + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:5.62.0": + version: 5.62.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" + dependencies: + "@typescript-eslint/types": "npm:5.62.0" + eslint-visitor-keys: "npm:^3.3.0" + checksum: 10c0/7c3b8e4148e9b94d9b7162a596a1260d7a3efc4e65199693b8025c71c4652b8042501c0bc9f57654c1e2943c26da98c0f77884a746c6ae81389fcb0b513d995d + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:6.21.0": + version: 6.21.0 + resolution: "@typescript-eslint/visitor-keys@npm:6.21.0" + dependencies: + "@typescript-eslint/types": "npm:6.21.0" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 10c0/7395f69739cfa1cb83c1fb2fad30afa2a814756367302fb4facd5893eff66abc807e8d8f63eba94ed3b0fe0c1c996ac9a1680bcbf0f83717acedc3f2bb724fbf + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:8.24.1": + version: 8.24.1 + resolution: "@typescript-eslint/visitor-keys@npm:8.24.1" + dependencies: + "@typescript-eslint/types": "npm:8.24.1" + eslint-visitor-keys: "npm:^4.2.0" + checksum: 10c0/ba09412fb4b1605aa73c890909c9a8dba2aa72e00ccd7d69baad17c564eedd77f489a06b1686985c7f0c49724787b82d76dcf4c146c4de44ef2c8776a9b6ad2b + languageName: node + linkType: hard + +"@ungap/structured-clone@npm:^1.2.0": + version: 1.3.0 + resolution: "@ungap/structured-clone@npm:1.3.0" + checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a + languageName: node + linkType: hard + +"@vercel/otel@npm:^1.9.1": + version: 1.10.1 + resolution: "@vercel/otel@npm:1.10.1" + peerDependencies: + "@opentelemetry/api": ^1.7.0 + "@opentelemetry/api-logs": "*" + "@opentelemetry/instrumentation": "*" + "@opentelemetry/resources": ^1.19.0 + "@opentelemetry/sdk-logs": "*" + "@opentelemetry/sdk-metrics": ^1.19.0 + "@opentelemetry/sdk-trace-base": ^1.19.0 + checksum: 10c0/81646bd600a2cda984973f5eac85bb3e9391aba326f3f67297ef1a1964559ac98e8e2755460af6cfa24fb80a40d16badb455b6a53c415330089fe2b1db7dd25b + languageName: node + linkType: hard + +"@vis.gl/react-google-maps@npm:^1.2.0": + version: 1.5.1 + resolution: "@vis.gl/react-google-maps@npm:1.5.1" + dependencies: + "@types/google.maps": "npm:^3.54.10" + fast-deep-equal: "npm:^3.1.3" + peerDependencies: + react: ">=16.8.0 || ^19.0 || ^19.0.0-rc" + react-dom: ">=16.8.0 || ^19.0 || ^19.0.0-rc" + checksum: 10c0/bf239c825b8afbf122e201749c99cb63c3a0972a23b830666d0c7caff1e06fb6c8a27396fe9c9e33280aa2882c65a274816497dc7f9b91300425727f588d9a56 + languageName: node + linkType: hard + +"@vitejs/plugin-react@npm:^4.2.1": + version: 4.3.4 + resolution: "@vitejs/plugin-react@npm:4.3.4" + dependencies: + "@babel/core": "npm:^7.26.0" + "@babel/plugin-transform-react-jsx-self": "npm:^7.25.9" + "@babel/plugin-transform-react-jsx-source": "npm:^7.25.9" + "@types/babel__core": "npm:^7.20.5" + react-refresh: "npm:^0.14.2" + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + checksum: 10c0/38a47a1dbafae0b97142943d83ee3674cb3331153a60b1a3fd29d230c12c9dfe63b7c345b231a3450168ed8a9375a9a1a253c3d85e9efdc19478c0d56b98496c + languageName: node + linkType: hard + +"@vitest/expect@npm:1.6.1": + version: 1.6.1 + resolution: "@vitest/expect@npm:1.6.1" + dependencies: + "@vitest/spy": "npm:1.6.1" + "@vitest/utils": "npm:1.6.1" + chai: "npm:^4.3.10" + checksum: 10c0/278164b2a32a7019b443444f21111c5e32e4cadee026cae047ae2a3b347d99dca1d1fb7b79509c88b67dc3db19fa9a16265b7d7a8377485f7e37f7851e44495a + languageName: node + linkType: hard + +"@vitest/expect@npm:2.0.5": + version: 2.0.5 + resolution: "@vitest/expect@npm:2.0.5" + dependencies: + "@vitest/spy": "npm:2.0.5" + "@vitest/utils": "npm:2.0.5" + chai: "npm:^5.1.1" + tinyrainbow: "npm:^1.2.0" + checksum: 10c0/08cb1b0f106d16a5b60db733e3d436fa5eefc68571488eb570dfe4f599f214ab52e4342273b03dbe12331cc6c0cdc325ac6c94f651ad254cd62f3aa0e3d185aa + languageName: node + linkType: hard + +"@vitest/pretty-format@npm:2.0.5": + version: 2.0.5 + resolution: "@vitest/pretty-format@npm:2.0.5" + dependencies: + tinyrainbow: "npm:^1.2.0" + checksum: 10c0/236c0798c5170a0b5ad5d4bd06118533738e820b4dd30079d8fbcb15baee949d41c60f42a9f769906c4a5ce366d7ef11279546070646c0efc03128c220c31f37 + languageName: node + linkType: hard + +"@vitest/pretty-format@npm:2.1.9": + version: 2.1.9 + resolution: "@vitest/pretty-format@npm:2.1.9" + dependencies: + tinyrainbow: "npm:^1.2.0" + checksum: 10c0/155f9ede5090eabed2a73361094bb35ed4ec6769ae3546d2a2af139166569aec41bb80e031c25ff2da22b71dd4ed51e5468e66a05e6aeda5f14b32e30bc18f00 + languageName: node + linkType: hard + +"@vitest/runner@npm:1.6.1": + version: 1.6.1 + resolution: "@vitest/runner@npm:1.6.1" + dependencies: + "@vitest/utils": "npm:1.6.1" + p-limit: "npm:^5.0.0" + pathe: "npm:^1.1.1" + checksum: 10c0/36333f1a596c4ad85d42c6126cc32959c984d584ef28d366d366fa3672678c1a0f5e5c2e8717a36675b6620b57e8830f765d6712d1687f163ed0a8ebf23c87db + languageName: node + linkType: hard + +"@vitest/snapshot@npm:1.6.1": + version: 1.6.1 + resolution: "@vitest/snapshot@npm:1.6.1" + dependencies: + magic-string: "npm:^0.30.5" + pathe: "npm:^1.1.1" + pretty-format: "npm:^29.7.0" + checksum: 10c0/68bbc3132c195ec37376469e4b183fc408e0aeedd827dffcc899aac378e9ea324825f0873062786e18f00e3da9dd8a93c9bb871c07471ee483e8df963cb272eb + languageName: node + linkType: hard + +"@vitest/spy@npm:1.6.1": + version: 1.6.1 + resolution: "@vitest/spy@npm:1.6.1" + dependencies: + tinyspy: "npm:^2.2.0" + checksum: 10c0/5207ec0e7882819f0e0811293ae6d14163e26927e781bb4de7d40b3bd99c1fae656934c437bb7a30443a3e7e736c5bccb037bbf4436dbbc83d29e65247888885 + languageName: node + linkType: hard + +"@vitest/spy@npm:2.0.5": + version: 2.0.5 + resolution: "@vitest/spy@npm:2.0.5" + dependencies: + tinyspy: "npm:^3.0.0" + checksum: 10c0/70634c21921eb271b54d2986c21d7ab6896a31c0f4f1d266940c9bafb8ac36237846d6736638cbf18b958bd98e5261b158a6944352742accfde50b7818ff655e + languageName: node + linkType: hard + +"@vitest/utils@npm:1.6.1": + version: 1.6.1 + resolution: "@vitest/utils@npm:1.6.1" + dependencies: + diff-sequences: "npm:^29.6.3" + estree-walker: "npm:^3.0.3" + loupe: "npm:^2.3.7" + pretty-format: "npm:^29.7.0" + checksum: 10c0/0d4c619e5688cbc22a60c412719c6baa40376b7671bdbdc3072552f5c5a5ee5d24a96ea328b054018debd49e0626a5e3db672921b2c6b5b17b9a52edd296806a + languageName: node + linkType: hard + +"@vitest/utils@npm:2.0.5": + version: 2.0.5 + resolution: "@vitest/utils@npm:2.0.5" + dependencies: + "@vitest/pretty-format": "npm:2.0.5" + estree-walker: "npm:^3.0.3" + loupe: "npm:^3.1.1" + tinyrainbow: "npm:^1.2.0" + checksum: 10c0/0d1de748298f07a50281e1ba058b05dcd58da3280c14e6f016265e950bd79adab6b97822de8f0ea82d3070f585654801a9b1bcf26db4372e51cf7746bf86d73b + languageName: node + linkType: hard + +"@vitest/utils@npm:^2.1.1": + version: 2.1.9 + resolution: "@vitest/utils@npm:2.1.9" + dependencies: + "@vitest/pretty-format": "npm:2.1.9" + loupe: "npm:^3.1.2" + tinyrainbow: "npm:^1.2.0" + checksum: 10c0/81a346cd72b47941f55411f5df4cc230e5f740d1e97e0d3f771b27f007266fc1f28d0438582f6409ea571bc0030ed37f684c64c58d1947d6298d770c21026fdf + languageName: node + linkType: hard + +"@volar/language-core@npm:1.11.1, @volar/language-core@npm:~1.11.1": + version: 1.11.1 + resolution: "@volar/language-core@npm:1.11.1" + dependencies: + "@volar/source-map": "npm:1.11.1" + checksum: 10c0/92c4439e3a9ccc534c970031388c318740f6fa032283d03e136c6c8c0228f549c68a7c363af1a28252617a0dca6069e14028329ac906d5acf1912931d0cdcb69 + languageName: node + linkType: hard + +"@volar/source-map@npm:1.11.1, @volar/source-map@npm:~1.11.1": + version: 1.11.1 + resolution: "@volar/source-map@npm:1.11.1" + dependencies: + muggle-string: "npm:^0.3.1" + checksum: 10c0/0bfc639889802705f8036ea8b2052a95a4d691a68bc2b6744ba8b9d312d887393dd3278101180a5ee5304972899d493972a483afafd41e097968746c77d724cb + languageName: node + linkType: hard + +"@volar/typescript@npm:~1.11.1": + version: 1.11.1 + resolution: "@volar/typescript@npm:1.11.1" + dependencies: + "@volar/language-core": "npm:1.11.1" + path-browserify: "npm:^1.0.1" + checksum: 10c0/86fe153db3a14d8eb3632784a1d7fcbfbfb51fa5517c3878bfdd49ee8d15a83b1a09f9c589454b7396454c104d3a8e2db3a987dc99b37c33816772fc3e292bf2 + languageName: node + linkType: hard + +"@vue/compiler-core@npm:3.5.13": + version: 3.5.13 + resolution: "@vue/compiler-core@npm:3.5.13" + dependencies: + "@babel/parser": "npm:^7.25.3" + "@vue/shared": "npm:3.5.13" + entities: "npm:^4.5.0" + estree-walker: "npm:^2.0.2" + source-map-js: "npm:^1.2.0" + checksum: 10c0/b89f3e3ca92c3177ae449ada1480df13d99b5b3b2cdcf3202fd37dc30f294a1db1f473209f8bae9233e2d338632219d39b2bfa6941d158cea55255e4b0b30f90 + languageName: node + linkType: hard + +"@vue/compiler-dom@npm:^3.3.0": + version: 3.5.13 + resolution: "@vue/compiler-dom@npm:3.5.13" + dependencies: + "@vue/compiler-core": "npm:3.5.13" + "@vue/shared": "npm:3.5.13" + checksum: 10c0/8f424a71883c9ef4abdd125d2be8d12dd8cf94ba56089245c88734b1f87c65e10597816070ba2ea0a297a2f66dc579f39275a9a53ef5664c143a12409612cd72 + languageName: node + linkType: hard + +"@vue/language-core@npm:1.8.27, @vue/language-core@npm:^1.8.27": + version: 1.8.27 + resolution: "@vue/language-core@npm:1.8.27" + dependencies: + "@volar/language-core": "npm:~1.11.1" + "@volar/source-map": "npm:~1.11.1" + "@vue/compiler-dom": "npm:^3.3.0" + "@vue/shared": "npm:^3.3.0" + computeds: "npm:^0.0.1" + minimatch: "npm:^9.0.3" + muggle-string: "npm:^0.3.1" + path-browserify: "npm:^1.0.1" + vue-template-compiler: "npm:^2.7.14" + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/2018214d8ce2643d19e8e84eddaeacddca28b2980984d7916d97f97556c3716be184cf9f8c4f506d072a11f265401e3bc0391117cf7cfcc1e4a25048f4432dc7 + languageName: node + linkType: hard + +"@vue/shared@npm:3.5.13, @vue/shared@npm:^3.3.0": + version: 3.5.13 + resolution: "@vue/shared@npm:3.5.13" + checksum: 10c0/2c940ef907116f1c2583ca1d7733984e5705983ab07054c4e72f1d95eb0f7bdf4d01efbdaee1776c2008f79595963f44e98fced057f5957d86d57b70028f5025 + languageName: node + linkType: hard + +"@yarnpkg/lockfile@npm:^1.1.0": + version: 1.1.0 + resolution: "@yarnpkg/lockfile@npm:1.1.0" + checksum: 10c0/0bfa50a3d756623d1f3409bc23f225a1d069424dbc77c6fd2f14fb377390cd57ec703dc70286e081c564be9051ead9ba85d81d66a3e68eeb6eb506d4e0c0fbda + languageName: node + linkType: hard + +"JSONStream@npm:^1.3.5": + version: 1.3.5 + resolution: "JSONStream@npm:1.3.5" + dependencies: + jsonparse: "npm:^1.2.0" + through: "npm:>=2.2.7 <3" + bin: + JSONStream: ./bin.js + checksum: 10c0/0f54694da32224d57b715385d4a6b668d2117379d1f3223dc758459246cca58fdc4c628b83e8a8883334e454a0a30aa198ede77c788b55537c1844f686a751f2 + languageName: node + linkType: hard + +"abab@npm:^2.0.6": + version: 2.0.6 + resolution: "abab@npm:2.0.6" + checksum: 10c0/0b245c3c3ea2598fe0025abf7cc7bb507b06949d51e8edae5d12c1b847a0a0c09639abcb94788332b4e2044ac4491c1e8f571b51c7826fd4b0bda1685ad4a278 + languageName: node + linkType: hard + +"abbrev@npm:^3.0.0": + version: 3.0.0 + resolution: "abbrev@npm:3.0.0" + checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28 + languageName: node + linkType: hard + +"accepts@npm:^1.3.5, accepts@npm:~1.3.4": + version: 1.3.8 + resolution: "accepts@npm:1.3.8" + dependencies: + mime-types: "npm:~2.1.34" + negotiator: "npm:0.6.3" + checksum: 10c0/3a35c5f5586cfb9a21163ca47a5f77ac34fa8ceb5d17d2fa2c0d81f41cbd7f8c6fa52c77e2c039acc0f4d09e71abdc51144246900f6bef5e3c4b333f77d89362 + languageName: node + linkType: hard + +"acorn-globals@npm:^7.0.0": + version: 7.0.1 + resolution: "acorn-globals@npm:7.0.1" + dependencies: + acorn: "npm:^8.1.0" + acorn-walk: "npm:^8.0.2" + checksum: 10c0/7437f58e92d99292dbebd0e79531af27d706c9f272f31c675d793da6c82d897e75302a8744af13c7f7978a8399840f14a353b60cf21014647f71012982456d2b + languageName: node + linkType: hard + +"acorn-import-attributes@npm:^1.9.5": + version: 1.9.5 + resolution: "acorn-import-attributes@npm:1.9.5" + peerDependencies: + acorn: ^8 + checksum: 10c0/5926eaaead2326d5a86f322ff1b617b0f698aa61dc719a5baa0e9d955c9885cc71febac3fb5bacff71bbf2c4f9c12db2056883c68c53eb962c048b952e1e013d + languageName: node + linkType: hard + +"acorn-jsx@npm:^5.3.2": + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 + languageName: node + linkType: hard + +"acorn-walk@npm:^8.0.2, acorn-walk@npm:^8.1.1, acorn-walk@npm:^8.3.2": + version: 8.3.4 + resolution: "acorn-walk@npm:8.3.4" + dependencies: + acorn: "npm:^8.11.0" + checksum: 10c0/76537ac5fb2c37a64560feaf3342023dadc086c46da57da363e64c6148dc21b57d49ace26f949e225063acb6fb441eabffd89f7a3066de5ad37ab3e328927c62 + languageName: node + linkType: hard + +"acorn@npm:^8.1.0, acorn@npm:^8.11.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.8.1, acorn@npm:^8.9.0": + version: 8.14.0 + resolution: "acorn@npm:8.14.0" + bin: + acorn: bin/acorn + checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 + languageName: node + linkType: hard + +"agent-base@npm:6": + version: 6.0.2 + resolution: "agent-base@npm:6.0.2" + dependencies: + debug: "npm:4" + checksum: 10c0/dc4f757e40b5f3e3d674bc9beb4f1048f4ee83af189bae39be99f57bf1f48dde166a8b0a5342a84b5944ee8e6ed1e5a9d801858f4ad44764e84957122fe46261 + languageName: node + linkType: hard + +"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": + version: 7.1.3 + resolution: "agent-base@npm:7.1.3" + checksum: 10c0/6192b580c5b1d8fb399b9c62bf8343d76654c2dd62afcb9a52b2cf44a8b6ace1e3b704d3fe3547d91555c857d3df02603341ff2cb961b9cfe2b12f9f3c38ee11 + languageName: node + linkType: hard + +"aggregate-error@npm:^3.0.0": + version: 3.1.0 + resolution: "aggregate-error@npm:3.1.0" + dependencies: + clean-stack: "npm:^2.0.0" + indent-string: "npm:^4.0.0" + checksum: 10c0/a42f67faa79e3e6687a4923050e7c9807db3848a037076f791d10e092677d65c1d2d863b7848560699f40fc0502c19f40963fb1cd1fb3d338a7423df8e45e039 + languageName: node + linkType: hard + +"ajv@npm:^6.12.4, ajv@npm:~6.12.6": + version: 6.12.6 + resolution: "ajv@npm:6.12.6" + dependencies: + fast-deep-equal: "npm:^3.1.1" + fast-json-stable-stringify: "npm:^2.0.0" + json-schema-traverse: "npm:^0.4.1" + uri-js: "npm:^4.2.2" + checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71 + languageName: node + linkType: hard + +"ansi-align@npm:^3.0.1": + version: 3.0.1 + resolution: "ansi-align@npm:3.0.1" + dependencies: + string-width: "npm:^4.1.0" + checksum: 10c0/ad8b755a253a1bc8234eb341e0cec68a857ab18bf97ba2bda529e86f6e30460416523e0ec58c32e5c21f0ca470d779503244892873a5895dbd0c39c788e82467 + languageName: node + linkType: hard + +"ansi-colors@npm:^4.1.1": + version: 4.1.3 + resolution: "ansi-colors@npm:4.1.3" + checksum: 10c0/ec87a2f59902f74e61eada7f6e6fe20094a628dab765cfdbd03c3477599368768cffccdb5d3bb19a1b6c99126783a143b1fee31aab729b31ffe5836c7e5e28b9 + languageName: node + linkType: hard + +"ansi-escape-sequences@npm:^5.1.2": + version: 5.1.2 + resolution: "ansi-escape-sequences@npm:5.1.2" + dependencies: + array-back: "npm:^4.0.0" + checksum: 10c0/d47b6bedbebba83b8a51e132167752a23ccdba1ad95084e29ab553f785f5124c84e7b0c6f5c2e1246ffc47f77f9dc364545a96a17c5c69f959ac83c1cb4c98a7 + languageName: node + linkType: hard + +"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.0": + version: 4.3.2 + resolution: "ansi-escapes@npm:4.3.2" + dependencies: + type-fest: "npm:^0.21.3" + checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 + languageName: node + linkType: hard + +"ansi-escapes@npm:^7.0.0": + version: 7.0.0 + resolution: "ansi-escapes@npm:7.0.0" + dependencies: + environment: "npm:^1.0.0" + checksum: 10c0/86e51e36fabef18c9c004af0a280573e828900641cea35134a124d2715e0c5a473494ab4ce396614505da77638ae290ff72dd8002d9747d2ee53f5d6bbe336be + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.1.0 + resolution: "ansi-regex@npm:6.1.0" + checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc + languageName: node + linkType: hard + +"ansi-styles@npm:^3.2.1": + version: 3.2.1 + resolution: "ansi-styles@npm:3.2.1" + dependencies: + color-convert: "npm:^1.9.0" + checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: "npm:^2.0.1" + checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 + languageName: node + linkType: hard + +"ansi-styles@npm:^5.0.0": + version: 5.2.0 + resolution: "ansi-styles@npm:5.2.0" + checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df + languageName: node + linkType: hard + +"ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0, ansi-styles@npm:^6.2.1": + version: 6.2.1 + resolution: "ansi-styles@npm:6.2.1" + checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c + languageName: node + linkType: hard + +"any-promise@npm:^1.0.0": + version: 1.3.0 + resolution: "any-promise@npm:1.3.0" + checksum: 10c0/60f0298ed34c74fef50daab88e8dab786036ed5a7fad02e012ab57e376e0a0b4b29e83b95ea9b5e7d89df762f5f25119b83e00706ecaccb22cfbacee98d74889 + languageName: node + linkType: hard + +"anymatch@npm:^3.0.3, anymatch@npm:~3.1.2": + version: 3.1.3 + resolution: "anymatch@npm:3.1.3" + dependencies: + normalize-path: "npm:^3.0.0" + picomatch: "npm:^2.0.4" + checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac + languageName: node + linkType: hard + +"app-root-dir@npm:^1.0.2": + version: 1.0.2 + resolution: "app-root-dir@npm:1.0.2" + checksum: 10c0/0225e4be7788968a82bb76df9b14b0d7f212a5c12e8c625cdc34f80548780bcbfc5f3287d0806dddd83bf9dbf9ce302e76b2887cd3a6f4be52b79df7f3aa9e7c + languageName: node + linkType: hard + +"arch@npm:^2.2.0": + version: 2.2.0 + resolution: "arch@npm:2.2.0" + checksum: 10c0/4ceaf8d8207817c216ebc4469742052cb0a097bc45d9b7fcd60b7507220da545a28562ab5bdd4dfe87921bb56371a0805da4e10d704e01f93a15f83240f1284c + languageName: node + linkType: hard + +"arg@npm:^4.1.0": + version: 4.1.3 + resolution: "arg@npm:4.1.3" + checksum: 10c0/070ff801a9d236a6caa647507bdcc7034530604844d64408149a26b9e87c2f97650055c0f049abd1efc024b334635c01f29e0b632b371ac3f26130f4cf65997a + languageName: node + linkType: hard + +"arg@npm:^5.0.2": + version: 5.0.2 + resolution: "arg@npm:5.0.2" + checksum: 10c0/ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e + languageName: node + linkType: hard + +"argparse@npm:^1.0.7, argparse@npm:~1.0.9": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: "npm:~1.0.2" + checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e + languageName: node + linkType: hard + +"aria-hidden@npm:^1.2.4": + version: 1.2.4 + resolution: "aria-hidden@npm:1.2.4" + dependencies: + tslib: "npm:^2.0.0" + checksum: 10c0/8abcab2e1432efc4db415e97cb3959649ddf52c8fc815d7384f43f3d3abf56f1c12852575d00df9a8927f421d7e0712652dd5f8db244ea57634344e29ecfc74a + languageName: node + linkType: hard + +"aria-query@npm:5.3.0": + version: 5.3.0 + resolution: "aria-query@npm:5.3.0" + dependencies: + dequal: "npm:^2.0.3" + checksum: 10c0/2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469 + languageName: node + linkType: hard + +"aria-query@npm:^5.0.0, aria-query@npm:^5.3.2": + version: 5.3.2 + resolution: "aria-query@npm:5.3.2" + checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e + languageName: node + linkType: hard + +"array-back@npm:^3.0.1, array-back@npm:^3.1.0": + version: 3.1.0 + resolution: "array-back@npm:3.1.0" + checksum: 10c0/bb1fe86aa8b39c21e73c68c7abf8b05ed939b8951a3b17527217f6a2a84e00e4cfa4fdec823081689c5e216709bf1f214a4f5feeee6726eaff83897fa1a7b8ee + languageName: node + linkType: hard + +"array-back@npm:^4.0.0, array-back@npm:^4.0.1, array-back@npm:^4.0.2": + version: 4.0.2 + resolution: "array-back@npm:4.0.2" + checksum: 10c0/8beb5b4c9535eab2905d4ff7d16c4d90ee5ca080d2b26b1e637434c0fcfadb3585283524aada753bd5d06bb88a5dac9e175c3a236183741d3d795a69b6678c96 + languageName: node + linkType: hard + +"array-buffer-byte-length@npm:^1.0.1, array-buffer-byte-length@npm:^1.0.2": + version: 1.0.2 + resolution: "array-buffer-byte-length@npm:1.0.2" + dependencies: + call-bound: "npm:^1.0.3" + is-array-buffer: "npm:^3.0.5" + checksum: 10c0/74e1d2d996941c7a1badda9cabb7caab8c449db9086407cad8a1b71d2604cc8abf105db8ca4e02c04579ec58b7be40279ddb09aea4784832984485499f48432d + languageName: node + linkType: hard + +"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8": + version: 3.1.8 + resolution: "array-includes@npm:3.1.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.4" + is-string: "npm:^1.0.7" + checksum: 10c0/5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370 + languageName: node + linkType: hard + +"array-union@npm:^2.1.0": + version: 2.1.0 + resolution: "array-union@npm:2.1.0" + checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962 + languageName: node + linkType: hard + +"array.prototype.findlast@npm:^1.2.5": + version: 1.2.5 + resolution: "array.prototype.findlast@npm:1.2.5" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-shim-unscopables: "npm:^1.0.2" + checksum: 10c0/ddc952b829145ab45411b9d6adcb51a8c17c76bf89c9dd64b52d5dffa65d033da8c076ed2e17091779e83bc892b9848188d7b4b33453c5565e65a92863cb2775 + languageName: node + linkType: hard + +"array.prototype.findlastindex@npm:^1.2.5": + version: 1.2.5 + resolution: "array.prototype.findlastindex@npm:1.2.5" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-shim-unscopables: "npm:^1.0.2" + checksum: 10c0/962189487728b034f3134802b421b5f39e42ee2356d13b42d2ddb0e52057ffdcc170b9524867f4f0611a6f638f4c19b31e14606e8bcbda67799e26685b195aa3 + languageName: node + linkType: hard + +"array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.2": + version: 1.3.3 + resolution: "array.prototype.flat@npm:1.3.3" + dependencies: + call-bind: "npm:^1.0.8" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.5" + es-shim-unscopables: "npm:^1.0.2" + checksum: 10c0/d90e04dfbc43bb96b3d2248576753d1fb2298d2d972e29ca7ad5ec621f0d9e16ff8074dae647eac4f31f4fb7d3f561a7ac005fb01a71f51705a13b5af06a7d8a + languageName: node + linkType: hard + +"array.prototype.flatmap@npm:^1.3.2, array.prototype.flatmap@npm:^1.3.3": + version: 1.3.3 + resolution: "array.prototype.flatmap@npm:1.3.3" + dependencies: + call-bind: "npm:^1.0.8" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.5" + es-shim-unscopables: "npm:^1.0.2" + checksum: 10c0/ba899ea22b9dc9bf276e773e98ac84638ed5e0236de06f13d63a90b18ca9e0ec7c97d622d899796e3773930b946cd2413d098656c0c5d8cc58c6f25c21e6bd54 + languageName: node + linkType: hard + +"array.prototype.tosorted@npm:^1.1.4": + version: 1.1.4 + resolution: "array.prototype.tosorted@npm:1.1.4" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.3" + es-errors: "npm:^1.3.0" + es-shim-unscopables: "npm:^1.0.2" + checksum: 10c0/eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943 + languageName: node + linkType: hard + +"arraybuffer.prototype.slice@npm:^1.0.4": + version: 1.0.4 + resolution: "arraybuffer.prototype.slice@npm:1.0.4" + dependencies: + array-buffer-byte-length: "npm:^1.0.1" + call-bind: "npm:^1.0.8" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.5" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.6" + is-array-buffer: "npm:^3.0.4" + checksum: 10c0/2f2459caa06ae0f7f615003f9104b01f6435cc803e11bd2a655107d52a1781dc040532dc44d93026b694cc18793993246237423e13a5337e86b43ed604932c06 + languageName: node + linkType: hard + +"asn1@npm:~0.2.3": + version: 0.2.6 + resolution: "asn1@npm:0.2.6" + dependencies: + safer-buffer: "npm:~2.1.0" + checksum: 10c0/00c8a06c37e548762306bcb1488388d2f76c74c36f70c803f0c081a01d3bdf26090fc088cd812afc5e56a6d49e33765d451a5f8a68ab9c2b087eba65d2e980e0 + languageName: node + linkType: hard + +"assert-plus@npm:1.0.0, assert-plus@npm:^1.0.0": + version: 1.0.0 + resolution: "assert-plus@npm:1.0.0" + checksum: 10c0/b194b9d50c3a8f872ee85ab110784911e696a4d49f7ee6fc5fb63216dedbefd2c55999c70cb2eaeb4cf4a0e0338b44e9ace3627117b5bf0d42460e9132f21b91 + languageName: node + linkType: hard + +"assertion-error@npm:^1.1.0": + version: 1.1.0 + resolution: "assertion-error@npm:1.1.0" + checksum: 10c0/25456b2aa333250f01143968e02e4884a34588a8538fbbf65c91a637f1dbfb8069249133cd2f4e530f10f624d206a664e7df30207830b659e9f5298b00a4099b + languageName: node + linkType: hard + +"assertion-error@npm:^2.0.1": + version: 2.0.1 + resolution: "assertion-error@npm:2.0.1" + checksum: 10c0/bbbcb117ac6480138f8c93cf7f535614282dea9dc828f540cdece85e3c665e8f78958b96afac52f29ff883c72638e6a87d469ecc9fe5bc902df03ed24a55dba8 + languageName: node + linkType: hard + +"ast-monkey-traverse@npm:^4.0.16": + version: 4.0.16 + resolution: "ast-monkey-traverse@npm:4.0.16" + dependencies: + ast-monkey-util: "npm:^3.0.8" + codsen-utils: "npm:^1.6.4" + rfdc: "npm:^1.3.1" + checksum: 10c0/d23ca3e9264311d6e89904460bd2aaae20140aee6e4bbb811a97f7ba42488f86a7bb23a63a2ddafbd38983c43b6b8661c150010273599f620277d1a3ab167c8d + languageName: node + linkType: hard + +"ast-monkey-util@npm:^3.0.8": + version: 3.0.8 + resolution: "ast-monkey-util@npm:3.0.8" + checksum: 10c0/309e32573033660888ddd587d80c074235f5d9b33237bc9d124f9d89c9f3d60bf42527f7f6f9f52be7c3107938870f1ca0b621d70ebe0fe5700626c94d32c7b2 + languageName: node + linkType: hard + +"ast-types-flow@npm:^0.0.8": + version: 0.0.8 + resolution: "ast-types-flow@npm:0.0.8" + checksum: 10c0/f2a0ba8055353b743c41431974521e5e852a9824870cd6fce2db0e538ac7bf4da406bbd018d109af29ff3f8f0993f6a730c9eddbd0abd031fbcb29ca75c1014e + languageName: node + linkType: hard + +"ast-types@npm:^0.16.1": + version: 0.16.1 + resolution: "ast-types@npm:0.16.1" + dependencies: + tslib: "npm:^2.0.1" + checksum: 10c0/abcc49e42eb921a7ebc013d5bec1154651fb6dbc3f497541d488859e681256901b2990b954d530ba0da4d0851271d484f7057d5eff5e07cb73e8b10909f711bf + languageName: node + linkType: hard + +"astral-regex@npm:^2.0.0": + version: 2.0.0 + resolution: "astral-regex@npm:2.0.0" + checksum: 10c0/f63d439cc383db1b9c5c6080d1e240bd14dae745f15d11ec5da863e182bbeca70df6c8191cffef5deba0b566ef98834610a68be79ac6379c95eeb26e1b310e25 + languageName: node + linkType: hard + +"async-function@npm:^1.0.0": + version: 1.0.0 + resolution: "async-function@npm:1.0.0" + checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73 + languageName: node + linkType: hard + +"async@npm:^3.2.0": + version: 3.2.6 + resolution: "async@npm:3.2.6" + checksum: 10c0/36484bb15ceddf07078688d95e27076379cc2f87b10c03b6dd8a83e89475a3c8df5848859dd06a4c95af1e4c16fc973de0171a77f18ea00be899aca2a4f85e70 + languageName: node + linkType: hard + +"asynckit@npm:^0.4.0": + version: 0.4.0 + resolution: "asynckit@npm:0.4.0" + checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d + languageName: node + linkType: hard + +"at-least-node@npm:^1.0.0": + version: 1.0.0 + resolution: "at-least-node@npm:1.0.0" + checksum: 10c0/4c058baf6df1bc5a1697cf182e2029c58cd99975288a13f9e70068ef5d6f4e1f1fd7c4d2c3c4912eae44797d1725be9700995736deca441b39f3e66d8dee97ef + languageName: node + linkType: hard + +"atomically@npm:^2.0.3": + version: 2.0.3 + resolution: "atomically@npm:2.0.3" + dependencies: + stubborn-fs: "npm:^1.2.5" + when-exit: "npm:^2.1.1" + checksum: 10c0/b9008a74f590d29be947f34b7583dab32034335fedfe340ac3e6458e2e315c770d8af6f15cd3947214702c523d91b5f989498348b1ab49c197bd645dc87d7a94 + languageName: node + linkType: hard + +"available-typed-arrays@npm:^1.0.7": + version: 1.0.7 + resolution: "available-typed-arrays@npm:1.0.7" + dependencies: + possible-typed-array-names: "npm:^1.0.0" + checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 + languageName: node + linkType: hard + +"aws-sign2@npm:~0.7.0": + version: 0.7.0 + resolution: "aws-sign2@npm:0.7.0" + checksum: 10c0/021d2cc5547d4d9ef1633e0332e746a6f447997758b8b68d6fb33f290986872d2bff5f0c37d5832f41a7229361f093cd81c40898d96ed153493c0fb5cd8575d2 + languageName: node + linkType: hard + +"aws4@npm:^1.8.0": + version: 1.13.2 + resolution: "aws4@npm:1.13.2" + checksum: 10c0/c993d0d186d699f685d73113733695d648ec7d4b301aba2e2a559d0cd9c1c902308cc52f4095e1396b23fddbc35113644e7f0a6a32753636306e41e3ed6f1e79 + languageName: node + linkType: hard + +"axe-core@npm:^4.10.0": + version: 4.10.2 + resolution: "axe-core@npm:4.10.2" + checksum: 10c0/0e20169077de96946a547fce0df39d9aeebe0077f9d3eeff4896518b96fde857f80b98f0d4279274a7178791744dd5a54bb4f322de45b4f561ffa2586ff9a09d + languageName: node + linkType: hard + +"axios@npm:^1.7.9": + version: 1.7.9 + resolution: "axios@npm:1.7.9" + dependencies: + follow-redirects: "npm:^1.15.6" + form-data: "npm:^4.0.0" + proxy-from-env: "npm:^1.1.0" + checksum: 10c0/b7a41e24b59fee5f0f26c1fc844b45b17442832eb3a0fb42dd4f1430eb4abc571fe168e67913e8a1d91c993232bd1d1ab03e20e4d1fee8c6147649b576fc1b0b + languageName: node + linkType: hard + +"axobject-query@npm:^4.1.0": + version: 4.1.0 + resolution: "axobject-query@npm:4.1.0" + checksum: 10c0/c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775 + languageName: node + linkType: hard + +"babel-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "babel-jest@npm:29.7.0" + dependencies: + "@jest/transform": "npm:^29.7.0" + "@types/babel__core": "npm:^7.1.14" + babel-plugin-istanbul: "npm:^6.1.1" + babel-preset-jest: "npm:^29.6.3" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + slash: "npm:^3.0.0" + peerDependencies: + "@babel/core": ^7.8.0 + checksum: 10c0/2eda9c1391e51936ca573dd1aedfee07b14c59b33dbe16ef347873ddd777bcf6e2fc739681e9e9661ab54ef84a3109a03725be2ac32cd2124c07ea4401cbe8c1 + languageName: node + linkType: hard + +"babel-plugin-istanbul@npm:^6.1.1": + version: 6.1.1 + resolution: "babel-plugin-istanbul@npm:6.1.1" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.0.0" + "@istanbuljs/load-nyc-config": "npm:^1.0.0" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-instrument: "npm:^5.0.4" + test-exclude: "npm:^6.0.0" + checksum: 10c0/1075657feb705e00fd9463b329921856d3775d9867c5054b449317d39153f8fbcebd3e02ebf00432824e647faff3683a9ca0a941325ef1afe9b3c4dd51b24beb + languageName: node + linkType: hard + +"babel-plugin-jest-hoist@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-plugin-jest-hoist@npm:29.6.3" + dependencies: + "@babel/template": "npm:^7.3.3" + "@babel/types": "npm:^7.3.3" + "@types/babel__core": "npm:^7.1.14" + "@types/babel__traverse": "npm:^7.0.6" + checksum: 10c0/7e6451caaf7dce33d010b8aafb970e62f1b0c0b57f4978c37b0d457bbcf0874d75a395a102daf0bae0bd14eafb9f6e9a165ee5e899c0a4f1f3bb2e07b304ed2e + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs2@npm:^0.4.10": + version: 0.4.12 + resolution: "babel-plugin-polyfill-corejs2@npm:0.4.12" + dependencies: + "@babel/compat-data": "npm:^7.22.6" + "@babel/helper-define-polyfill-provider": "npm:^0.6.3" + semver: "npm:^6.3.1" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/49150c310de2d472ecb95bd892bca1aa833cf5e84bbb76e3e95cf9ff2c6c8c3b3783dd19d70ba50ff6235eb8ce1fa1c0affe491273c95a1ef6a2923f4d5a3819 + languageName: node + linkType: hard + +"babel-plugin-polyfill-corejs3@npm:^0.11.0": + version: 0.11.1 + resolution: "babel-plugin-polyfill-corejs3@npm:0.11.1" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.6.3" + core-js-compat: "npm:^3.40.0" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/025f754b6296d84b20200aff63a3c1acdd85e8c621781f2bd27fe2512d0060526192d02329326947c6b29c27cf475fbcfaaff8c51eab1d2bfc7b79086bb64229 + languageName: node + linkType: hard + +"babel-plugin-polyfill-regenerator@npm:^0.6.1": + version: 0.6.3 + resolution: "babel-plugin-polyfill-regenerator@npm:0.6.3" + dependencies: + "@babel/helper-define-polyfill-provider": "npm:^0.6.3" + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 10c0/40164432e058e4b5c6d56feecacdad22692ae0534bd80c92d5399ed9e1a6a2b6797c8fda837995daddd4ca391f9aa2d58c74ad465164922e0f73631eaf9c4f76 + languageName: node + linkType: hard + +"babel-preset-current-node-syntax@npm:^1.0.0": + version: 1.1.0 + resolution: "babel-preset-current-node-syntax@npm:1.1.0" + dependencies: + "@babel/plugin-syntax-async-generators": "npm:^7.8.4" + "@babel/plugin-syntax-bigint": "npm:^7.8.3" + "@babel/plugin-syntax-class-properties": "npm:^7.12.13" + "@babel/plugin-syntax-class-static-block": "npm:^7.14.5" + "@babel/plugin-syntax-import-attributes": "npm:^7.24.7" + "@babel/plugin-syntax-import-meta": "npm:^7.10.4" + "@babel/plugin-syntax-json-strings": "npm:^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.3" + "@babel/plugin-syntax-numeric-separator": "npm:^7.10.4" + "@babel/plugin-syntax-object-rest-spread": "npm:^7.8.3" + "@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.3" + "@babel/plugin-syntax-optional-chaining": "npm:^7.8.3" + "@babel/plugin-syntax-private-property-in-object": "npm:^7.14.5" + "@babel/plugin-syntax-top-level-await": "npm:^7.14.5" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/0b838d4412e3322cb4436f246e24e9c00bebcedfd8f00a2f51489db683bd35406bbd55a700759c28d26959c6e03f84dd6a1426f576f440267c1d7a73c5717281 + languageName: node + linkType: hard + +"babel-preset-jest@npm:^29.6.3": + version: 29.6.3 + resolution: "babel-preset-jest@npm:29.6.3" + dependencies: + babel-plugin-jest-hoist: "npm:^29.6.3" + babel-preset-current-node-syntax: "npm:^1.0.0" + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 10c0/ec5fd0276b5630b05f0c14bb97cc3815c6b31600c683ebb51372e54dcb776cff790bdeeabd5b8d01ede375a040337ccbf6a3ccd68d3a34219125945e167ad943 + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee + languageName: node + linkType: hard + +"base64-js@npm:^1.3.1": + version: 1.5.1 + resolution: "base64-js@npm:1.5.1" + checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf + languageName: node + linkType: hard + +"basic-auth@npm:^2.0.1, basic-auth@npm:~2.0.1": + version: 2.0.1 + resolution: "basic-auth@npm:2.0.1" + dependencies: + safe-buffer: "npm:5.1.2" + checksum: 10c0/05f56db3a0fc31c89c86b605231e32ee143fb6ae38dc60616bc0970ae6a0f034172def99e69d3aed0e2c9e7cac84e2d63bc51a0b5ff6ab5fc8808cc8b29923c1 + languageName: node + linkType: hard + +"batch@npm:0.6.1": + version: 0.6.1 + resolution: "batch@npm:0.6.1" + checksum: 10c0/925a13897b4db80d4211082fe287bcf96d297af38e26448c857cee3e095c9792e3b8f26b37d268812e7f38a589f694609de8534a018b1937d7dc9f84e6b387c5 + languageName: node + linkType: hard + +"bcrypt-pbkdf@npm:^1.0.0": + version: 1.0.2 + resolution: "bcrypt-pbkdf@npm:1.0.2" + dependencies: + tweetnacl: "npm:^0.14.3" + checksum: 10c0/ddfe85230b32df25aeebfdccfbc61d3bc493ace49c884c9c68575de1f5dcf733a5d7de9def3b0f318b786616b8d85bad50a28b1da1750c43e0012c93badcc148 + languageName: node + linkType: hard + +"better-opn@npm:^3.0.2": + version: 3.0.2 + resolution: "better-opn@npm:3.0.2" + dependencies: + open: "npm:^8.0.4" + checksum: 10c0/911ef25d44da75aabfd2444ce7a4294a8000ebcac73068c04a60298b0f7c7506b60421aa4cd02ac82502fb42baaff7e4892234b51e6923eded44c5a11185f2f5 + languageName: node + linkType: hard + +"binary-extensions@npm:^2.0.0": + version: 2.3.0 + resolution: "binary-extensions@npm:2.3.0" + checksum: 10c0/75a59cafc10fb12a11d510e77110c6c7ae3f4ca22463d52487709ca7f18f69d886aa387557cc9864fbdb10153d0bdb4caacabf11541f55e89ed6e18d12ece2b5 + languageName: node + linkType: hard + +"bl@npm:^4.0.3": + version: 4.1.0 + resolution: "bl@npm:4.1.0" + dependencies: + buffer: "npm:^5.5.0" + inherits: "npm:^2.0.4" + readable-stream: "npm:^3.4.0" + checksum: 10c0/02847e1d2cb089c9dc6958add42e3cdeaf07d13f575973963335ac0fdece563a50ac770ac4c8fa06492d2dd276f6cc3b7f08c7cd9c7a7ad0f8d388b2a28def5f + languageName: node + linkType: hard + +"blob-util@npm:^2.0.2": + version: 2.0.2 + resolution: "blob-util@npm:2.0.2" + checksum: 10c0/ed82d587827e5c86be122301a7c250f8364963e9582f72a826255bfbd32f8d69cc10169413d666667bb1c4fc8061329ae89d176ffe46fee8f32080af944ccddc + languageName: node + linkType: hard + +"bluebird@npm:3.7.2, bluebird@npm:^3.7.2": + version: 3.7.2 + resolution: "bluebird@npm:3.7.2" + checksum: 10c0/680de03adc54ff925eaa6c7bb9a47a0690e8b5de60f4792604aae8ed618c65e6b63a7893b57ca924beaf53eee69c5af4f8314148c08124c550fe1df1add897d2 + languageName: node + linkType: hard + +"boolbase@npm:^1.0.0": + version: 1.0.0 + resolution: "boolbase@npm:1.0.0" + checksum: 10c0/e4b53deb4f2b85c52be0e21a273f2045c7b6a6ea002b0e139c744cb6f95e9ec044439a52883b0d74dedd1ff3da55ed140cfdddfed7fb0cccbed373de5dce1bcf + languageName: node + linkType: hard + +"boxen@npm:^8.0.1": + version: 8.0.1 + resolution: "boxen@npm:8.0.1" + dependencies: + ansi-align: "npm:^3.0.1" + camelcase: "npm:^8.0.0" + chalk: "npm:^5.3.0" + cli-boxes: "npm:^3.0.0" + string-width: "npm:^7.2.0" + type-fest: "npm:^4.21.0" + widest-line: "npm:^5.0.0" + wrap-ansi: "npm:^9.0.0" + checksum: 10c0/8c54f9797bf59eec0b44c9043d9cb5d5b2783dc673e4650235e43a5155c43334e78ec189fd410cf92056c1054aee3758279809deed115b49e68f1a1c6b3faa32 + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.11 + resolution: "brace-expansion@npm:1.1.11" + dependencies: + balanced-match: "npm:^1.0.0" + concat-map: "npm:0.0.1" + checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.1": + version: 2.0.1 + resolution: "brace-expansion@npm:2.0.1" + dependencies: + balanced-match: "npm:^1.0.0" + checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f + languageName: node + linkType: hard + +"braces@npm:^3.0.3, braces@npm:~3.0.2": + version: 3.0.3 + resolution: "braces@npm:3.0.3" + dependencies: + fill-range: "npm:^7.1.1" + checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04 + languageName: node + linkType: hard + +"browser-assert@npm:^1.2.1": + version: 1.2.1 + resolution: "browser-assert@npm:1.2.1" + checksum: 10c0/902abf999f92c9c951fdb6d7352c09eea9a84706258699655f7e7906e42daa06a1ae286398a755872740e05a6a71c43c5d1a0c0431d67a8cdb66e5d859a3fc0c + languageName: node + linkType: hard + +"browserslist@npm:^4.24.0, browserslist@npm:^4.24.3": + version: 4.24.4 + resolution: "browserslist@npm:4.24.4" + dependencies: + caniuse-lite: "npm:^1.0.30001688" + electron-to-chromium: "npm:^1.5.73" + node-releases: "npm:^2.0.19" + update-browserslist-db: "npm:^1.1.1" + bin: + browserslist: cli.js + checksum: 10c0/db7ebc1733cf471e0b490b4f47e3e2ea2947ce417192c9246644e92c667dd56a71406cc58f62ca7587caf828364892e9952904a02b7aead752bc65b62a37cfe9 + languageName: node + linkType: hard + +"bser@npm:2.1.1": + version: 2.1.1 + resolution: "bser@npm:2.1.1" + dependencies: + node-int64: "npm:^0.4.0" + checksum: 10c0/24d8dfb7b6d457d73f32744e678a60cc553e4ec0e9e1a01cf614b44d85c3c87e188d3cc78ef0442ce5032ee6818de20a0162ba1074725c0d08908f62ea979227 + languageName: node + linkType: hard + +"buffer-crc32@npm:~0.2.3": + version: 0.2.13 + resolution: "buffer-crc32@npm:0.2.13" + checksum: 10c0/cb0a8ddf5cf4f766466db63279e47761eb825693eeba6a5a95ee4ec8cb8f81ede70aa7f9d8aeec083e781d47154290eb5d4d26b3f7a465ec57fb9e7d59c47150 + languageName: node + linkType: hard + +"buffer-from@npm:^1.0.0": + version: 1.1.2 + resolution: "buffer-from@npm:1.1.2" + checksum: 10c0/124fff9d66d691a86d3b062eff4663fe437a9d9ee4b47b1b9e97f5a5d14f6d5399345db80f796827be7c95e70a8e765dd404b7c3ff3b3324f98e9b0c8826cc34 + languageName: node + linkType: hard + +"buffer@npm:^5.2.1, buffer@npm:^5.5.0, buffer@npm:^5.7.1": + version: 5.7.1 + resolution: "buffer@npm:5.7.1" + dependencies: + base64-js: "npm:^1.3.1" + ieee754: "npm:^1.1.13" + checksum: 10c0/27cac81cff434ed2876058d72e7c4789d11ff1120ef32c9de48f59eab58179b66710c488987d295ae89a228f835fc66d088652dffeb8e3ba8659f80eb091d55e + languageName: node + linkType: hard + +"busboy@npm:1.6.0": + version: 1.6.0 + resolution: "busboy@npm:1.6.0" + dependencies: + streamsearch: "npm:^1.1.0" + checksum: 10c0/fa7e836a2b82699b6e074393428b91ae579d4f9e21f5ac468e1b459a244341d722d2d22d10920cdd849743dbece6dca11d72de939fb75a7448825cf2babfba1f + languageName: node + linkType: hard + +"byte-size@npm:^6.2.0": + version: 6.2.0 + resolution: "byte-size@npm:6.2.0" + checksum: 10c0/dabf2aa9ca2cf5383fdd7c3c0630646f80af1999755fa31a0b6f6b25caa565d492b02aac5c5eb92048e9b8bb3ab14c6545f2582aa95940be194d2a2a7a7a56bc + languageName: node + linkType: hard + +"bytes@npm:3.1.2, bytes@npm:^3.0.0": + version: 3.1.2 + resolution: "bytes@npm:3.1.2" + checksum: 10c0/76d1c43cbd602794ad8ad2ae94095cddeb1de78c5dddaa7005c51af10b0176c69971a6d88e805a90c2b6550d76636e43c40d8427a808b8645ede885de4a0358e + languageName: node + linkType: hard + +"cac@npm:^6.7.14": + version: 6.7.14 + resolution: "cac@npm:6.7.14" + checksum: 10c0/4ee06aaa7bab8981f0d54e5f5f9d4adcd64058e9697563ce336d8a3878ed018ee18ebe5359b2430eceae87e0758e62ea2019c3f52ae6e211b1bd2e133856cd10 + languageName: node + linkType: hard + +"cacache@npm:^19.0.1": + version: 19.0.1 + resolution: "cacache@npm:19.0.1" + dependencies: + "@npmcli/fs": "npm:^4.0.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^10.2.2" + lru-cache: "npm:^10.0.1" + minipass: "npm:^7.0.3" + minipass-collect: "npm:^2.0.1" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + p-map: "npm:^7.0.2" + ssri: "npm:^12.0.0" + tar: "npm:^7.4.3" + unique-filename: "npm:^4.0.0" + checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c + languageName: node + linkType: hard + +"cache-content-type@npm:^1.0.0": + version: 1.0.1 + resolution: "cache-content-type@npm:1.0.1" + dependencies: + mime-types: "npm:^2.1.18" + ylru: "npm:^1.2.0" + checksum: 10c0/59b50e29e64a24bb52a16e5d35b69ad27ef14313701acc5e462b0aeebf2f09ff87fb6538eb0c0f0de4de05c8a1eecaef47f455f5b4928079e68f607f816a0843 + languageName: node + linkType: hard + +"cacheable-lookup@npm:^2.0.0": + version: 2.0.1 + resolution: "cacheable-lookup@npm:2.0.1" + dependencies: + "@types/keyv": "npm:^3.1.1" + keyv: "npm:^4.0.0" + checksum: 10c0/d9ac1e91736939ea619ad9bec50f09347f57308c7d9fb15e0d1de1e8d0d5152df364f6d8c7e611f62a53c35d059fc867858c0431d66366438247557e68f7e4b0 + languageName: node + linkType: hard + +"cacheable-request@npm:^7.0.1": + version: 7.0.4 + resolution: "cacheable-request@npm:7.0.4" + dependencies: + clone-response: "npm:^1.0.2" + get-stream: "npm:^5.1.0" + http-cache-semantics: "npm:^4.0.0" + keyv: "npm:^4.0.0" + lowercase-keys: "npm:^2.0.0" + normalize-url: "npm:^6.0.1" + responselike: "npm:^2.0.0" + checksum: 10c0/0834a7d17ae71a177bc34eab06de112a43f9b5ad05ebe929bec983d890a7d9f2bc5f1aa8bb67ea2b65e07a3bc74bea35fa62dd36dbac52876afe36fdcf83da41 + languageName: node + linkType: hard + +"cachedir@npm:^2.3.0": + version: 2.4.0 + resolution: "cachedir@npm:2.4.0" + checksum: 10c0/76bff9009f2c446cd3777a4aede99af634a89670a67012b8041f65e951d3d36cefe8940341ea80c72219ee9913fa1f6146824cd9dfe9874a4bded728af7e6d76 + languageName: node + linkType: hard + +"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2": + version: 1.0.2 + resolution: "call-bind-apply-helpers@npm:1.0.2" + dependencies: + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938 + languageName: node + linkType: hard + +"call-bind@npm:^1.0.7, call-bind@npm:^1.0.8": + version: 1.0.8 + resolution: "call-bind@npm:1.0.8" + dependencies: + call-bind-apply-helpers: "npm:^1.0.0" + es-define-property: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.4" + set-function-length: "npm:^1.2.2" + checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4 + languageName: node + linkType: hard + +"call-bound@npm:^1.0.2, call-bound@npm:^1.0.3": + version: 1.0.3 + resolution: "call-bound@npm:1.0.3" + dependencies: + call-bind-apply-helpers: "npm:^1.0.1" + get-intrinsic: "npm:^1.2.6" + checksum: 10c0/45257b8e7621067304b30dbd638e856cac913d31e8e00a80d6cf172911acd057846572d0b256b45e652d515db6601e2974a1b1a040e91b4fc36fb3dd86fa69cf + languageName: node + linkType: hard + +"callsites@npm:^3.0.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 + languageName: node + linkType: hard + +"camelcase@npm:^5.3.1": + version: 5.3.1 + resolution: "camelcase@npm:5.3.1" + checksum: 10c0/92ff9b443bfe8abb15f2b1513ca182d16126359ad4f955ebc83dc4ddcc4ef3fdd2c078bc223f2673dc223488e75c99b16cc4d056624374b799e6a1555cf61b23 + languageName: node + linkType: hard + +"camelcase@npm:^6.2.0": + version: 6.3.0 + resolution: "camelcase@npm:6.3.0" + checksum: 10c0/0d701658219bd3116d12da3eab31acddb3f9440790c0792e0d398f0a520a6a4058018e546862b6fba89d7ae990efaeb97da71e1913e9ebf5a8b5621a3d55c710 + languageName: node + linkType: hard + +"camelcase@npm:^8.0.0": + version: 8.0.0 + resolution: "camelcase@npm:8.0.0" + checksum: 10c0/56c5fe072f0523c9908cdaac21d4a3b3fb0f608fb2e9ba90a60e792b95dd3bb3d1f3523873ab17d86d146e94171305f73ef619e2f538bd759675bc4a14b4bff3 + languageName: node + linkType: hard + +"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001688": + version: 1.0.30001700 + resolution: "caniuse-lite@npm:1.0.30001700" + checksum: 10c0/3d391bcdd193208166d3ad759de240b9c18ac3759dbd57195770f0fcd2eedcd47d5e853609aba1eee5a2def44b0a14eee457796bdb3451a27de0c8b27355017c + languageName: node + linkType: hard + +"caseless@npm:~0.12.0": + version: 0.12.0 + resolution: "caseless@npm:0.12.0" + checksum: 10c0/ccf64bcb6c0232cdc5b7bd91ddd06e23a4b541f138336d4725233ac538041fb2f29c2e86c3c4a7a61ef990b665348db23a047060b9414c3a6603e9fa61ad4626 + languageName: node + linkType: hard + +"chai@npm:^4.3.10": + version: 4.5.0 + resolution: "chai@npm:4.5.0" + dependencies: + assertion-error: "npm:^1.1.0" + check-error: "npm:^1.0.3" + deep-eql: "npm:^4.1.3" + get-func-name: "npm:^2.0.2" + loupe: "npm:^2.3.6" + pathval: "npm:^1.1.1" + type-detect: "npm:^4.1.0" + checksum: 10c0/b8cb596bd1aece1aec659e41a6e479290c7d9bee5b3ad63d2898ad230064e5b47889a3bc367b20100a0853b62e026e2dc514acf25a3c9385f936aa3614d4ab4d + languageName: node + linkType: hard + +"chai@npm:^5.1.1": + version: 5.2.0 + resolution: "chai@npm:5.2.0" + dependencies: + assertion-error: "npm:^2.0.1" + check-error: "npm:^2.1.1" + deep-eql: "npm:^5.0.1" + loupe: "npm:^3.1.0" + pathval: "npm:^2.0.0" + checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d + languageName: node + linkType: hard + +"chalk@npm:3.0.0, chalk@npm:^3.0.0": + version: 3.0.0 + resolution: "chalk@npm:3.0.0" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/ee650b0a065b3d7a6fda258e75d3a86fc8e4effa55871da730a9e42ccb035bf5fd203525e5a1ef45ec2582ecc4f65b47eb11357c526b84dd29a14fb162c414d2 + languageName: node + linkType: hard + +"chalk@npm:^2.4.2": + version: 2.4.2 + resolution: "chalk@npm:2.4.2" + dependencies: + ansi-styles: "npm:^3.2.1" + escape-string-regexp: "npm:^1.0.5" + supports-color: "npm:^5.3.0" + checksum: 10c0/e6543f02ec877732e3a2d1c3c3323ddb4d39fbab687c23f526e25bd4c6a9bf3b83a696e8c769d078e04e5754921648f7821b2a2acfd16c550435fd630026e073 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.2": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 + languageName: node + linkType: hard + +"chalk@npm:^5.3.0, chalk@npm:^5.4.1": + version: 5.4.1 + resolution: "chalk@npm:5.4.1" + checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef + languageName: node + linkType: hard + +"char-regex@npm:^1.0.2": + version: 1.0.2 + resolution: "char-regex@npm:1.0.2" + checksum: 10c0/57a09a86371331e0be35d9083ba429e86c4f4648ecbe27455dbfb343037c16ee6fdc7f6b61f433a57cc5ded5561d71c56a150e018f40c2ffb7bc93a26dae341e + languageName: node + linkType: hard + +"check-error@npm:^1.0.3": + version: 1.0.3 + resolution: "check-error@npm:1.0.3" + dependencies: + get-func-name: "npm:^2.0.2" + checksum: 10c0/94aa37a7315c0e8a83d0112b5bfb5a8624f7f0f81057c73e4707729cdd8077166c6aefb3d8e2b92c63ee130d4a2ff94bad46d547e12f3238cc1d78342a973841 + languageName: node + linkType: hard + +"check-error@npm:^2.1.1": + version: 2.1.1 + resolution: "check-error@npm:2.1.1" + checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e + languageName: node + linkType: hard + +"check-more-types@npm:2.24.0, check-more-types@npm:^2.24.0": + version: 2.24.0 + resolution: "check-more-types@npm:2.24.0" + checksum: 10c0/93fda2c32eb5f6cd1161a84a2f4107c0e00b40a851748516791dd9a0992b91bdf504e3bf6bf7673ce603ae620042e11ed4084d16d6d92b36818abc9c2e725520 + languageName: node + linkType: hard + +"chokidar@npm:^3.5.3": + version: 3.6.0 + resolution: "chokidar@npm:3.6.0" + dependencies: + anymatch: "npm:~3.1.2" + braces: "npm:~3.0.2" + fsevents: "npm:~2.3.2" + glob-parent: "npm:~5.1.2" + is-binary-path: "npm:~2.1.0" + is-glob: "npm:~4.0.1" + normalize-path: "npm:~3.0.0" + readdirp: "npm:~3.6.0" + dependenciesMeta: + fsevents: + optional: true + checksum: 10c0/8361dcd013f2ddbe260eacb1f3cb2f2c6f2b0ad118708a343a5ed8158941a39cb8fb1d272e0f389712e74ee90ce8ba864eece9e0e62b9705cb468a2f6d917462 + languageName: node + linkType: hard + +"chokidar@npm:^4.0.0": + version: 4.0.3 + resolution: "chokidar@npm:4.0.3" + dependencies: + readdirp: "npm:^4.0.1" + checksum: 10c0/a58b9df05bb452f7d105d9e7229ac82fa873741c0c40ddcc7bb82f8a909fbe3f7814c9ebe9bc9a2bef9b737c0ec6e2d699d179048ef06ad3ec46315df0ebe6ad + languageName: node + linkType: hard + +"chownr@npm:^1.1.1": + version: 1.1.4 + resolution: "chownr@npm:1.1.4" + checksum: 10c0/ed57952a84cc0c802af900cf7136de643d3aba2eecb59d29344bc2f3f9bf703a301b9d84cdc71f82c3ffc9ccde831b0d92f5b45f91727d6c9da62f23aef9d9db + languageName: node + linkType: hard + +"chownr@npm:^3.0.0": + version: 3.0.0 + resolution: "chownr@npm:3.0.0" + checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 + languageName: node + linkType: hard + +"ci-info@npm:^3.2.0, ci-info@npm:^3.7.0": + version: 3.9.0 + resolution: "ci-info@npm:3.9.0" + checksum: 10c0/6f0109e36e111684291d46123d491bc4e7b7a1934c3a20dea28cba89f1d4a03acd892f5f6a81ed3855c38647e285a150e3c9ba062e38943bef57fee6c1554c3a + languageName: node + linkType: hard + +"ci-info@npm:^4.0.0": + version: 4.1.0 + resolution: "ci-info@npm:4.1.0" + checksum: 10c0/0f969ce32a974c542bc8abe4454b220d9d9323bb9415054c92a900faa5fdda0bb222eda68c490127c1d78503510d46b6aca614ecaba5a60515b8ac7e170119e6 + languageName: node + linkType: hard + +"cjs-module-lexer@npm:^1.0.0, cjs-module-lexer@npm:^1.2.2": + version: 1.4.3 + resolution: "cjs-module-lexer@npm:1.4.3" + checksum: 10c0/076b3af85adc4d65dbdab1b5b240fe5b45d44fcf0ef9d429044dd94d19be5589376805c44fb2d4b3e684e5fe6a9b7cf3e426476a6507c45283c5fc6ff95240be + languageName: node + linkType: hard + +"class-variance-authority@npm:^0.7.0": + version: 0.7.1 + resolution: "class-variance-authority@npm:0.7.1" + dependencies: + clsx: "npm:^2.1.1" + checksum: 10c0/0f438cea22131808b99272de0fa933c2532d5659773bfec0c583de7b3f038378996d3350683426b8e9c74a6286699382106d71fbec52f0dd5fbb191792cccb5b + languageName: node + linkType: hard + +"classnames@npm:^2.5.1": + version: 2.5.1 + resolution: "classnames@npm:2.5.1" + checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 + languageName: node + linkType: hard + +"clean-deep@npm:^3.4.0": + version: 3.4.0 + resolution: "clean-deep@npm:3.4.0" + dependencies: + lodash.isempty: "npm:^4.4.0" + lodash.isplainobject: "npm:^4.0.6" + lodash.transform: "npm:^4.6.0" + checksum: 10c0/cefb0fba6739724e8b49ef1bd4d4f05ca3072458e982ca82cadb9bee27db05dc02c17be8771e5b752a81696bef3ca86d883b2a39c2a2e8f91fa30057b8253ae0 + languageName: node + linkType: hard + +"clean-stack@npm:^2.0.0": + version: 2.2.0 + resolution: "clean-stack@npm:2.2.0" + checksum: 10c0/1f90262d5f6230a17e27d0c190b09d47ebe7efdd76a03b5a1127863f7b3c9aec4c3e6c8bb3a7bbf81d553d56a1fd35728f5a8ef4c63f867ac8d690109742a8c1 + languageName: node + linkType: hard + +"cli-boxes@npm:^3.0.0": + version: 3.0.0 + resolution: "cli-boxes@npm:3.0.0" + checksum: 10c0/4db3e8fbfaf1aac4fb3a6cbe5a2d3fa048bee741a45371b906439b9ffc821c6e626b0f108bdcd3ddf126a4a319409aedcf39a0730573ff050fdd7b6731e99fb9 + languageName: node + linkType: hard + +"cli-cursor@npm:^3.1.0": + version: 3.1.0 + resolution: "cli-cursor@npm:3.1.0" + dependencies: + restore-cursor: "npm:^3.1.0" + checksum: 10c0/92a2f98ff9037d09be3dfe1f0d749664797fb674bf388375a2207a1203b69d41847abf16434203e0089212479e47a358b13a0222ab9fccfe8e2644a7ccebd111 + languageName: node + linkType: hard + +"cli-cursor@npm:^5.0.0": + version: 5.0.0 + resolution: "cli-cursor@npm:5.0.0" + dependencies: + restore-cursor: "npm:^5.0.0" + checksum: 10c0/7ec62f69b79f6734ab209a3e4dbdc8af7422d44d360a7cb1efa8a0887bbe466a6e625650c466fe4359aee44dbe2dc0b6994b583d40a05d0808a5cb193641d220 + languageName: node + linkType: hard + +"cli-table3@npm:~0.6.1": + version: 0.6.5 + resolution: "cli-table3@npm:0.6.5" + dependencies: + "@colors/colors": "npm:1.5.0" + string-width: "npm:^4.2.0" + dependenciesMeta: + "@colors/colors": + optional: true + checksum: 10c0/d7cc9ed12212ae68241cc7a3133c52b844113b17856e11f4f81308acc3febcea7cc9fd298e70933e294dd642866b29fd5d113c2c098948701d0c35f09455de78 + languageName: node + linkType: hard + +"cli-truncate@npm:^2.1.0": + version: 2.1.0 + resolution: "cli-truncate@npm:2.1.0" + dependencies: + slice-ansi: "npm:^3.0.0" + string-width: "npm:^4.2.0" + checksum: 10c0/dfaa3df675bcef7a3254773de768712b590250420345a4c7ac151f041a4bacb4c25864b1377bee54a39b5925a030c00eabf014e312e3a4ac130952ed3b3879e9 + languageName: node + linkType: hard + +"cli-truncate@npm:^4.0.0": + version: 4.0.0 + resolution: "cli-truncate@npm:4.0.0" + dependencies: + slice-ansi: "npm:^5.0.0" + string-width: "npm:^7.0.0" + checksum: 10c0/d7f0b73e3d9b88cb496e6c086df7410b541b56a43d18ade6a573c9c18bd001b1c3fba1ad578f741a4218fdc794d042385f8ac02c25e1c295a2d8b9f3cb86eb4c + languageName: node + linkType: hard + +"client-only@npm:0.0.1, client-only@npm:^0.0.1": + version: 0.0.1 + resolution: "client-only@npm:0.0.1" + checksum: 10c0/9d6cfd0c19e1c96a434605added99dff48482152af791ec4172fb912a71cff9027ff174efd8cdb2160cc7f377543e0537ffc462d4f279bc4701de3f2a3c4b358 + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.1" + wrap-ansi: "npm:^7.0.0" + checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 + languageName: node + linkType: hard + +"clone-response@npm:^1.0.2": + version: 1.0.3 + resolution: "clone-response@npm:1.0.3" + dependencies: + mimic-response: "npm:^1.0.0" + checksum: 10c0/06a2b611824efb128810708baee3bd169ec9a1bf5976a5258cd7eb3f7db25f00166c6eee5961f075c7e38e194f373d4fdf86b8166ad5b9c7e82bbd2e333a6087 + languageName: node + linkType: hard + +"clsx@npm:^2.0.0, clsx@npm:^2.1.1": + version: 2.1.1 + resolution: "clsx@npm:2.1.1" + checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839 + languageName: node + linkType: hard + +"co-body@npm:^6.0.0": + version: 6.2.0 + resolution: "co-body@npm:6.2.0" + dependencies: + "@hapi/bourne": "npm:^3.0.0" + inflation: "npm:^2.0.0" + qs: "npm:^6.5.2" + raw-body: "npm:^2.3.3" + type-is: "npm:^1.6.16" + checksum: 10c0/3a320d8b324abc14031243f427d2584cfe8f61562204f1a45d0a08bba20fff7122a04883f4d312ba648fb455246030916cacb92c19c6f7b329aaf1de70045e37 + languageName: node + linkType: hard + +"co@npm:^4.6.0": + version: 4.6.0 + resolution: "co@npm:4.6.0" + checksum: 10c0/c0e85ea0ca8bf0a50cbdca82efc5af0301240ca88ebe3644a6ffb8ffe911f34d40f8fbcf8f1d52c5ddd66706abd4d3bfcd64259f1e8e2371d4f47573b0dc8c28 + languageName: node + linkType: hard + +"codsen-utils@npm:^1.6.4": + version: 1.6.4 + resolution: "codsen-utils@npm:1.6.4" + dependencies: + rfdc: "npm:^1.3.1" + checksum: 10c0/c2ca709b2c7cade614f9266df8542ecb770cad89dfcf4f17637134d4a8084554f97fbc05bce65b314f5199dfa9fba2f28cf9b704abb4e7525d4d57bec8c6b29a + languageName: node + linkType: hard + +"collect-v8-coverage@npm:^1.0.0": + version: 1.0.2 + resolution: "collect-v8-coverage@npm:1.0.2" + checksum: 10c0/ed7008e2e8b6852c5483b444a3ae6e976e088d4335a85aa0a9db2861c5f1d31bd2d7ff97a60469b3388deeba661a619753afbe201279fb159b4b9548ab8269a1 + languageName: node + linkType: hard + +"color-convert@npm:^1.9.0": + version: 1.9.3 + resolution: "color-convert@npm:1.9.3" + dependencies: + color-name: "npm:1.1.3" + checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: "npm:~1.1.4" + checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 + languageName: node + linkType: hard + +"color-name@npm:1.1.3": + version: 1.1.3 + resolution: "color-name@npm:1.1.3" + checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6 + languageName: node + linkType: hard + +"color-name@npm:^1.0.0, color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 + languageName: node + linkType: hard + +"color-string@npm:^1.9.0": + version: 1.9.1 + resolution: "color-string@npm:1.9.1" + dependencies: + color-name: "npm:^1.0.0" + simple-swizzle: "npm:^0.2.2" + checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404 + languageName: node + linkType: hard + +"color@npm:^4.2.3": + version: 4.2.3 + resolution: "color@npm:4.2.3" + dependencies: + color-convert: "npm:^2.0.1" + color-string: "npm:^1.9.0" + checksum: 10c0/7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118 + languageName: node + linkType: hard + +"colorette@npm:^2.0.16, colorette@npm:^2.0.20": + version: 2.0.20 + resolution: "colorette@npm:2.0.20" + checksum: 10c0/e94116ff33b0ff56f3b83b9ace895e5bf87c2a7a47b3401b8c3f3226e050d5ef76cf4072fb3325f9dc24d1698f9b730baf4e05eeaf861d74a1883073f4c98a40 + languageName: node + linkType: hard + +"combined-stream@npm:^1.0.8, combined-stream@npm:~1.0.6": + version: 1.0.8 + resolution: "combined-stream@npm:1.0.8" + dependencies: + delayed-stream: "npm:~1.0.0" + checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5 + languageName: node + linkType: hard + +"command-line-args@npm:^5.1.1": + version: 5.2.1 + resolution: "command-line-args@npm:5.2.1" + dependencies: + array-back: "npm:^3.1.0" + find-replace: "npm:^3.0.0" + lodash.camelcase: "npm:^4.3.0" + typical: "npm:^4.0.0" + checksum: 10c0/a4f6a23a1e420441bd1e44dee24efd12d2e49af7efe6e21eb32fca4e843ca3d5501ddebad86a4e9d99aa626dd6dcb64c04a43695388be54e3a803dbc326cc89f + languageName: node + linkType: hard + +"command-line-usage@npm:^6.1.0": + version: 6.1.3 + resolution: "command-line-usage@npm:6.1.3" + dependencies: + array-back: "npm:^4.0.2" + chalk: "npm:^2.4.2" + table-layout: "npm:^1.0.2" + typical: "npm:^5.2.0" + checksum: 10c0/23d7577ccb6b6c004e67bb6a9a8cb77282ae7b7507ae92249a9548a39050b7602fef70f124c765000ab23b8f7e0fb7a3352419ab73ea42a2d9ea32f520cdfe9e + languageName: node + linkType: hard + +"commander@npm:^13.1.0": + version: 13.1.0 + resolution: "commander@npm:13.1.0" + checksum: 10c0/7b8c5544bba704fbe84b7cab2e043df8586d5c114a4c5b607f83ae5060708940ed0b5bd5838cf8ce27539cde265c1cbd59ce3c8c6b017ed3eec8943e3a415164 + languageName: node + linkType: hard + +"commander@npm:^6.2.1": + version: 6.2.1 + resolution: "commander@npm:6.2.1" + checksum: 10c0/85748abd9d18c8bc88febed58b98f66b7c591d9b5017cad459565761d7b29ca13b7783ea2ee5ce84bf235897333706c4ce29adf1ce15c8252780e7000e2ce9ea + languageName: node + linkType: hard + +"commander@npm:^7.2.0": + version: 7.2.0 + resolution: "commander@npm:7.2.0" + checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a + languageName: node + linkType: hard + +"commander@npm:^9.4.1": + version: 9.5.0 + resolution: "commander@npm:9.5.0" + checksum: 10c0/5f7784fbda2aaec39e89eb46f06a999e00224b3763dc65976e05929ec486e174fe9aac2655f03ba6a5e83875bd173be5283dc19309b7c65954701c02025b3c1d + languageName: node + linkType: hard + +"common-log-format@npm:^1.0.0": + version: 1.0.0 + resolution: "common-log-format@npm:1.0.0" + bin: + clf: bin/cli.js + checksum: 10c0/05770e7d52252f261eb58b6a8baf939454f3b19a310dbf2997e56c83fbd1678bc5afa723f78c6f3f4636af30b09f86aeeba0d5b302a4bbfe40445a0c1fe73e86 + languageName: node + linkType: hard + +"common-tags@npm:1.8.0": + version: 1.8.0 + resolution: "common-tags@npm:1.8.0" + checksum: 10c0/851f2430c653e76602c23f4a851837c507d1e7d11679474856346a265307872c9a62da7cfc001a36871aa73587dac14e60f5397c012b6ff5d0669e4f81af037e + languageName: node + linkType: hard + +"common-tags@npm:^1.8.0": + version: 1.8.2 + resolution: "common-tags@npm:1.8.2" + checksum: 10c0/23efe47ff0a1a7c91489271b3a1e1d2a171c12ec7f9b35b29b2fce51270124aff0ec890087e2bc2182c1cb746e232ab7561aaafe05f1e7452aea733d2bfe3f63 + languageName: node + linkType: hard + +"commondir@npm:^1.0.1": + version: 1.0.1 + resolution: "commondir@npm:1.0.1" + checksum: 10c0/33a124960e471c25ee19280c9ce31ccc19574b566dc514fe4f4ca4c34fa8b0b57cf437671f5de380e11353ea9426213fca17687dd2ef03134fea2dbc53809fd6 + languageName: node + linkType: hard + +"compressible@npm:^2.0.0": + version: 2.0.18 + resolution: "compressible@npm:2.0.18" + dependencies: + mime-db: "npm:>= 1.43.0 < 2" + checksum: 10c0/8a03712bc9f5b9fe530cc5a79e164e665550d5171a64575d7dcf3e0395d7b4afa2d79ab176c61b5b596e28228b350dd07c1a2a6ead12fd81d1b6cd632af2fef7 + languageName: node + linkType: hard + +"compute-scroll-into-view@npm:^3.1.0": + version: 3.1.1 + resolution: "compute-scroll-into-view@npm:3.1.1" + checksum: 10c0/59761ed62304a9599b52ad75d0d6fbf0669ee2ab7dd472fdb0ad9da36628414c014dea7b5810046560180ad30ffec52a953d19297f66a1d4f3aa0999b9d2521d + languageName: node + linkType: hard + +"computeds@npm:^0.0.1": + version: 0.0.1 + resolution: "computeds@npm:0.0.1" + checksum: 10c0/8a8736f1f43e4a99286519785d71a10ece8f444a2fa1fc2fe1f03dedf63f3477b45094002c85a2826f7631759c9f5a00b4ace47456997f253073fc525e8983de + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f + languageName: node + linkType: hard + +"confbox@npm:^0.1.8": + version: 0.1.8 + resolution: "confbox@npm:0.1.8" + checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418 + languageName: node + linkType: hard + +"config-chain@npm:^1.1.11": + version: 1.1.13 + resolution: "config-chain@npm:1.1.13" + dependencies: + ini: "npm:^1.3.4" + proto-list: "npm:~1.2.1" + checksum: 10c0/39d1df18739d7088736cc75695e98d7087aea43646351b028dfabd5508d79cf6ef4c5bcd90471f52cd87ae470d1c5490c0a8c1a292fbe6ee9ff688061ea0963e + languageName: node + linkType: hard + +"configstore@npm:^7.0.0": + version: 7.0.0 + resolution: "configstore@npm:7.0.0" + dependencies: + atomically: "npm:^2.0.3" + dot-prop: "npm:^9.0.0" + graceful-fs: "npm:^4.2.11" + xdg-basedir: "npm:^5.1.0" + checksum: 10c0/46639ddcebe94e58ab903d1bcfaddf297585469ee11fb2900975531cf6e59f495fa1324bf594d6bf13c5daf02e1110e9f0634caecc11203c52283ff26e2a4d8b + languageName: node + linkType: hard + +"content-disposition@npm:~0.5.2": + version: 0.5.4 + resolution: "content-disposition@npm:0.5.4" + dependencies: + safe-buffer: "npm:5.2.1" + checksum: 10c0/bac0316ebfeacb8f381b38285dc691c9939bf0a78b0b7c2d5758acadad242d04783cee5337ba7d12a565a19075af1b3c11c728e1e4946de73c6ff7ce45f3f1bb + languageName: node + linkType: hard + +"content-type@npm:^1.0.4": + version: 1.0.5 + resolution: "content-type@npm:1.0.5" + checksum: 10c0/b76ebed15c000aee4678c3707e0860cb6abd4e680a598c0a26e17f0bfae723ec9cc2802f0ff1bc6e4d80603719010431d2231018373d4dde10f9ccff9dadf5af + languageName: node + linkType: hard + +"contentstack@npm:^3.23.0": + version: 3.24.1 + resolution: "contentstack@npm:3.24.1" + dependencies: + "@contentstack/utils": "npm:^1.3.15" + es6-promise: "npm:^4.2.8" + fetch-mock: "npm:^12.2.0" + localStorage: "npm:1.0.4" + qs: "npm:^6.14.0" + checksum: 10c0/5b82c0e94c3bbeebbddb7ad27ff154aee298ebba5269eb544be263103f6b27a862c3e6d0f96f44c4e514589b3fa5a721da9bdc4421c44ef94226a8c13e566f92 + languageName: node + linkType: hard + +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 10c0/8f2f7a27a1a011cc6cc88cc4da2d7d0cfa5ee0369508baae3d98c260bb3ac520691464e5bbe4ae7cdf09860c1d69ecc6f70c63c6e7c7f7e3f18ec08484dc7d9b + languageName: node + linkType: hard + +"cookie@npm:0.6.0": + version: 0.6.0 + resolution: "cookie@npm:0.6.0" + checksum: 10c0/f2318b31af7a31b4ddb4a678d024514df5e705f9be5909a192d7f116cfb6d45cbacf96a473fa733faa95050e7cff26e7832bb3ef94751592f1387b71c8956686 + languageName: node + linkType: hard + +"cookies@npm:~0.9.0": + version: 0.9.1 + resolution: "cookies@npm:0.9.1" + dependencies: + depd: "npm:~2.0.0" + keygrip: "npm:~1.1.0" + checksum: 10c0/3ffa1c0e992b62ee119adae4dd2ddd4a89166fa5434cd9bd9ff84ec4d2f14dfe2318a601280abfe32a4f64f884ec9345fb1912e488b002d188d2efa0d3919ba3 + languageName: node + linkType: hard + +"copy-anything@npm:^2.0.1": + version: 2.0.6 + resolution: "copy-anything@npm:2.0.6" + dependencies: + is-what: "npm:^3.14.1" + checksum: 10c0/2702998a8cc015f9917385b7f16b0d85f1f6e5e2fd34d99f14df584838f492f49aa0c390d973684c687e895c5c58d08b308a0400ac3e1e3d6fa1e5884a5402ad + languageName: node + linkType: hard + +"copy-anything@npm:^3.0.2": + version: 3.0.5 + resolution: "copy-anything@npm:3.0.5" + dependencies: + is-what: "npm:^4.1.8" + checksum: 10c0/01eadd500c7e1db71d32d95a3bfaaedcb839ef891c741f6305ab0461398056133de08f2d1bf4c392b364e7bdb7ce498513896e137a7a183ac2516b065c28a4fe + languageName: node + linkType: hard + +"copy-to@npm:^2.0.1": + version: 2.0.1 + resolution: "copy-to@npm:2.0.1" + checksum: 10c0/ee10fa7ab257ccc1fada75d8571312f7a7eb2fa6a3129d89c6e3afc9884e0eb0cbb79140a92671fd3e35fa285b1e7f27f5422f885494ff14cf4c8c56e62d9daf + languageName: node + linkType: hard + +"core-js-compat@npm:^3.40.0": + version: 3.40.0 + resolution: "core-js-compat@npm:3.40.0" + dependencies: + browserslist: "npm:^4.24.3" + checksum: 10c0/44f6e88726fe266a5be9581a79766800478a8d5c492885f2d4c2a4e2babd9b06bc1689d5340d3a61ae7332f990aff2e83b6203ff8773137a627cfedfbeefabeb + languageName: node + linkType: hard + +"core-util-is@npm:1.0.2": + version: 1.0.2 + resolution: "core-util-is@npm:1.0.2" + checksum: 10c0/980a37a93956d0de8a828ce508f9b9e3317039d68922ca79995421944146700e4aaf490a6dbfebcb1c5292a7184600c7710b957d724be1e37b8254c6bc0fe246 + languageName: node + linkType: hard + +"core-util-is@npm:~1.0.0": + version: 1.0.3 + resolution: "core-util-is@npm:1.0.3" + checksum: 10c0/90a0e40abbddfd7618f8ccd63a74d88deea94e77d0e8dbbea059fa7ebebb8fbb4e2909667fe26f3a467073de1a542ebe6ae4c73a73745ac5833786759cd906c9 + languageName: node + linkType: hard + +"cosmiconfig@npm:^8.1.3": + version: 8.3.6 + resolution: "cosmiconfig@npm:8.3.6" + dependencies: + import-fresh: "npm:^3.3.0" + js-yaml: "npm:^4.1.0" + parse-json: "npm:^5.2.0" + path-type: "npm:^4.0.0" + peerDependencies: + typescript: ">=4.9.5" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/0382a9ed13208f8bfc22ca2f62b364855207dffdb73dc26e150ade78c3093f1cf56172df2dd460c8caf2afa91c0ed4ec8a88c62f8f9cd1cf423d26506aa8797a + languageName: node + linkType: hard + +"create-jest@npm:^29.7.0": + version: 29.7.0 + resolution: "create-jest@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + exit: "npm:^0.1.2" + graceful-fs: "npm:^4.2.9" + jest-config: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + prompts: "npm:^2.0.1" + bin: + create-jest: bin/create-jest.js + checksum: 10c0/e7e54c280692470d3398f62a6238fd396327e01c6a0757002833f06d00afc62dd7bfe04ff2b9cd145264460e6b4d1eb8386f2925b7e567f97939843b7b0e812f + languageName: node + linkType: hard + +"create-mixin@npm:^3.0.0": + version: 3.0.0 + resolution: "create-mixin@npm:3.0.0" + checksum: 10c0/0ca0a8f6792bf33cde815b6ff36e1bb3564b8d2f0ccfd2643709ab644c5fe8467a0e9c8435d2d86e2e32988db950123bacf10a93cdadeeff23cc925c8395ad08 + languageName: node + linkType: hard + +"create-require@npm:^1.1.0": + version: 1.1.1 + resolution: "create-require@npm:1.1.1" + checksum: 10c0/157cbc59b2430ae9a90034a5f3a1b398b6738bf510f713edc4d4e45e169bc514d3d99dd34d8d01ca7ae7830b5b8b537e46ae8f3c8f932371b0875c0151d7ec91 + languageName: node + linkType: hard + +"cross-fetch@npm:3.1.5": + version: 3.1.5 + resolution: "cross-fetch@npm:3.1.5" + dependencies: + node-fetch: "npm:2.6.7" + checksum: 10c0/29b457f8df11b46b8388a53c947de80bfe04e6466a59c1628c9870b48505b90ec1d28a05b543a0247416a99f1cfe147d1efe373afdeb46a192334ba5fe91b871 + languageName: node + linkType: hard + +"cross-fetch@npm:^3.1.5": + version: 3.2.0 + resolution: "cross-fetch@npm:3.2.0" + dependencies: + node-fetch: "npm:^2.7.0" + checksum: 10c0/d8596adf0269130098a676f6739a0922f3cc7b71cc89729925411ebe851a87026171c82ea89154c4811c9867c01c44793205a52e618ce2684650218c7fbeeb9f + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": + version: 7.0.6 + resolution: "cross-spawn@npm:7.0.6" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 + languageName: node + linkType: hard + +"css-select@npm:^5.1.0": + version: 5.1.0 + resolution: "css-select@npm:5.1.0" + dependencies: + boolbase: "npm:^1.0.0" + css-what: "npm:^6.1.0" + domhandler: "npm:^5.0.2" + domutils: "npm:^3.0.1" + nth-check: "npm:^2.0.1" + checksum: 10c0/551c60dba5b54054741032c1793b5734f6ba45e23ae9e82761a3c0ed1acbb8cfedfa443aaba3a3c1a54cac12b456d2012a09d2cd5f0e82e430454c1b9d84d500 + languageName: node + linkType: hard + +"css-tree@npm:^2.3.1": + version: 2.3.1 + resolution: "css-tree@npm:2.3.1" + dependencies: + mdn-data: "npm:2.0.30" + source-map-js: "npm:^1.0.1" + checksum: 10c0/6f8c1a11d5e9b14bf02d10717fc0351b66ba12594166f65abfbd8eb8b5b490dd367f5c7721db241a3c792d935fc6751fbc09f7e1598d421477ad9fadc30f4f24 + languageName: node + linkType: hard + +"css-tree@npm:~2.2.0": + version: 2.2.1 + resolution: "css-tree@npm:2.2.1" + dependencies: + mdn-data: "npm:2.0.28" + source-map-js: "npm:^1.0.1" + checksum: 10c0/47e87b0f02f8ac22f57eceb65c58011dd142d2158128882a0bf963cf2eabb81a4ebbc2e3790c8289be7919fa8b83750c7b69272bd66772c708143b772ba3c186 + languageName: node + linkType: hard + +"css-what@npm:^6.1.0": + version: 6.1.0 + resolution: "css-what@npm:6.1.0" + checksum: 10c0/a09f5a6b14ba8dcf57ae9a59474722e80f20406c53a61e9aedb0eedc693b135113ffe2983f4efc4b5065ae639442e9ae88df24941ef159c218b231011d733746 + languageName: node + linkType: hard + +"css.escape@npm:^1.5.1": + version: 1.5.1 + resolution: "css.escape@npm:1.5.1" + checksum: 10c0/5e09035e5bf6c2c422b40c6df2eb1529657a17df37fda5d0433d722609527ab98090baf25b13970ca754079a0f3161dd3dfc0e743563ded8cfa0749d861c1525 + languageName: node + linkType: hard + +"cssesc@npm:^3.0.0": + version: 3.0.0 + resolution: "cssesc@npm:3.0.0" + bin: + cssesc: bin/cssesc + checksum: 10c0/6bcfd898662671be15ae7827120472c5667afb3d7429f1f917737f3bf84c4176003228131b643ae74543f17a394446247df090c597bb9a728cce298606ed0aa7 + languageName: node + linkType: hard + +"csso@npm:^5.0.5": + version: 5.0.5 + resolution: "csso@npm:5.0.5" + dependencies: + css-tree: "npm:~2.2.0" + checksum: 10c0/ab4beb1e97dd7e207c10e9925405b45f15a6cd1b4880a8686ad573aa6d476aed28b4121a666cffd26c37a26179f7b54741f7c257543003bfb244d06a62ad569b + languageName: node + linkType: hard + +"cssom@npm:^0.5.0": + version: 0.5.0 + resolution: "cssom@npm:0.5.0" + checksum: 10c0/8c4121c243baf0678c65dcac29b201ff0067dfecf978de9d5c83b2ff127a8fdefd2bfd54577f5ad8c80ed7d2c8b489ae01c82023545d010c4ecb87683fb403dd + languageName: node + linkType: hard + +"cssom@npm:~0.3.6": + version: 0.3.8 + resolution: "cssom@npm:0.3.8" + checksum: 10c0/d74017b209440822f9e24d8782d6d2e808a8fdd58fa626a783337222fe1c87a518ba944d4c88499031b4786e68772c99dfae616638d71906fe9f203aeaf14411 + languageName: node + linkType: hard + +"cssstyle@npm:^2.3.0": + version: 2.3.0 + resolution: "cssstyle@npm:2.3.0" + dependencies: + cssom: "npm:~0.3.6" + checksum: 10c0/863400da2a458f73272b9a55ba7ff05de40d850f22eb4f37311abebd7eff801cf1cd2fb04c4c92b8c3daed83fe766e52e4112afb7bc88d86c63a9c2256a7d178 + languageName: node + linkType: hard + +"csstype@npm:^3.0.2": + version: 3.1.3 + resolution: "csstype@npm:3.1.3" + checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248 + languageName: node + linkType: hard + +"cypress@npm:^13.6.6": + version: 13.17.0 + resolution: "cypress@npm:13.17.0" + dependencies: + "@cypress/request": "npm:^3.0.6" + "@cypress/xvfb": "npm:^1.2.4" + "@types/sinonjs__fake-timers": "npm:8.1.1" + "@types/sizzle": "npm:^2.3.2" + arch: "npm:^2.2.0" + blob-util: "npm:^2.0.2" + bluebird: "npm:^3.7.2" + buffer: "npm:^5.7.1" + cachedir: "npm:^2.3.0" + chalk: "npm:^4.1.0" + check-more-types: "npm:^2.24.0" + ci-info: "npm:^4.0.0" + cli-cursor: "npm:^3.1.0" + cli-table3: "npm:~0.6.1" + commander: "npm:^6.2.1" + common-tags: "npm:^1.8.0" + dayjs: "npm:^1.10.4" + debug: "npm:^4.3.4" + enquirer: "npm:^2.3.6" + eventemitter2: "npm:6.4.7" + execa: "npm:4.1.0" + executable: "npm:^4.1.1" + extract-zip: "npm:2.0.1" + figures: "npm:^3.2.0" + fs-extra: "npm:^9.1.0" + getos: "npm:^3.2.1" + is-installed-globally: "npm:~0.4.0" + lazy-ass: "npm:^1.6.0" + listr2: "npm:^3.8.3" + lodash: "npm:^4.17.21" + log-symbols: "npm:^4.0.0" + minimist: "npm:^1.2.8" + ospath: "npm:^1.2.2" + pretty-bytes: "npm:^5.6.0" + process: "npm:^0.11.10" + proxy-from-env: "npm:1.0.0" + request-progress: "npm:^3.0.0" + semver: "npm:^7.5.3" + supports-color: "npm:^8.1.1" + tmp: "npm:~0.2.3" + tree-kill: "npm:1.2.2" + untildify: "npm:^4.0.0" + yauzl: "npm:^2.10.0" + bin: + cypress: bin/cypress + checksum: 10c0/159ce620e32d2785082aaa1f4f30f203dcec466df4a8e80dfa299035358772fd513c35820070ba8db52e2bf58078a372ff7009068e26967f993656e7da62e221 + languageName: node + linkType: hard + +"damerau-levenshtein@npm:^1.0.8": + version: 1.0.8 + resolution: "damerau-levenshtein@npm:1.0.8" + checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 + languageName: node + linkType: hard + +"dashdash@npm:^1.12.0": + version: 1.14.1 + resolution: "dashdash@npm:1.14.1" + dependencies: + assert-plus: "npm:^1.0.0" + checksum: 10c0/64589a15c5bd01fa41ff7007e0f2c6552c5ef2028075daa16b188a3721f4ba001841bf306dfc2eee6e2e6e7f76b38f5f17fb21fa847504192290ffa9e150118a + languageName: node + linkType: hard + +"data-urls@npm:^3.0.2": + version: 3.0.2 + resolution: "data-urls@npm:3.0.2" + dependencies: + abab: "npm:^2.0.6" + whatwg-mimetype: "npm:^3.0.0" + whatwg-url: "npm:^11.0.0" + checksum: 10c0/051c3aaaf3e961904f136aab095fcf6dff4db23a7fc759dd8ba7b3e6ba03fc07ef608086caad8ab910d864bd3b5e57d0d2f544725653d77c96a2c971567045f4 + languageName: node + linkType: hard + +"data-view-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "data-view-buffer@npm:1.0.2" + dependencies: + call-bound: "npm:^1.0.3" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.2" + checksum: 10c0/7986d40fc7979e9e6241f85db8d17060dd9a71bd53c894fa29d126061715e322a4cd47a00b0b8c710394854183d4120462b980b8554012acc1c0fa49df7ad38c + languageName: node + linkType: hard + +"data-view-byte-length@npm:^1.0.2": + version: 1.0.2 + resolution: "data-view-byte-length@npm:1.0.2" + dependencies: + call-bound: "npm:^1.0.3" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.2" + checksum: 10c0/f8a4534b5c69384d95ac18137d381f18a5cfae1f0fc1df0ef6feef51ef0d568606d970b69e02ea186c6c0f0eac77fe4e6ad96fec2569cc86c3afcc7475068c55 + languageName: node + linkType: hard + +"data-view-byte-offset@npm:^1.0.1": + version: 1.0.1 + resolution: "data-view-byte-offset@npm:1.0.1" + dependencies: + call-bound: "npm:^1.0.2" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 10c0/fa7aa40078025b7810dcffc16df02c480573b7b53ef1205aa6a61533011005c1890e5ba17018c692ce7c900212b547262d33279fde801ad9843edc0863bf78c4 + languageName: node + linkType: hard + +"date-fns-jalali@npm:^4.1.0-0": + version: 4.1.0-0 + resolution: "date-fns-jalali@npm:4.1.0-0" + checksum: 10c0/f9ad98d9f7e8e5abe0d070dc806b0c8baded2b1208626c42e92cbd2605b5171f5714d6b79b20cc2666267d821699244c9d0b5e93274106cf57d6232da77596ed + languageName: node + linkType: hard + +"date-fns@npm:^4.1.0": + version: 4.1.0 + resolution: "date-fns@npm:4.1.0" + checksum: 10c0/b79ff32830e6b7faa009590af6ae0fb8c3fd9ffad46d930548fbb5acf473773b4712ae887e156ba91a7b3dc30591ce0f517d69fd83bd9c38650fdc03b4e0bac8 + languageName: node + linkType: hard + +"dayjs@npm:^1.10.4, dayjs@npm:^1.11.10": + version: 1.11.13 + resolution: "dayjs@npm:1.11.13" + checksum: 10c0/a3caf6ac8363c7dade9d1ee797848ddcf25c1ace68d9fe8678ecf8ba0675825430de5d793672ec87b24a69bf04a1544b176547b2539982275d5542a7955f35b7 + languageName: node + linkType: hard + +"de-indent@npm:^1.0.2": + version: 1.0.2 + resolution: "de-indent@npm:1.0.2" + checksum: 10c0/7058ce58abd6dfc123dd204e36be3797abd419b59482a634605420f47ae97639d0c183ec5d1b904f308a01033f473673897afc2bd59bc620ebf1658763ef4291 + languageName: node + linkType: hard + +"debug@npm:*, debug@npm:4, debug@npm:4.4.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.7, debug@npm:^4.4.0": + version: 4.4.0 + resolution: "debug@npm:4.4.0" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de + languageName: node + linkType: hard + +"debug@npm:2.6.9": + version: 2.6.9 + resolution: "debug@npm:2.6.9" + dependencies: + ms: "npm:2.0.0" + checksum: 10c0/121908fb839f7801180b69a7e218a40b5a0b718813b886b7d6bdb82001b931c938e2941d1e4450f33a1b1df1da653f5f7a0440c197f29fbf8a6e9d45ff6ef589 + languageName: node + linkType: hard + +"debug@npm:4.1.1": + version: 4.1.1 + resolution: "debug@npm:4.1.1" + dependencies: + ms: "npm:^2.1.1" + checksum: 10c0/399e98c779ba4e71537497f10caf6390646b69330ff8a455427acce04f1ce8d8cd018e1804fdcca772177666fdcd888dd3672bb8f9986c1d785a6c2b9805f370 + languageName: node + linkType: hard + +"debug@npm:4.3.4": + version: 4.3.4 + resolution: "debug@npm:4.3.4" + dependencies: + ms: "npm:2.1.2" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/cedbec45298dd5c501d01b92b119cd3faebe5438c3917ff11ae1bff86a6c722930ac9c8659792824013168ba6db7c4668225d845c633fbdafbbf902a6389f736 + languageName: node + linkType: hard + +"debug@npm:^3.1.0, debug@npm:^3.2.7": + version: 3.2.7 + resolution: "debug@npm:3.2.7" + dependencies: + ms: "npm:^2.1.1" + checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a + languageName: node + linkType: hard + +"decimal.js@npm:10, decimal.js@npm:^10.4.2": + version: 10.5.0 + resolution: "decimal.js@npm:10.5.0" + checksum: 10c0/785c35279df32762143914668df35948920b6c1c259b933e0519a69b7003fc0a5ed2a766b1e1dda02574450c566b21738a45f15e274b47c2ac02072c0d1f3ac3 + languageName: node + linkType: hard + +"decompress-response@npm:^5.0.0": + version: 5.0.0 + resolution: "decompress-response@npm:5.0.0" + dependencies: + mimic-response: "npm:^2.0.0" + checksum: 10c0/d76c4fc4fa21f4b39a7bf711a655b2b56d37b44c99754c3fb44d64b83a8132cfd916c81951477c94478d2cba47058cf8c73da26bb999b07f1b9c8d466a2b4346 + languageName: node + linkType: hard + +"dedent@npm:^1.0.0": + version: 1.5.3 + resolution: "dedent@npm:1.5.3" + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + checksum: 10c0/d94bde6e6f780be4da4fd760288fcf755ec368872f4ac5218197200d86430aeb8d90a003a840bff1c20221188e3f23adced0119cb811c6873c70d0ac66d12832 + languageName: node + linkType: hard + +"deep-eql@npm:^4.1.3": + version: 4.1.4 + resolution: "deep-eql@npm:4.1.4" + dependencies: + type-detect: "npm:^4.0.0" + checksum: 10c0/264e0613493b43552fc908f4ff87b8b445c0e6e075656649600e1b8a17a57ee03e960156fce7177646e4d2ddaf8e5ee616d76bd79929ff593e5c79e4e5e6c517 + languageName: node + linkType: hard + +"deep-eql@npm:^5.0.1": + version: 5.0.2 + resolution: "deep-eql@npm:5.0.2" + checksum: 10c0/7102cf3b7bb719c6b9c0db2e19bf0aa9318d141581befe8c7ce8ccd39af9eaa4346e5e05adef7f9bd7015da0f13a3a25dcfe306ef79dc8668aedbecb658dd247 + languageName: node + linkType: hard + +"deep-equal@npm:~1.0.1": + version: 1.0.1 + resolution: "deep-equal@npm:1.0.1" + checksum: 10c0/bef838ef9824e124d10335deb9c7540bfc9f2f0eab17ad1bb870d0eee83ee4e7e6f6f892e5eebc2bd82759a76676926ad5246180097e28e57752176ff7dae888 + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0, deep-extend@npm:~0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 10c0/1c6b0abcdb901e13a44c7d699116d3d4279fdb261983122a3783e7273844d5f2537dc2e1c454a23fcf645917f93fbf8d07101c1d03c015a87faa662755212566 + languageName: node + linkType: hard + +"deep-is@npm:^0.1.3": + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c + languageName: node + linkType: hard + +"deepmerge@npm:^4.2.2, deepmerge@npm:^4.3.1": + version: 4.3.1 + resolution: "deepmerge@npm:4.3.1" + checksum: 10c0/e53481aaf1aa2c4082b5342be6b6d8ad9dfe387bc92ce197a66dea08bd4265904a087e75e464f14d1347cf2ac8afe1e4c16b266e0561cc5df29382d3c5f80044 + languageName: node + linkType: hard + +"deepsignal@npm:^1.5.0": + version: 1.6.0 + resolution: "deepsignal@npm:1.6.0" + peerDependencies: + "@preact/signals": ^1.1.4 || ^2.0.0 + "@preact/signals-core": ^1.5.1 + "@preact/signals-react": ^1.3.8 || ^2.0.0 || ^3.0.0 + preact: ^10.16.0 + peerDependenciesMeta: + "@preact/signals": + optional: true + "@preact/signals-core": + optional: true + "@preact/signals-react": + optional: true + preact: + optional: true + checksum: 10c0/76664442ba8b9e33d54bcbf6131e19712d4b0b9d5705213c27a09bff9fb32c7772053047f143450f158728d95de09ead31ed5fe6917a70c30b70fdd1e3c2e60b + languageName: node + linkType: hard + +"defer-to-connect@npm:^2.0.0": + version: 2.0.1 + resolution: "defer-to-connect@npm:2.0.1" + checksum: 10c0/625ce28e1b5ad10cf77057b9a6a727bf84780c17660f6644dab61dd34c23de3001f03cedc401f7d30a4ed9965c2e8a7336e220a329146f2cf85d4eddea429782 + languageName: node + linkType: hard + +"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4": + version: 1.1.4 + resolution: "define-data-property@npm:1.1.4" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.0.1" + checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 + languageName: node + linkType: hard + +"define-lazy-prop@npm:^2.0.0": + version: 2.0.0 + resolution: "define-lazy-prop@npm:2.0.0" + checksum: 10c0/db6c63864a9d3b7dc9def55d52764968a5af296de87c1b2cc71d8be8142e445208071953649e0386a8cc37cfcf9a2067a47207f1eb9ff250c2a269658fdae422 + languageName: node + linkType: hard + +"define-properties@npm:^1.1.3, define-properties@npm:^1.2.1": + version: 1.2.1 + resolution: "define-properties@npm:1.2.1" + dependencies: + define-data-property: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.0" + object-keys: "npm:^1.1.1" + checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3 + languageName: node + linkType: hard + +"delayed-stream@npm:~1.0.0": + version: 1.0.0 + resolution: "delayed-stream@npm:1.0.0" + checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19 + languageName: node + linkType: hard + +"delegates@npm:^1.0.0": + version: 1.0.0 + resolution: "delegates@npm:1.0.0" + checksum: 10c0/ba05874b91148e1db4bf254750c042bf2215febd23a6d3cda2e64896aef79745fbd4b9996488bd3cafb39ce19dbce0fd6e3b6665275638befffe1c9b312b91b5 + languageName: node + linkType: hard + +"depd@npm:2.0.0, depd@npm:^2.0.0, depd@npm:~2.0.0": + version: 2.0.0 + resolution: "depd@npm:2.0.0" + checksum: 10c0/58bd06ec20e19529b06f7ad07ddab60e504d9e0faca4bd23079fac2d279c3594334d736508dc350e06e510aba5e22e4594483b3a6562ce7c17dd797f4cc4ad2c + languageName: node + linkType: hard + +"depd@npm:~1.1.2": + version: 1.1.2 + resolution: "depd@npm:1.1.2" + checksum: 10c0/acb24aaf936ef9a227b6be6d495f0d2eb20108a9a6ad40585c5bda1a897031512fef6484e4fdbb80bd249fdaa82841fa1039f416ece03188e677ba11bcfda249 + languageName: node + linkType: hard + +"dequal@npm:^2.0.2, dequal@npm:^2.0.3": + version: 2.0.3 + resolution: "dequal@npm:2.0.3" + checksum: 10c0/f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888 + languageName: node + linkType: hard + +"destroy@npm:^1.0.4": + version: 1.2.0 + resolution: "destroy@npm:1.2.0" + checksum: 10c0/bd7633942f57418f5a3b80d5cb53898127bcf53e24cdf5d5f4396be471417671f0fee48a4ebe9a1e9defbde2a31280011af58a57e090ff822f589b443ed4e643 + languageName: node + linkType: hard + +"detect-indent@npm:^7.0.1": + version: 7.0.1 + resolution: "detect-indent@npm:7.0.1" + checksum: 10c0/47b6e3e3dda603c386e73b129f3e84844ae59bc2615f5072becf3cc02eab400bed5a4e6379c49d0b18cf630e80c2b07e87e0038b777addbc6ef793ad77dd05bc + languageName: node + linkType: hard + +"detect-libc@npm:^1.0.3": + version: 1.0.3 + resolution: "detect-libc@npm:1.0.3" + bin: + detect-libc: ./bin/detect-libc.js + checksum: 10c0/4da0deae9f69e13bc37a0902d78bf7169480004b1fed3c19722d56cff578d16f0e11633b7fbf5fb6249181236c72e90024cbd68f0b9558ae06e281f47326d50d + languageName: node + linkType: hard + +"detect-libc@npm:^2.0.3": + version: 2.0.3 + resolution: "detect-libc@npm:2.0.3" + checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7 + languageName: node + linkType: hard + +"detect-newline@npm:^3.0.0": + version: 3.1.0 + resolution: "detect-newline@npm:3.1.0" + checksum: 10c0/c38cfc8eeb9fda09febb44bcd85e467c970d4e3bf526095394e5a4f18bc26dd0cf6b22c69c1fa9969261521c593836db335c2795218f6d781a512aea2fb8209d + languageName: node + linkType: hard + +"detect-newline@npm:^4.0.0": + version: 4.0.1 + resolution: "detect-newline@npm:4.0.1" + checksum: 10c0/1cc1082e88ad477f30703ae9f23bd3e33816ea2db6a35333057e087d72d466f5a777809b71f560118ecff935d2c712f5b59e1008a8b56a900909d8fd4621c603 + languageName: node + linkType: hard + +"detect-node-es@npm:^1.1.0": + version: 1.1.0 + resolution: "detect-node-es@npm:1.1.0" + checksum: 10c0/e562f00de23f10c27d7119e1af0e7388407eb4b06596a25f6d79a360094a109ff285de317f02b090faae093d314cf6e73ac3214f8a5bb3a0def5bece94557fbe + languageName: node + linkType: hard + +"detect-package-manager@npm:^2.0.1": + version: 2.0.1 + resolution: "detect-package-manager@npm:2.0.1" + dependencies: + execa: "npm:^5.1.1" + checksum: 10c0/56ffd65228d1ff3ead5ea7f8ab951a517a29270de27510b790c9a8b77d4f36efbd61493e170ca77ee3dc13cbb5218583ce65b78ad14a59dc48565c9bcbbf3c71 + languageName: node + linkType: hard + +"devtools-protocol@npm:0.0.1045489": + version: 0.0.1045489 + resolution: "devtools-protocol@npm:0.0.1045489" + checksum: 10c0/908793a0c10b3f40981c3564c02844493c667d4f16c8a2471be76ccab8e85e0dd97413eb0e51bc737e0aa37779b6d74678ba123b9d6a23ba4cdff716950a7b85 + languageName: node + linkType: hard + +"diff-sequences@npm:^29.6.3": + version: 29.6.3 + resolution: "diff-sequences@npm:29.6.3" + checksum: 10c0/32e27ac7dbffdf2fb0eb5a84efd98a9ad084fbabd5ac9abb8757c6770d5320d2acd172830b28c4add29bb873d59420601dfc805ac4064330ce59b1adfd0593b2 + languageName: node + linkType: hard + +"diff@npm:^4.0.1": + version: 4.0.2 + resolution: "diff@npm:4.0.2" + checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + languageName: node + linkType: hard + +"dir-glob@npm:^3.0.1": + version: 3.0.1 + resolution: "dir-glob@npm:3.0.1" + dependencies: + path-type: "npm:^4.0.0" + checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c + languageName: node + linkType: hard + +"doctrine@npm:^2.1.0": + version: 2.1.0 + resolution: "doctrine@npm:2.1.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac + languageName: node + linkType: hard + +"doctrine@npm:^3.0.0": + version: 3.0.0 + resolution: "doctrine@npm:3.0.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 + languageName: node + linkType: hard + +"dom-accessibility-api@npm:^0.5.9": + version: 0.5.16 + resolution: "dom-accessibility-api@npm:0.5.16" + checksum: 10c0/b2c2eda4fae568977cdac27a9f0c001edf4f95a6a6191dfa611e3721db2478d1badc01db5bb4fa8a848aeee13e442a6c2a4386d65ec65a1436f24715a2f8d053 + languageName: node + linkType: hard + +"dom-accessibility-api@npm:^0.6.3": + version: 0.6.3 + resolution: "dom-accessibility-api@npm:0.6.3" + checksum: 10c0/10bee5aa514b2a9a37c87cd81268db607a2e933a050074abc2f6fa3da9080ebed206a320cbc123567f2c3087d22292853bdfdceaffdd4334ffe2af9510b29360 + languageName: node + linkType: hard + +"dom-serializer@npm:^2.0.0": + version: 2.0.0 + resolution: "dom-serializer@npm:2.0.0" + dependencies: + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.2" + entities: "npm:^4.2.0" + checksum: 10c0/d5ae2b7110ca3746b3643d3ef60ef823f5f078667baf530cec096433f1627ec4b6fa8c072f09d079d7cda915fd2c7bc1b7b935681e9b09e591e1e15f4040b8e2 + languageName: node + linkType: hard + +"domelementtype@npm:^2.3.0": + version: 2.3.0 + resolution: "domelementtype@npm:2.3.0" + checksum: 10c0/686f5a9ef0fff078c1412c05db73a0dce096190036f33e400a07e2a4518e9f56b1e324f5c576a0a747ef0e75b5d985c040b0d51945ce780c0dd3c625a18cd8c9 + languageName: node + linkType: hard + +"domexception@npm:^4.0.0": + version: 4.0.0 + resolution: "domexception@npm:4.0.0" + dependencies: + webidl-conversions: "npm:^7.0.0" + checksum: 10c0/774277cd9d4df033f852196e3c0077a34dbd15a96baa4d166e0e47138a80f4c0bdf0d94e4703e6ff5883cec56bb821a6fff84402d8a498e31de7c87eb932a294 + languageName: node + linkType: hard + +"domhandler@npm:5.0.3, domhandler@npm:^5.0.2, domhandler@npm:^5.0.3": + version: 5.0.3 + resolution: "domhandler@npm:5.0.3" + dependencies: + domelementtype: "npm:^2.3.0" + checksum: 10c0/bba1e5932b3e196ad6862286d76adc89a0dbf0c773e5ced1eb01f9af930c50093a084eff14b8de5ea60b895c56a04d5de8bbc4930c5543d029091916770b2d2a + languageName: node + linkType: hard + +"domutils@npm:^3.0.1, domutils@npm:^3.2.1": + version: 3.2.2 + resolution: "domutils@npm:3.2.2" + dependencies: + dom-serializer: "npm:^2.0.0" + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.3" + checksum: 10c0/47938f473b987ea71cd59e59626eb8666d3aa8feba5266e45527f3b636c7883cca7e582d901531961f742c519d7514636b7973353b648762b2e3bedbf235fada + languageName: node + linkType: hard + +"dot-case@npm:^3.0.4": + version: 3.0.4 + resolution: "dot-case@npm:3.0.4" + dependencies: + no-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + checksum: 10c0/5b859ea65097a7ea870e2c91b5768b72ddf7fa947223fd29e167bcdff58fe731d941c48e47a38ec8aa8e43044c8fbd15cd8fa21689a526bc34b6548197cd5b05 + languageName: node + linkType: hard + +"dot-prop@npm:^9.0.0": + version: 9.0.0 + resolution: "dot-prop@npm:9.0.0" + dependencies: + type-fest: "npm:^4.18.2" + checksum: 10c0/4bac49a2f559156811862ac92813906f70529c50da918eaab81b38dd869743c667d578e183607f5ae11e8ae2a02e43e98e32c8a37bc4cae76b04d5b576e3112f + languageName: node + linkType: hard + +"dotenv-expand@npm:^10.0.0": + version: 10.0.0 + resolution: "dotenv-expand@npm:10.0.0" + checksum: 10c0/298f5018e29cfdcb0b5f463ba8e8627749103fbcf6cf81c561119115754ed582deee37b49dfc7253028aaba875ab7aea5fa90e5dac88e511d009ab0e6677924e + languageName: node + linkType: hard + +"dotenv@npm:^16.0.0, dotenv@npm:^16.3.1, dotenv@npm:^16.4.2, dotenv@npm:^16.4.5": + version: 16.4.7 + resolution: "dotenv@npm:16.4.7" + checksum: 10c0/be9f597e36a8daf834452daa1f4cc30e5375a5968f98f46d89b16b983c567398a330580c88395069a77473943c06b877d1ca25b4afafcdd6d4adb549e8293462 + languageName: node + linkType: hard + +"downshift@npm:^9.0.8": + version: 9.0.8 + resolution: "downshift@npm:9.0.8" + dependencies: + "@babel/runtime": "npm:^7.24.5" + compute-scroll-into-view: "npm:^3.1.0" + prop-types: "npm:^15.8.1" + react-is: "npm:18.2.0" + tslib: "npm:^2.6.2" + peerDependencies: + react: ">=16.12.0" + checksum: 10c0/d35060428936b2c6c5d61303faca2cc260906244e9b7bb43fa6bdc4f64cac1e3ce1df6fc68c27b04112b77b22142420d49c0e325debb3ccf9936ee6e48da6b33 + languageName: node + linkType: hard + +"dunder-proto@npm:^1.0.0, dunder-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "dunder-proto@npm:1.0.1" + dependencies: + call-bind-apply-helpers: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.2.0" + checksum: 10c0/199f2a0c1c16593ca0a145dbf76a962f8033ce3129f01284d48c45ed4e14fea9bbacd7b3610b6cdc33486cef20385ac054948fefc6272fcce645c09468f93031 + languageName: node + linkType: hard + +"duplexer3@npm:^0.1.4": + version: 0.1.5 + resolution: "duplexer3@npm:0.1.5" + checksum: 10c0/02195030d61c4d6a2a34eca71639f2ea5e05cb963490e5bd9527623c2ac7f50c33842a34d14777ea9cbfd9bc2be5a84065560b897d9fabb99346058a5b86ca98 + languageName: node + linkType: hard + +"duplexer@npm:~0.1.1": + version: 0.1.2 + resolution: "duplexer@npm:0.1.2" + checksum: 10c0/c57bcd4bdf7e623abab2df43a7b5b23d18152154529d166c1e0da6bee341d84c432d157d7e97b32fecb1bf3a8b8857dd85ed81a915789f550637ed25b8e64fc2 + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 + languageName: node + linkType: hard + +"ecc-jsbn@npm:~0.1.1": + version: 0.1.2 + resolution: "ecc-jsbn@npm:0.1.2" + dependencies: + jsbn: "npm:~0.1.0" + safer-buffer: "npm:^2.1.0" + checksum: 10c0/6cf168bae1e2dad2e46561d9af9cbabfbf5ff592176ad4e9f0f41eaaf5fe5e10bb58147fe0a804de62b1ee9dad42c28810c88d652b21b6013c47ba8efa274ca1 + languageName: node + linkType: hard + +"ee-first@npm:1.1.1": + version: 1.1.1 + resolution: "ee-first@npm:1.1.1" + checksum: 10c0/b5bb125ee93161bc16bfe6e56c6b04de5ad2aa44234d8f644813cc95d861a6910903132b05093706de2b706599367c4130eb6d170f6b46895686b95f87d017b7 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.5.73": + version: 1.5.103 + resolution: "electron-to-chromium@npm:1.5.103" + checksum: 10c0/3b297311b9266ec3ad00eaa8566901603afedc2e19310a16ab9e7217e62f54dda83120ca5f2f75fe64a214d1ba6f6cbb52d7a1692e28de03fcba8bebf7bfc4d5 + languageName: node + linkType: hard + +"embla-carousel-react@npm:^8.5.2": + version: 8.5.2 + resolution: "embla-carousel-react@npm:8.5.2" + dependencies: + embla-carousel: "npm:8.5.2" + embla-carousel-reactive-utils: "npm:8.5.2" + peerDependencies: + react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + checksum: 10c0/8e55a2bc562aed2c55d9debf2523dbd4f2524b0ecea62cf51f8f096ed993af608890084b5f35e1694a8aada087602a12cc4b8a68aeee12b4a33cc8361636c63d + languageName: node + linkType: hard + +"embla-carousel-reactive-utils@npm:8.5.2": + version: 8.5.2 + resolution: "embla-carousel-reactive-utils@npm:8.5.2" + peerDependencies: + embla-carousel: 8.5.2 + checksum: 10c0/aa4870539d9090f9ac02338c3ca3e1710a6f0e6890cd2f6fbf6afcc1eeac48192406f92bf042fe9429cc61709338124baf1514c75227a7a16b19b83e9f376274 + languageName: node + linkType: hard + +"embla-carousel@npm:8.5.2, embla-carousel@npm:^8.5.2": + version: 8.5.2 + resolution: "embla-carousel@npm:8.5.2" + checksum: 10c0/4bbb04c08616d560a7b47b1897794a077baa5aa27642420b35b3be58ab7b0dc000ef073b6e47d0029b0791c046e0cd39d295704faecb1957d2c315df51be58e6 + languageName: node + linkType: hard + +"emittery@npm:^0.13.1": + version: 0.13.1 + resolution: "emittery@npm:0.13.1" + checksum: 10c0/1573d0ae29ab34661b6c63251ff8f5facd24ccf6a823f19417ae8ba8c88ea450325788c67f16c99edec8de4b52ce93a10fe441ece389fd156e88ee7dab9bfa35 + languageName: node + linkType: hard + +"emoji-regex@npm:^10.3.0": + version: 10.4.0 + resolution: "emoji-regex@npm:10.4.0" + checksum: 10c0/a3fcedfc58bfcce21a05a5f36a529d81e88d602100145fcca3dc6f795e3c8acc4fc18fe773fbf9b6d6e9371205edb3afa2668ec3473fa2aa7fd47d2a9d46482d + languageName: node + linkType: hard + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 + languageName: node + linkType: hard + +"encodeurl@npm:^1.0.2": + version: 1.0.2 + resolution: "encodeurl@npm:1.0.2" + checksum: 10c0/f6c2387379a9e7c1156c1c3d4f9cb7bb11cf16dd4c1682e1f6746512564b053df5781029b6061296832b59fb22f459dbe250386d217c2f6e203601abb2ee0bec + languageName: node + linkType: hard + +"encoding@npm:^0.1.13": + version: 0.1.13 + resolution: "encoding@npm:0.1.13" + dependencies: + iconv-lite: "npm:^0.6.2" + checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039 + languageName: node + linkType: hard + +"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1": + version: 1.4.4 + resolution: "end-of-stream@npm:1.4.4" + dependencies: + once: "npm:^1.4.0" + checksum: 10c0/870b423afb2d54bb8d243c63e07c170409d41e20b47eeef0727547aea5740bd6717aca45597a9f2745525667a6b804c1e7bede41f856818faee5806dd9ff3975 + languageName: node + linkType: hard + +"enhanced-resolve@npm:^5.15.0": + version: 5.18.1 + resolution: "enhanced-resolve@npm:5.18.1" + dependencies: + graceful-fs: "npm:^4.2.4" + tapable: "npm:^2.2.0" + checksum: 10c0/4cffd9b125225184e2abed9fdf0ed3dbd2224c873b165d0838fd066cde32e0918626cba2f1f4bf6860762f13a7e2364fd89a82b99566be2873d813573ac71846 + languageName: node + linkType: hard + +"enquirer@npm:^2.3.6": + version: 2.4.1 + resolution: "enquirer@npm:2.4.1" + dependencies: + ansi-colors: "npm:^4.1.1" + strip-ansi: "npm:^6.0.1" + checksum: 10c0/43850479d7a51d36a9c924b518dcdc6373b5a8ae3401097d336b7b7e258324749d0ad37a1fcaa5706f04799baa05585cd7af19ebdf7667673e7694435fcea918 + languageName: node + linkType: hard + +"entities@npm:^4.2.0, entities@npm:^4.4.0, entities@npm:^4.5.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 + languageName: node + linkType: hard + +"entities@npm:^6.0.0": + version: 6.0.0 + resolution: "entities@npm:6.0.0" + checksum: 10c0/b82a7bd5de282860f3c36a91e815e41e874fd036c83956a568b82729678492eb088359d6f7e0a4f5c00776427263fcba04959b8340fefa430c39b9bce770427e + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 + languageName: node + linkType: hard + +"environment@npm:^1.0.0": + version: 1.1.0 + resolution: "environment@npm:1.1.0" + checksum: 10c0/fb26434b0b581ab397039e51ff3c92b34924a98b2039dcb47e41b7bca577b9dbf134a8eadb364415c74464b682e2d3afe1a4c0eb9873dc44ea814c5d3103331d + languageName: node + linkType: hard + +"err-code@npm:^2.0.2": + version: 2.0.3 + resolution: "err-code@npm:2.0.3" + checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66 + languageName: node + linkType: hard + +"errno@npm:^0.1.1": + version: 0.1.8 + resolution: "errno@npm:0.1.8" + dependencies: + prr: "npm:~1.0.1" + bin: + errno: cli.js + checksum: 10c0/83758951967ec57bf00b5f5b7dc797e6d65a6171e57ea57adcf1bd1a0b477fd9b5b35fae5be1ff18f4090ed156bce1db749fe7e317aac19d485a5d150f6a4936 + languageName: node + linkType: hard + +"error-ex@npm:^1.3.1": + version: 1.3.2 + resolution: "error-ex@npm:1.3.2" + dependencies: + is-arrayish: "npm:^0.2.1" + checksum: 10c0/ba827f89369b4c93382cfca5a264d059dfefdaa56ecc5e338ffa58a6471f5ed93b71a20add1d52290a4873d92381174382658c885ac1a2305f7baca363ce9cce + languageName: node + linkType: hard + +"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9": + version: 1.23.9 + resolution: "es-abstract@npm:1.23.9" + dependencies: + array-buffer-byte-length: "npm:^1.0.2" + arraybuffer.prototype.slice: "npm:^1.0.4" + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + data-view-buffer: "npm:^1.0.2" + data-view-byte-length: "npm:^1.0.2" + data-view-byte-offset: "npm:^1.0.1" + es-define-property: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-set-tostringtag: "npm:^2.1.0" + es-to-primitive: "npm:^1.3.0" + function.prototype.name: "npm:^1.1.8" + get-intrinsic: "npm:^1.2.7" + get-proto: "npm:^1.0.0" + get-symbol-description: "npm:^1.1.0" + globalthis: "npm:^1.0.4" + gopd: "npm:^1.2.0" + has-property-descriptors: "npm:^1.0.2" + has-proto: "npm:^1.2.0" + has-symbols: "npm:^1.1.0" + hasown: "npm:^2.0.2" + internal-slot: "npm:^1.1.0" + is-array-buffer: "npm:^3.0.5" + is-callable: "npm:^1.2.7" + is-data-view: "npm:^1.0.2" + is-regex: "npm:^1.2.1" + is-shared-array-buffer: "npm:^1.0.4" + is-string: "npm:^1.1.1" + is-typed-array: "npm:^1.1.15" + is-weakref: "npm:^1.1.0" + math-intrinsics: "npm:^1.1.0" + object-inspect: "npm:^1.13.3" + object-keys: "npm:^1.1.1" + object.assign: "npm:^4.1.7" + own-keys: "npm:^1.0.1" + regexp.prototype.flags: "npm:^1.5.3" + safe-array-concat: "npm:^1.1.3" + safe-push-apply: "npm:^1.0.0" + safe-regex-test: "npm:^1.1.0" + set-proto: "npm:^1.0.0" + string.prototype.trim: "npm:^1.2.10" + string.prototype.trimend: "npm:^1.0.9" + string.prototype.trimstart: "npm:^1.0.8" + typed-array-buffer: "npm:^1.0.3" + typed-array-byte-length: "npm:^1.0.3" + typed-array-byte-offset: "npm:^1.0.4" + typed-array-length: "npm:^1.0.7" + unbox-primitive: "npm:^1.1.0" + which-typed-array: "npm:^1.1.18" + checksum: 10c0/1de229c9e08fe13c17fe5abaec8221545dfcd57e51f64909599a6ae896df84b8fd2f7d16c60cb00d7bf495b9298ca3581aded19939d4b7276854a4b066f8422b + languageName: node + linkType: hard + +"es-define-property@npm:^1.0.0, es-define-property@npm:^1.0.1": + version: 1.0.1 + resolution: "es-define-property@npm:1.0.1" + checksum: 10c0/3f54eb49c16c18707949ff25a1456728c883e81259f045003499efba399c08bad00deebf65cccde8c0e07908c1a225c9d472b7107e558f2a48e28d530e34527c + languageName: node + linkType: hard + +"es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 + languageName: node + linkType: hard + +"es-iterator-helpers@npm:^1.2.1": + version: 1.2.1 + resolution: "es-iterator-helpers@npm:1.2.1" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.6" + es-errors: "npm:^1.3.0" + es-set-tostringtag: "npm:^2.0.3" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.6" + globalthis: "npm:^1.0.4" + gopd: "npm:^1.2.0" + has-property-descriptors: "npm:^1.0.2" + has-proto: "npm:^1.2.0" + has-symbols: "npm:^1.1.0" + internal-slot: "npm:^1.1.0" + iterator.prototype: "npm:^1.1.4" + safe-array-concat: "npm:^1.1.3" + checksum: 10c0/97e3125ca472d82d8aceea11b790397648b52c26d8768ea1c1ee6309ef45a8755bb63225a43f3150c7591cffc17caf5752459f1e70d583b4184370a8f04ebd2f + languageName: node + linkType: hard + +"es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1": + version: 1.1.1 + resolution: "es-object-atoms@npm:1.1.1" + dependencies: + es-errors: "npm:^1.3.0" + checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c + languageName: node + linkType: hard + +"es-set-tostringtag@npm:^2.0.3, es-set-tostringtag@npm:^2.1.0": + version: 2.1.0 + resolution: "es-set-tostringtag@npm:2.1.0" + dependencies: + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.6" + has-tostringtag: "npm:^1.0.2" + hasown: "npm:^2.0.2" + checksum: 10c0/ef2ca9ce49afe3931cb32e35da4dcb6d86ab02592cfc2ce3e49ced199d9d0bb5085fc7e73e06312213765f5efa47cc1df553a6a5154584b21448e9fb8355b1af + languageName: node + linkType: hard + +"es-shim-unscopables@npm:^1.0.2": + version: 1.1.0 + resolution: "es-shim-unscopables@npm:1.1.0" + dependencies: + hasown: "npm:^2.0.2" + checksum: 10c0/1b9702c8a1823fc3ef39035a4e958802cf294dd21e917397c561d0b3e195f383b978359816b1732d02b255ccf63e1e4815da0065b95db8d7c992037be3bbbcdb + languageName: node + linkType: hard + +"es-to-primitive@npm:^1.3.0": + version: 1.3.0 + resolution: "es-to-primitive@npm:1.3.0" + dependencies: + is-callable: "npm:^1.2.7" + is-date-object: "npm:^1.0.5" + is-symbol: "npm:^1.0.4" + checksum: 10c0/c7e87467abb0b438639baa8139f701a06537d2b9bc758f23e8622c3b42fd0fdb5bde0f535686119e446dd9d5e4c0f238af4e14960f4771877cf818d023f6730b + languageName: node + linkType: hard + +"es6-promise@npm:^4.2.8": + version: 4.2.8 + resolution: "es6-promise@npm:4.2.8" + checksum: 10c0/2373d9c5e9a93bdd9f9ed32ff5cb6dd3dd785368d1c21e9bbbfd07d16345b3774ae260f2bd24c8f836a6903f432b4151e7816a7fa8891ccb4e1a55a028ec42c3 + languageName: node + linkType: hard + +"esbuild-register@npm:^3.5.0": + version: 3.6.0 + resolution: "esbuild-register@npm:3.6.0" + dependencies: + debug: "npm:^4.3.4" + peerDependencies: + esbuild: ">=0.12 <1" + checksum: 10c0/77193b7ca32ba9f81b35ddf3d3d0138efb0b1429d71b39480cfee932e1189dd2e492bd32bf04a4d0bc3adfbc7ec7381ceb5ffd06efe35f3e70904f1f686566d5 + languageName: node + linkType: hard + +"esbuild@npm:^0.18.0": + version: 0.18.20 + resolution: "esbuild@npm:0.18.20" + dependencies: + "@esbuild/android-arm": "npm:0.18.20" + "@esbuild/android-arm64": "npm:0.18.20" + "@esbuild/android-x64": "npm:0.18.20" + "@esbuild/darwin-arm64": "npm:0.18.20" + "@esbuild/darwin-x64": "npm:0.18.20" + "@esbuild/freebsd-arm64": "npm:0.18.20" + "@esbuild/freebsd-x64": "npm:0.18.20" + "@esbuild/linux-arm": "npm:0.18.20" + "@esbuild/linux-arm64": "npm:0.18.20" + "@esbuild/linux-ia32": "npm:0.18.20" + "@esbuild/linux-loong64": "npm:0.18.20" + "@esbuild/linux-mips64el": "npm:0.18.20" + "@esbuild/linux-ppc64": "npm:0.18.20" + "@esbuild/linux-riscv64": "npm:0.18.20" + "@esbuild/linux-s390x": "npm:0.18.20" + "@esbuild/linux-x64": "npm:0.18.20" + "@esbuild/netbsd-x64": "npm:0.18.20" + "@esbuild/openbsd-x64": "npm:0.18.20" + "@esbuild/sunos-x64": "npm:0.18.20" + "@esbuild/win32-arm64": "npm:0.18.20" + "@esbuild/win32-ia32": "npm:0.18.20" + "@esbuild/win32-x64": "npm:0.18.20" + dependenciesMeta: + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 10c0/473b1d92842f50a303cf948a11ebd5f69581cd254d599dd9d62f9989858e0533f64e83b723b5e1398a5b488c0f5fd088795b4235f65ecaf4f007d4b79f04bc88 + languageName: node + linkType: hard + +"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0": + version: 0.25.0 + resolution: "esbuild@npm:0.25.0" + dependencies: + "@esbuild/aix-ppc64": "npm:0.25.0" + "@esbuild/android-arm": "npm:0.25.0" + "@esbuild/android-arm64": "npm:0.25.0" + "@esbuild/android-x64": "npm:0.25.0" + "@esbuild/darwin-arm64": "npm:0.25.0" + "@esbuild/darwin-x64": "npm:0.25.0" + "@esbuild/freebsd-arm64": "npm:0.25.0" + "@esbuild/freebsd-x64": "npm:0.25.0" + "@esbuild/linux-arm": "npm:0.25.0" + "@esbuild/linux-arm64": "npm:0.25.0" + "@esbuild/linux-ia32": "npm:0.25.0" + "@esbuild/linux-loong64": "npm:0.25.0" + "@esbuild/linux-mips64el": "npm:0.25.0" + "@esbuild/linux-ppc64": "npm:0.25.0" + "@esbuild/linux-riscv64": "npm:0.25.0" + "@esbuild/linux-s390x": "npm:0.25.0" + "@esbuild/linux-x64": "npm:0.25.0" + "@esbuild/netbsd-arm64": "npm:0.25.0" + "@esbuild/netbsd-x64": "npm:0.25.0" + "@esbuild/openbsd-arm64": "npm:0.25.0" + "@esbuild/openbsd-x64": "npm:0.25.0" + "@esbuild/sunos-x64": "npm:0.25.0" + "@esbuild/win32-arm64": "npm:0.25.0" + "@esbuild/win32-ia32": "npm:0.25.0" + "@esbuild/win32-x64": "npm:0.25.0" + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-arm64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-arm64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 10c0/5767b72da46da3cfec51661647ec850ddbf8a8d0662771139f10ef0692a8831396a0004b2be7966cecdb08264fb16bdc16290dcecd92396fac5f12d722fa013d + languageName: node + linkType: hard + +"esbuild@npm:^0.21.3": + version: 0.21.5 + resolution: "esbuild@npm:0.21.5" + dependencies: + "@esbuild/aix-ppc64": "npm:0.21.5" + "@esbuild/android-arm": "npm:0.21.5" + "@esbuild/android-arm64": "npm:0.21.5" + "@esbuild/android-x64": "npm:0.21.5" + "@esbuild/darwin-arm64": "npm:0.21.5" + "@esbuild/darwin-x64": "npm:0.21.5" + "@esbuild/freebsd-arm64": "npm:0.21.5" + "@esbuild/freebsd-x64": "npm:0.21.5" + "@esbuild/linux-arm": "npm:0.21.5" + "@esbuild/linux-arm64": "npm:0.21.5" + "@esbuild/linux-ia32": "npm:0.21.5" + "@esbuild/linux-loong64": "npm:0.21.5" + "@esbuild/linux-mips64el": "npm:0.21.5" + "@esbuild/linux-ppc64": "npm:0.21.5" + "@esbuild/linux-riscv64": "npm:0.21.5" + "@esbuild/linux-s390x": "npm:0.21.5" + "@esbuild/linux-x64": "npm:0.21.5" + "@esbuild/netbsd-x64": "npm:0.21.5" + "@esbuild/openbsd-x64": "npm:0.21.5" + "@esbuild/sunos-x64": "npm:0.21.5" + "@esbuild/win32-arm64": "npm:0.21.5" + "@esbuild/win32-ia32": "npm:0.21.5" + "@esbuild/win32-x64": "npm:0.21.5" + dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true + "@esbuild/android-arm": + optional: true + "@esbuild/android-arm64": + optional: true + "@esbuild/android-x64": + optional: true + "@esbuild/darwin-arm64": + optional: true + "@esbuild/darwin-x64": + optional: true + "@esbuild/freebsd-arm64": + optional: true + "@esbuild/freebsd-x64": + optional: true + "@esbuild/linux-arm": + optional: true + "@esbuild/linux-arm64": + optional: true + "@esbuild/linux-ia32": + optional: true + "@esbuild/linux-loong64": + optional: true + "@esbuild/linux-mips64el": + optional: true + "@esbuild/linux-ppc64": + optional: true + "@esbuild/linux-riscv64": + optional: true + "@esbuild/linux-s390x": + optional: true + "@esbuild/linux-x64": + optional: true + "@esbuild/netbsd-x64": + optional: true + "@esbuild/openbsd-x64": + optional: true + "@esbuild/sunos-x64": + optional: true + "@esbuild/win32-arm64": + optional: true + "@esbuild/win32-ia32": + optional: true + "@esbuild/win32-x64": + optional: true + bin: + esbuild: bin/esbuild + checksum: 10c0/fa08508adf683c3f399e8a014a6382a6b65542213431e26206c0720e536b31c09b50798747c2a105a4bbba1d9767b8d3615a74c2f7bf1ddf6d836cd11eb672de + languageName: node + linkType: hard + +"escalade@npm:^3.1.1, escalade@npm:^3.2.0": + version: 3.2.0 + resolution: "escalade@npm:3.2.0" + checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 + languageName: node + linkType: hard + +"escape-goat@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-goat@npm:4.0.0" + checksum: 10c0/9d2a8314e2370f2dd9436d177f6b3b1773525df8f895c8f3e1acb716f5fd6b10b336cb1cd9862d4709b36eb207dbe33664838deca9c6d55b8371be4eebb972f6 + languageName: node + linkType: hard + +"escape-html@npm:^1.0.3, escape-html@npm:~1.0.3": + version: 1.0.3 + resolution: "escape-html@npm:1.0.3" + checksum: 10c0/524c739d776b36c3d29fa08a22e03e8824e3b2fd57500e5e44ecf3cc4707c34c60f9ca0781c0e33d191f2991161504c295e98f68c78fe7baa6e57081ec6ac0a3 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^1.0.5": + version: 1.0.5 + resolution: "escape-string-regexp@npm:1.0.5" + checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 10c0/2530479fe8db57eace5e8646c9c2a9c80fa279614986d16dcc6bcaceb63ae77f05a851ba6c43756d816c61d7f4534baf56e3c705e3e0d884818a46808811c507 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 + languageName: node + linkType: hard + +"escodegen@npm:^2.0.0": + version: 2.1.0 + resolution: "escodegen@npm:2.1.0" + dependencies: + esprima: "npm:^4.0.1" + estraverse: "npm:^5.2.0" + esutils: "npm:^2.0.2" + source-map: "npm:~0.6.1" + dependenciesMeta: + source-map: + optional: true + bin: + escodegen: bin/escodegen.js + esgenerate: bin/esgenerate.js + checksum: 10c0/e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3 + languageName: node + linkType: hard + +"eslint-config-next@npm:^14.0.4": + version: 14.2.24 + resolution: "eslint-config-next@npm:14.2.24" + dependencies: + "@next/eslint-plugin-next": "npm:14.2.24" + "@rushstack/eslint-patch": "npm:^1.3.3" + "@typescript-eslint/eslint-plugin": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" + eslint-import-resolver-node: "npm:^0.3.6" + eslint-import-resolver-typescript: "npm:^3.5.2" + eslint-plugin-import: "npm:^2.28.1" + eslint-plugin-jsx-a11y: "npm:^6.7.1" + eslint-plugin-react: "npm:^7.33.2" + eslint-plugin-react-hooks: "npm:^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: ">=3.3.1" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/2f948d3ff43bc1a31613bca3e0d03808a085e21d210f2766a7e9ead6e79d4e5f0fda202a6d2fffe379d30a07ea2825f48349773879eab9f3232ce90f984e644d + languageName: node + linkType: hard + +"eslint-import-resolver-node@npm:^0.3.6, eslint-import-resolver-node@npm:^0.3.9": + version: 0.3.9 + resolution: "eslint-import-resolver-node@npm:0.3.9" + dependencies: + debug: "npm:^3.2.7" + is-core-module: "npm:^2.13.0" + resolve: "npm:^1.22.4" + checksum: 10c0/0ea8a24a72328a51fd95aa8f660dcca74c1429806737cf10261ab90cfcaaf62fd1eff664b76a44270868e0a932711a81b250053942595bcd00a93b1c1575dd61 + languageName: node + linkType: hard + +"eslint-import-resolver-typescript@npm:^3.5.2": + version: 3.8.3 + resolution: "eslint-import-resolver-typescript@npm:3.8.3" + dependencies: + "@nolyfill/is-core-module": "npm:1.0.39" + debug: "npm:^4.3.7" + enhanced-resolve: "npm:^5.15.0" + get-tsconfig: "npm:^4.10.0" + is-bun-module: "npm:^1.0.2" + stable-hash: "npm:^0.0.4" + tinyglobby: "npm:^0.2.12" + peerDependencies: + eslint: "*" + eslint-plugin-import: "*" + eslint-plugin-import-x: "*" + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + checksum: 10c0/886ceeab4cad14958d7c7d3432ead2486374616c8ada7925ab96e55f919f2dbbbdbe7c3081d7d238231e84699849e82930417a66e05638bcc8202e1263edddeb + languageName: node + linkType: hard + +"eslint-module-utils@npm:^2.12.0": + version: 2.12.0 + resolution: "eslint-module-utils@npm:2.12.0" + dependencies: + debug: "npm:^3.2.7" + peerDependenciesMeta: + eslint: + optional: true + checksum: 10c0/4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558 + languageName: node + linkType: hard + +"eslint-plugin-import@npm:^2.28.1, eslint-plugin-import@npm:^2.29.1": + version: 2.31.0 + resolution: "eslint-plugin-import@npm:2.31.0" + dependencies: + "@rtsao/scc": "npm:^1.1.0" + array-includes: "npm:^3.1.8" + array.prototype.findlastindex: "npm:^1.2.5" + array.prototype.flat: "npm:^1.3.2" + array.prototype.flatmap: "npm:^1.3.2" + debug: "npm:^3.2.7" + doctrine: "npm:^2.1.0" + eslint-import-resolver-node: "npm:^0.3.9" + eslint-module-utils: "npm:^2.12.0" + hasown: "npm:^2.0.2" + is-core-module: "npm:^2.15.1" + is-glob: "npm:^4.0.3" + minimatch: "npm:^3.1.2" + object.fromentries: "npm:^2.0.8" + object.groupby: "npm:^1.0.3" + object.values: "npm:^1.2.0" + semver: "npm:^6.3.1" + string.prototype.trimend: "npm:^1.0.8" + tsconfig-paths: "npm:^3.15.0" + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + checksum: 10c0/e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a + languageName: node + linkType: hard + +"eslint-plugin-jsx-a11y@npm:^6.7.1": + version: 6.10.2 + resolution: "eslint-plugin-jsx-a11y@npm:6.10.2" + dependencies: + aria-query: "npm:^5.3.2" + array-includes: "npm:^3.1.8" + array.prototype.flatmap: "npm:^1.3.2" + ast-types-flow: "npm:^0.0.8" + axe-core: "npm:^4.10.0" + axobject-query: "npm:^4.1.0" + damerau-levenshtein: "npm:^1.0.8" + emoji-regex: "npm:^9.2.2" + hasown: "npm:^2.0.2" + jsx-ast-utils: "npm:^3.3.5" + language-tags: "npm:^1.0.9" + minimatch: "npm:^3.1.2" + object.fromentries: "npm:^2.0.8" + safe-regex-test: "npm:^1.0.3" + string.prototype.includes: "npm:^2.0.1" + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 + checksum: 10c0/d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e + languageName: node + linkType: hard + +"eslint-plugin-react-hooks@npm:^4.5.0 || 5.0.0-canary-7118f5dd7-20230705": + version: 5.0.0-canary-7118f5dd7-20230705 + resolution: "eslint-plugin-react-hooks@npm:5.0.0-canary-7118f5dd7-20230705" + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + checksum: 10c0/554c4e426bfeb126155510dcba8345391426af147ee629f1c56c9ef6af08340d11008213e4e15b0138830af2c4439d7158da2091987f7efb01aeab662c44b274 + languageName: node + linkType: hard + +"eslint-plugin-react-hooks@npm:^4.6.0": + version: 4.6.2 + resolution: "eslint-plugin-react-hooks@npm:4.6.2" + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + checksum: 10c0/4844e58c929bc05157fb70ba1e462e34f1f4abcbc8dd5bbe5b04513d33e2699effb8bca668297976ceea8e7ebee4e8fc29b9af9d131bcef52886feaa2308b2cc + languageName: node + linkType: hard + +"eslint-plugin-react-refresh@npm:^0.4.5": + version: 0.4.19 + resolution: "eslint-plugin-react-refresh@npm:0.4.19" + peerDependencies: + eslint: ">=8.40" + checksum: 10c0/7c19c864c5fb1292dd1c9df2ce73cb1f86457937975d108e8619d6f354855d838d3f56f0262ce5cd541a7087de103ad802a32906e13724ea1b93c6e3b6477708 + languageName: node + linkType: hard + +"eslint-plugin-react@npm:^7.33.2": + version: 7.37.4 + resolution: "eslint-plugin-react@npm:7.37.4" + dependencies: + array-includes: "npm:^3.1.8" + array.prototype.findlast: "npm:^1.2.5" + array.prototype.flatmap: "npm:^1.3.3" + array.prototype.tosorted: "npm:^1.1.4" + doctrine: "npm:^2.1.0" + es-iterator-helpers: "npm:^1.2.1" + estraverse: "npm:^5.3.0" + hasown: "npm:^2.0.2" + jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" + minimatch: "npm:^3.1.2" + object.entries: "npm:^1.1.8" + object.fromentries: "npm:^2.0.8" + object.values: "npm:^1.2.1" + prop-types: "npm:^15.8.1" + resolve: "npm:^2.0.0-next.5" + semver: "npm:^6.3.1" + string.prototype.matchall: "npm:^4.0.12" + string.prototype.repeat: "npm:^1.0.0" + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + checksum: 10c0/4acbbdb19669dfa9a162ed8847c3ad1918f6aea1ceb675ee320b5d903b4e463fdef25e15233295b6d0a726fef2ea8b015c527da769c7690932ddc52d5b82ba12 + languageName: node + linkType: hard + +"eslint-plugin-simple-import-sort@npm:^12.1.0": + version: 12.1.1 + resolution: "eslint-plugin-simple-import-sort@npm:12.1.1" + peerDependencies: + eslint: ">=5.0.0" + checksum: 10c0/0ad1907ad9ddbadd1db655db0a9d0b77076e274b793a77b982c8525d808d868e6ecfce24f3a411e8a1fa551077387f9ebb38c00956073970ebd7ee6a029ce2b3 + languageName: node + linkType: hard + +"eslint-plugin-storybook@npm:^0.6.15": + version: 0.6.15 + resolution: "eslint-plugin-storybook@npm:0.6.15" + dependencies: + "@storybook/csf": "npm:^0.0.1" + "@typescript-eslint/utils": "npm:^5.45.0" + requireindex: "npm:^1.1.0" + ts-dedent: "npm:^2.2.0" + peerDependencies: + eslint: ">=6" + checksum: 10c0/c61f5f2af72b614c30e8b36644672cfa25ca28e963e5e6cfab438f0cb287a6270f875a2dd8cd600a04c9864b9c549e269d95ea8da88c412e2b868fcd6a3605a4 + languageName: node + linkType: hard + +"eslint-scope@npm:^5.1.1": + version: 5.1.1 + resolution: "eslint-scope@npm:5.1.1" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^4.1.1" + checksum: 10c0/d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a + languageName: node + linkType: hard + +"eslint-scope@npm:^7.2.2": + version: 7.2.2 + resolution: "eslint-scope@npm:7.2.2" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^5.2.0" + checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": + version: 3.4.3 + resolution: "eslint-visitor-keys@npm:3.4.3" + checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^4.2.0": + version: 4.2.0 + resolution: "eslint-visitor-keys@npm:4.2.0" + checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269 + languageName: node + linkType: hard + +"eslint@npm:^8, eslint@npm:^8.55.0": + version: 8.57.1 + resolution: "eslint@npm:8.57.1" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/regexpp": "npm:^4.6.1" + "@eslint/eslintrc": "npm:^2.1.4" + "@eslint/js": "npm:8.57.1" + "@humanwhocodes/config-array": "npm:^0.13.0" + "@humanwhocodes/module-importer": "npm:^1.0.1" + "@nodelib/fs.walk": "npm:^1.2.8" + "@ungap/structured-clone": "npm:^1.2.0" + ajv: "npm:^6.12.4" + chalk: "npm:^4.0.0" + cross-spawn: "npm:^7.0.2" + debug: "npm:^4.3.2" + doctrine: "npm:^3.0.0" + escape-string-regexp: "npm:^4.0.0" + eslint-scope: "npm:^7.2.2" + eslint-visitor-keys: "npm:^3.4.3" + espree: "npm:^9.6.1" + esquery: "npm:^1.4.2" + esutils: "npm:^2.0.2" + fast-deep-equal: "npm:^3.1.3" + file-entry-cache: "npm:^6.0.1" + find-up: "npm:^5.0.0" + glob-parent: "npm:^6.0.2" + globals: "npm:^13.19.0" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.2.0" + imurmurhash: "npm:^0.1.4" + is-glob: "npm:^4.0.0" + is-path-inside: "npm:^3.0.3" + js-yaml: "npm:^4.1.0" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + levn: "npm:^0.4.1" + lodash.merge: "npm:^4.6.2" + minimatch: "npm:^3.1.2" + natural-compare: "npm:^1.4.0" + optionator: "npm:^0.9.3" + strip-ansi: "npm:^6.0.1" + text-table: "npm:^0.2.0" + bin: + eslint: bin/eslint.js + checksum: 10c0/1fd31533086c1b72f86770a4d9d7058ee8b4643fd1cfd10c7aac1ecb8725698e88352a87805cf4b2ce890aa35947df4b4da9655fb7fdfa60dbb448a43f6ebcf1 + languageName: node + linkType: hard + +"espree@npm:^9.6.0, espree@npm:^9.6.1": + version: 9.6.1 + resolution: "espree@npm:9.6.1" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 + languageName: node + linkType: hard + +"esprima@npm:^4.0.0, esprima@npm:^4.0.1, esprima@npm:~4.0.0": + version: 4.0.1 + resolution: "esprima@npm:4.0.1" + bin: + esparse: ./bin/esparse.js + esvalidate: ./bin/esvalidate.js + checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3 + languageName: node + linkType: hard + +"esquery@npm:^1.4.2": + version: 1.6.0 + resolution: "esquery@npm:1.6.0" + dependencies: + estraverse: "npm:^5.1.0" + checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 + languageName: node + linkType: hard + +"esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: "npm:^5.2.0" + checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 + languageName: node + linkType: hard + +"estraverse@npm:^4.1.1": + version: 4.3.0 + resolution: "estraverse@npm:4.3.0" + checksum: 10c0/9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d + languageName: node + linkType: hard + +"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 + languageName: node + linkType: hard + +"estree-walker@npm:^2.0.2": + version: 2.0.2 + resolution: "estree-walker@npm:2.0.2" + checksum: 10c0/53a6c54e2019b8c914dc395890153ffdc2322781acf4bd7d1a32d7aedc1710807bdcd866ac133903d5629ec601fbb50abe8c2e5553c7f5a0afdd9b6af6c945af + languageName: node + linkType: hard + +"estree-walker@npm:^3.0.3": + version: 3.0.3 + resolution: "estree-walker@npm:3.0.3" + dependencies: + "@types/estree": "npm:^1.0.0" + checksum: 10c0/c12e3c2b2642d2bcae7d5aa495c60fa2f299160946535763969a1c83fc74518ffa9c2cd3a8b69ac56aea547df6a8aac25f729a342992ef0bbac5f1c73e78995d + languageName: node + linkType: hard + +"esutils@npm:^2.0.2": + version: 2.0.3 + resolution: "esutils@npm:2.0.3" + checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 + languageName: node + linkType: hard + +"etag@npm:^1.3.0": + version: 1.8.1 + resolution: "etag@npm:1.8.1" + checksum: 10c0/12be11ef62fb9817314d790089a0a49fae4e1b50594135dcb8076312b7d7e470884b5100d249b28c18581b7fd52f8b485689ffae22a11ed9ec17377a33a08f84 + languageName: node + linkType: hard + +"event-stream@npm:=3.3.4": + version: 3.3.4 + resolution: "event-stream@npm:3.3.4" + dependencies: + duplexer: "npm:~0.1.1" + from: "npm:~0" + map-stream: "npm:~0.1.0" + pause-stream: "npm:0.0.11" + split: "npm:0.3" + stream-combiner: "npm:~0.0.4" + through: "npm:~2.3.1" + checksum: 10c0/c3ec4e1efc27ab3e73a98923f0a2fa9a19051b87068fea2f3d53d2e4e8c5cfdadf8c8a115b17f3d90b16a46432d396bad91b6e8d0cceb3e449be717a03b75209 + languageName: node + linkType: hard + +"eventemitter2@npm:6.4.7": + version: 6.4.7 + resolution: "eventemitter2@npm:6.4.7" + checksum: 10c0/35d8e9d51b919114eb072d33786274e1475db50efe00960c24c088ce4f76c07a826ccc927602724928efb3d8f09a7d8dd1fa79e410875118c0e9846959287f34 + languageName: node + linkType: hard + +"eventemitter3@npm:^5.0.1": + version: 5.0.1 + resolution: "eventemitter3@npm:5.0.1" + checksum: 10c0/4ba5c00c506e6c786b4d6262cfbce90ddc14c10d4667e5c83ae993c9de88aa856033994dd2b35b83e8dc1170e224e66a319fa80adc4c32adcd2379bbc75da814 + languageName: node + linkType: hard + +"execa@npm:4.1.0": + version: 4.1.0 + resolution: "execa@npm:4.1.0" + dependencies: + cross-spawn: "npm:^7.0.0" + get-stream: "npm:^5.0.0" + human-signals: "npm:^1.1.1" + is-stream: "npm:^2.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^4.0.0" + onetime: "npm:^5.1.0" + signal-exit: "npm:^3.0.2" + strip-final-newline: "npm:^2.0.0" + checksum: 10c0/02211601bb1c52710260edcc68fb84c3c030dc68bafc697c90ada3c52cc31375337de8c24826015b8382a58d63569ffd203b79c94fef217d65503e3e8d2c52ba + languageName: node + linkType: hard + +"execa@npm:5.1.1, execa@npm:^5.0.0, execa@npm:^5.1.1": + version: 5.1.1 + resolution: "execa@npm:5.1.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^6.0.0" + human-signals: "npm:^2.1.0" + is-stream: "npm:^2.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^4.0.1" + onetime: "npm:^5.1.2" + signal-exit: "npm:^3.0.3" + strip-final-newline: "npm:^2.0.0" + checksum: 10c0/c8e615235e8de4c5addf2fa4c3da3e3aa59ce975a3e83533b4f6a71750fb816a2e79610dc5f1799b6e28976c9ae86747a36a606655bf8cb414a74d8d507b304f + languageName: node + linkType: hard + +"execa@npm:^8.0.1": + version: 8.0.1 + resolution: "execa@npm:8.0.1" + dependencies: + cross-spawn: "npm:^7.0.3" + get-stream: "npm:^8.0.1" + human-signals: "npm:^5.0.0" + is-stream: "npm:^3.0.0" + merge-stream: "npm:^2.0.0" + npm-run-path: "npm:^5.1.0" + onetime: "npm:^6.0.0" + signal-exit: "npm:^4.1.0" + strip-final-newline: "npm:^3.0.0" + checksum: 10c0/2c52d8775f5bf103ce8eec9c7ab3059909ba350a5164744e9947ed14a53f51687c040a250bda833f906d1283aa8803975b84e6c8f7a7c42f99dc8ef80250d1af + languageName: node + linkType: hard + +"executable@npm:^4.1.1": + version: 4.1.1 + resolution: "executable@npm:4.1.1" + dependencies: + pify: "npm:^2.2.0" + checksum: 10c0/c3cc5d2d2e3cdb1b7d7b0639ebd5566d113d7ada21cfa07f5226d55ba2a210320116720e07570ed5659ef2ec516bc00c8f0488dac75d112fd324ef25c2100173 + languageName: node + linkType: hard + +"exit@npm:^0.1.2": + version: 0.1.2 + resolution: "exit@npm:0.1.2" + checksum: 10c0/71d2ad9b36bc25bb8b104b17e830b40a08989be7f7d100b13269aaae7c3784c3e6e1e88a797e9e87523993a25ba27c8958959a554535370672cfb4d824af8989 + languageName: node + linkType: hard + +"expect@npm:^29.0.0, expect@npm:^29.7.0": + version: 29.7.0 + resolution: "expect@npm:29.7.0" + dependencies: + "@jest/expect-utils": "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/2eddeace66e68b8d8ee5f7be57f3014b19770caaf6815c7a08d131821da527fb8c8cb7b3dcd7c883d2d3d8d184206a4268984618032d1e4b16dc8d6596475d41 + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.2 + resolution: "exponential-backoff@npm:3.1.2" + checksum: 10c0/d9d3e1eafa21b78464297df91f1776f7fbaa3d5e3f7f0995648ca5b89c069d17055033817348d9f4a43d1c20b0eab84f75af6991751e839df53e4dfd6f22e844 + languageName: node + linkType: hard + +"extend@npm:~3.0.2": + version: 3.0.2 + resolution: "extend@npm:3.0.2" + checksum: 10c0/73bf6e27406e80aa3e85b0d1c4fd987261e628064e170ca781125c0b635a3dabad5e05adbf07595ea0cf1e6c5396cacb214af933da7cbaf24fe75ff14818e8f9 + languageName: node + linkType: hard + +"extract-zip@npm:2.0.1": + version: 2.0.1 + resolution: "extract-zip@npm:2.0.1" + dependencies: + "@types/yauzl": "npm:^2.9.1" + debug: "npm:^4.1.1" + get-stream: "npm:^5.1.0" + yauzl: "npm:^2.10.0" + dependenciesMeta: + "@types/yauzl": + optional: true + bin: + extract-zip: cli.js + checksum: 10c0/9afbd46854aa15a857ae0341a63a92743a7b89c8779102c3b4ffc207516b2019337353962309f85c66ee3d9092202a83cdc26dbf449a11981272038443974aee + languageName: node + linkType: hard + +"extsprintf@npm:1.3.0": + version: 1.3.0 + resolution: "extsprintf@npm:1.3.0" + checksum: 10c0/f75114a8388f0cbce68e277b6495dc3930db4dde1611072e4a140c24e204affd77320d004b947a132e9a3b97b8253017b2b62dce661975fb0adced707abf1ab5 + languageName: node + linkType: hard + +"extsprintf@npm:^1.2.0": + version: 1.4.1 + resolution: "extsprintf@npm:1.4.1" + checksum: 10c0/e10e2769985d0e9b6c7199b053a9957589d02e84de42832c295798cb422a025e6d4a92e0259c1fb4d07090f5bfde6b55fd9f880ac5855bd61d775f8ab75a7ab0 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 + languageName: node + linkType: hard + +"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2, fast-glob@npm:^3.3.3": + version: 3.3.3 + resolution: "fast-glob@npm:3.3.3" + dependencies: + "@nodelib/fs.stat": "npm:^2.0.2" + "@nodelib/fs.walk": "npm:^1.2.3" + glob-parent: "npm:^5.1.2" + merge2: "npm:^1.3.0" + micromatch: "npm:^4.0.8" + checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.0.0, fast-json-stable-stringify@npm:^2.1.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b + languageName: node + linkType: hard + +"fast-levenshtein@npm:^2.0.6": + version: 2.0.6 + resolution: "fast-levenshtein@npm:2.0.6" + checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 + languageName: node + linkType: hard + +"fastq@npm:^1.6.0": + version: 1.19.0 + resolution: "fastq@npm:1.19.0" + dependencies: + reusify: "npm:^1.0.4" + checksum: 10c0/d6a001638f1574a696660fcbba5300d017760432372c801632c325ca7c16819604841c92fd3ccadcdacec0966ca336363a5ff57bc5f0be335d8ea7ac6087b98f + languageName: node + linkType: hard + +"fb-watchman@npm:^2.0.0": + version: 2.0.2 + resolution: "fb-watchman@npm:2.0.2" + dependencies: + bser: "npm:2.1.1" + checksum: 10c0/feae89ac148adb8f6ae8ccd87632e62b13563e6fb114cacb5265c51f585b17e2e268084519fb2edd133872f1d47a18e6bfd7e5e08625c0d41b93149694187581 + languageName: node + linkType: hard + +"fd-slicer@npm:~1.1.0": + version: 1.1.0 + resolution: "fd-slicer@npm:1.1.0" + dependencies: + pend: "npm:~1.2.0" + checksum: 10c0/304dd70270298e3ffe3bcc05e6f7ade2511acc278bc52d025f8918b48b6aa3b77f10361bddfadfe2a28163f7af7adbdce96f4d22c31b2f648ba2901f0c5fc20e + languageName: node + linkType: hard + +"fdir@npm:^6.2.0, fdir@npm:^6.4.3": + version: 6.4.3 + resolution: "fdir@npm:6.4.3" + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + checksum: 10c0/d13c10120e9625adf21d8d80481586200759928c19405a816b77dd28eaeb80e7c59c5def3e2941508045eb06d34eb47fad865ccc8bf98e6ab988bb0ed160fb6f + languageName: node + linkType: hard + +"fetch-mock@npm:^12.2.0": + version: 12.4.0 + resolution: "fetch-mock@npm:12.4.0" + dependencies: + "@types/glob-to-regexp": "npm:^0.4.4" + dequal: "npm:^2.0.3" + glob-to-regexp: "npm:^0.4.1" + is-subset-of: "npm:^3.1.10" + regexparam: "npm:^3.0.0" + checksum: 10c0/eb3bdfec20dc82e0660a13ffb0664d6e28cd07a2365e34695ffda7b85186fe68b76cdec4941e113ef314a44b8e5e35273c62b9b9a7314f8e60be133aa71aa6d6 + languageName: node + linkType: hard + +"fetch-retry@npm:^5.0.2": + version: 5.0.6 + resolution: "fetch-retry@npm:5.0.6" + checksum: 10c0/349f50db631039630e915f70c763469cb696f3ac92ca6f63823109334a2bc62f63670b8c5a5c7e0195c39df517e60ef385cc5264f4c4904d0c6707d371fa8999 + languageName: node + linkType: hard + +"fetch-retry@npm:^6.0.0": + version: 6.0.0 + resolution: "fetch-retry@npm:6.0.0" + checksum: 10c0/8e275b042ff98041236d30b71966f24c34ff19f957bb0f00e664754bd63d0dfb5122d091e7d5bca21f6370d88a1713d22421b33471305d7b86d6799427278802 + languageName: node + linkType: hard + +"figures@npm:^3.2.0": + version: 3.2.0 + resolution: "figures@npm:3.2.0" + dependencies: + escape-string-regexp: "npm:^1.0.5" + checksum: 10c0/9c421646ede432829a50bc4e55c7a4eb4bcb7cc07b5bab2f471ef1ab9a344595bbebb6c5c21470093fbb730cd81bbca119624c40473a125293f656f49cb47629 + languageName: node + linkType: hard + +"file-entry-cache@npm:^6.0.1": + version: 6.0.1 + resolution: "file-entry-cache@npm:6.0.1" + dependencies: + flat-cache: "npm:^3.0.4" + checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd + languageName: node + linkType: hard + +"file-system-cache@npm:2.3.0": + version: 2.3.0 + resolution: "file-system-cache@npm:2.3.0" + dependencies: + fs-extra: "npm:11.1.1" + ramda: "npm:0.29.0" + checksum: 10c0/43de19f0db32e6546bb7abeecb1d6ea83c1eca23b38905c9415a29f6219cc9d6d87b0c1a6aca92c46a0f1bc276241a339f2f68b8aa0ca5c2eb64b6e1e3e4da01 + languageName: node + linkType: hard + +"fill-range@npm:^7.1.1": + version: 7.1.1 + resolution: "fill-range@npm:7.1.1" + dependencies: + to-regex-range: "npm:^5.0.1" + checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018 + languageName: node + linkType: hard + +"find-cache-dir@npm:^3.0.0": + version: 3.3.2 + resolution: "find-cache-dir@npm:3.3.2" + dependencies: + commondir: "npm:^1.0.1" + make-dir: "npm:^3.0.2" + pkg-dir: "npm:^4.1.0" + checksum: 10c0/92747cda42bff47a0266b06014610981cfbb71f55d60f2c8216bc3108c83d9745507fb0b14ecf6ab71112bed29cd6fb1a137ee7436179ea36e11287e3159e587 + languageName: node + linkType: hard + +"find-replace@npm:^3.0.0": + version: 3.0.0 + resolution: "find-replace@npm:3.0.0" + dependencies: + array-back: "npm:^3.0.1" + checksum: 10c0/fcd1bf7960388c8193c2861bcdc760c18ac14edb4bde062a961915d9a25727b2e8aabf0229e90cc09c753fd557e5a3e5ae61e49cadbe727be89a9e8e49ce7668 + languageName: node + linkType: hard + +"find-up@npm:^4.0.0, find-up@npm:^4.1.0": + version: 4.1.0 + resolution: "find-up@npm:4.1.0" + dependencies: + locate-path: "npm:^5.0.0" + path-exists: "npm:^4.0.0" + checksum: 10c0/0406ee89ebeefa2d507feb07ec366bebd8a6167ae74aa4e34fb4c4abd06cf782a3ce26ae4194d70706f72182841733f00551c209fe575cb00bd92104056e78c1 + languageName: node + linkType: hard + +"find-up@npm:^5.0.0": + version: 5.0.0 + resolution: "find-up@npm:5.0.0" + dependencies: + locate-path: "npm:^6.0.0" + path-exists: "npm:^4.0.0" + checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a + languageName: node + linkType: hard + +"find-yarn-workspace-root@npm:^2.0.0": + version: 2.0.0 + resolution: "find-yarn-workspace-root@npm:2.0.0" + dependencies: + micromatch: "npm:^4.0.2" + checksum: 10c0/b0d3843013fbdaf4e57140e0165889d09fa61745c9e85da2af86e54974f4cc9f1967e40f0d8fc36a79d53091f0829c651d06607d552582e53976f3cd8f4e5689 + languageName: node + linkType: hard + +"flat-cache@npm:^3.0.4": + version: 3.2.0 + resolution: "flat-cache@npm:3.2.0" + dependencies: + flatted: "npm:^3.2.9" + keyv: "npm:^4.5.3" + rimraf: "npm:^3.0.2" + checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 + languageName: node + linkType: hard + +"flatted@npm:^3.2.9": + version: 3.3.3 + resolution: "flatted@npm:3.3.3" + checksum: 10c0/e957a1c6b0254aa15b8cce8533e24165abd98fadc98575db082b786b5da1b7d72062b81bfdcd1da2f4d46b6ed93bec2434e62333e9b4261d79ef2e75a10dd538 + languageName: node + linkType: hard + +"follow-redirects@npm:^1.15.6": + version: 1.15.9 + resolution: "follow-redirects@npm:1.15.9" + peerDependenciesMeta: + debug: + optional: true + checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f + languageName: node + linkType: hard + +"for-each@npm:^0.3.3": + version: 0.3.5 + resolution: "for-each@npm:0.3.5" + dependencies: + is-callable: "npm:^1.2.7" + checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0": + version: 3.3.0 + resolution: "foreground-child@npm:3.3.0" + dependencies: + cross-spawn: "npm:^7.0.0" + signal-exit: "npm:^4.0.1" + checksum: 10c0/028f1d41000553fcfa6c4bb5c372963bf3d9bf0b1f25a87d1a6253014343fb69dfb1b42d9625d7cf44c8ba429940f3d0ff718b62105d4d4a4f6ef8ca0a53faa2 + languageName: node + linkType: hard + +"forever-agent@npm:~0.6.1": + version: 0.6.1 + resolution: "forever-agent@npm:0.6.1" + checksum: 10c0/364f7f5f7d93ab661455351ce116a67877b66f59aca199559a999bd39e3cfadbfbfacc10415a915255e2210b30c23febe9aec3ca16bf2d1ff11c935a1000e24c + languageName: node + linkType: hard + +"form-data@npm:^4.0.0, form-data@npm:~4.0.0": + version: 4.0.2 + resolution: "form-data@npm:4.0.2" + dependencies: + asynckit: "npm:^0.4.0" + combined-stream: "npm:^1.0.8" + es-set-tostringtag: "npm:^2.1.0" + mime-types: "npm:^2.1.12" + checksum: 10c0/e534b0cf025c831a0929bf4b9bbe1a9a6b03e273a8161f9947286b9b13bf8fb279c6944aae0070c4c311100c6d6dbb815cd955dc217728caf73fad8dc5b8ee9c + languageName: node + linkType: hard + +"forwarded-parse@npm:2.1.2": + version: 2.1.2 + resolution: "forwarded-parse@npm:2.1.2" + checksum: 10c0/0c6b4c631775f272b4475e935108635495e8a5b261d1b4a5caef31c47c5a0b04134adc564e655aadfef366a02647fa3ae90a1d3ac19929f3ade47f9bed53036a + languageName: node + linkType: hard + +"framer-motion@npm:11.3.28": + version: 11.3.28 + resolution: "framer-motion@npm:11.3.28" + dependencies: + tslib: "npm:^2.4.0" + peerDependencies: + "@emotion/is-prop-valid": "*" + react: ^18.0.0 + react-dom: ^18.0.0 + peerDependenciesMeta: + "@emotion/is-prop-valid": + optional: true + react: + optional: true + react-dom: + optional: true + checksum: 10c0/f5aaf914f764ca4a05f7b77e50469b0dbd3311f7be98be871385075513370840de2f154422c7cdc00664147a3cc04f31053997c5eb3131edb25a1abfec570f93 + languageName: node + linkType: hard + +"fresh@npm:~0.5.2": + version: 0.5.2 + resolution: "fresh@npm:0.5.2" + checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a + languageName: node + linkType: hard + +"from@npm:~0": + version: 0.1.7 + resolution: "from@npm:0.1.7" + checksum: 10c0/3aab5aea8fe8e1f12a5dee7f390d46a93431ce691b6222dcd5701c5d34378e51ca59b44967da1105a0f90fcdf5d7629d963d51e7ccd79827d19693bdcfb688d4 + languageName: node + linkType: hard + +"fs-constants@npm:^1.0.0": + version: 1.0.0 + resolution: "fs-constants@npm:1.0.0" + checksum: 10c0/a0cde99085f0872f4d244e83e03a46aa387b74f5a5af750896c6b05e9077fac00e9932fdf5aef84f2f16634cd473c63037d7a512576da7d5c2b9163d1909f3a8 + languageName: node + linkType: hard + +"fs-extra@npm:11.1.1": + version: 11.1.1 + resolution: "fs-extra@npm:11.1.1" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 10c0/a2480243d7dcfa7d723c5f5b24cf4eba02a6ccece208f1524a2fbde1c629492cfb9a59e4b6d04faff6fbdf71db9fdc8ef7f396417a02884195a625f5d8dc9427 + languageName: node + linkType: hard + +"fs-extra@npm:^11.1.0, fs-extra@npm:^11.2.0": + version: 11.3.0 + resolution: "fs-extra@npm:11.3.0" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 10c0/5f95e996186ff45463059feb115a22fb048bdaf7e487ecee8a8646c78ed8fdca63630e3077d4c16ce677051f5e60d3355a06f3cd61f3ca43f48cc58822a44d0a + languageName: node + linkType: hard + +"fs-extra@npm:^9.0.0, fs-extra@npm:^9.1.0": + version: 9.1.0 + resolution: "fs-extra@npm:9.1.0" + dependencies: + at-least-node: "npm:^1.0.0" + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 10c0/9b808bd884beff5cb940773018179a6b94a966381d005479f00adda6b44e5e3d4abf765135773d849cc27efe68c349e4a7b86acd7d3306d5932c14f3a4b17a92 + languageName: node + linkType: hard + +"fs-extra@npm:~7.0.1": + version: 7.0.1 + resolution: "fs-extra@npm:7.0.1" + dependencies: + graceful-fs: "npm:^4.1.2" + jsonfile: "npm:^4.0.0" + universalify: "npm:^0.1.0" + checksum: 10c0/1943bb2150007e3739921b8d13d4109abdc3cc481e53b97b7ea7f77eda1c3c642e27ae49eac3af074e3496ea02fde30f411ef410c760c70a38b92e656e5da784 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + languageName: node + linkType: hard + +"fs.realpath@npm:^1.0.0": + version: 1.0.0 + resolution: "fs.realpath@npm:1.0.0" + checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948 + languageName: node + linkType: hard + +"fsevents@npm:^2.3.2, fsevents@npm:~2.3.2, fsevents@npm:~2.3.3": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@npm%3A^2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: "npm:latest" + conditions: os=darwin + languageName: node + linkType: hard + +"function-bind@npm:^1.1.2": + version: 1.1.2 + resolution: "function-bind@npm:1.1.2" + checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 + languageName: node + linkType: hard + +"function.prototype.name@npm:^1.1.6, function.prototype.name@npm:^1.1.8": + version: 1.1.8 + resolution: "function.prototype.name@npm:1.1.8" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + define-properties: "npm:^1.2.1" + functions-have-names: "npm:^1.2.3" + hasown: "npm:^2.0.2" + is-callable: "npm:^1.2.7" + checksum: 10c0/e920a2ab52663005f3cbe7ee3373e3c71c1fb5558b0b0548648cdf3e51961085032458e26c71ff1a8c8c20e7ee7caeb03d43a5d1fa8610c459333323a2e71253 + languageName: node + linkType: hard + +"functions-have-names@npm:^1.2.3": + version: 1.2.3 + resolution: "functions-have-names@npm:1.2.3" + checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca + languageName: node + linkType: hard + +"gensync@npm:^1.0.0-beta.2": + version: 1.0.0-beta.2 + resolution: "gensync@npm:1.0.0-beta.2" + checksum: 10c0/782aba6cba65b1bb5af3b095d96249d20edbe8df32dbf4696fd49be2583faf676173bf4809386588828e4dd76a3354fcbeb577bab1c833ccd9fc4577f26103f8 + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde + languageName: node + linkType: hard + +"get-east-asian-width@npm:^1.0.0": + version: 1.3.0 + resolution: "get-east-asian-width@npm:1.3.0" + checksum: 10c0/1a049ba697e0f9a4d5514c4623781c5246982bdb61082da6b5ae6c33d838e52ce6726407df285cdbb27ec1908b333cf2820989bd3e986e37bb20979437fdf34b + languageName: node + linkType: hard + +"get-func-name@npm:^2.0.1, get-func-name@npm:^2.0.2": + version: 2.0.2 + resolution: "get-func-name@npm:2.0.2" + checksum: 10c0/89830fd07623fa73429a711b9daecdb304386d237c71268007f788f113505ef1d4cc2d0b9680e072c5082490aec9df5d7758bf5ac6f1c37062855e8e3dc0b9df + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.2.7": + version: 1.3.0 + resolution: "get-intrinsic@npm:1.3.0" + dependencies: + call-bind-apply-helpers: "npm:^1.0.2" + es-define-property: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.1.1" + function-bind: "npm:^1.1.2" + get-proto: "npm:^1.0.1" + gopd: "npm:^1.2.0" + has-symbols: "npm:^1.1.0" + hasown: "npm:^2.0.2" + math-intrinsics: "npm:^1.1.0" + checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a + languageName: node + linkType: hard + +"get-nonce@npm:^1.0.0": + version: 1.0.1 + resolution: "get-nonce@npm:1.0.1" + checksum: 10c0/2d7df55279060bf0568549e1ffc9b84bc32a32b7541675ca092dce56317cdd1a59a98dcc4072c9f6a980779440139a3221d7486f52c488e69dc0fd27b1efb162 + languageName: node + linkType: hard + +"get-package-type@npm:^0.1.0": + version: 0.1.0 + resolution: "get-package-type@npm:0.1.0" + checksum: 10c0/e34cdf447fdf1902a1f6d5af737eaadf606d2ee3518287abde8910e04159368c268568174b2e71102b87b26c2020486f126bfca9c4fb1ceb986ff99b52ecd1be + languageName: node + linkType: hard + +"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1": + version: 1.0.1 + resolution: "get-proto@npm:1.0.1" + dependencies: + dunder-proto: "npm:^1.0.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/9224acb44603c5526955e83510b9da41baf6ae73f7398875fba50edc5e944223a89c4a72b070fcd78beb5f7bdda58ecb6294adc28f7acfc0da05f76a2399643c + languageName: node + linkType: hard + +"get-stdin@npm:^9.0.0": + version: 9.0.0 + resolution: "get-stdin@npm:9.0.0" + checksum: 10c0/7ef2edc0c81a0644ca9f051aad8a96ae9373d901485abafaabe59fd347a1c378689d8a3d8825fb3067415d1d09dfcaa43cb9b9516ecac6b74b3138b65a8ccc6b + languageName: node + linkType: hard + +"get-stream@npm:^5.0.0, get-stream@npm:^5.1.0": + version: 5.2.0 + resolution: "get-stream@npm:5.2.0" + dependencies: + pump: "npm:^3.0.0" + checksum: 10c0/43797ffd815fbb26685bf188c8cfebecb8af87b3925091dd7b9a9c915993293d78e3c9e1bce125928ff92f2d0796f3889b92b5ec6d58d1041b574682132e0a80 + languageName: node + linkType: hard + +"get-stream@npm:^6.0.0": + version: 6.0.1 + resolution: "get-stream@npm:6.0.1" + checksum: 10c0/49825d57d3fd6964228e6200a58169464b8e8970489b3acdc24906c782fb7f01f9f56f8e6653c4a50713771d6658f7cfe051e5eb8c12e334138c9c918b296341 + languageName: node + linkType: hard + +"get-stream@npm:^8.0.1": + version: 8.0.1 + resolution: "get-stream@npm:8.0.1" + checksum: 10c0/5c2181e98202b9dae0bb4a849979291043e5892eb40312b47f0c22b9414fc9b28a3b6063d2375705eb24abc41ecf97894d9a51f64ff021511b504477b27b4290 + languageName: node + linkType: hard + +"get-symbol-description@npm:^1.1.0": + version: 1.1.0 + resolution: "get-symbol-description@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.3" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.6" + checksum: 10c0/d6a7d6afca375779a4b307738c9e80dbf7afc0bdbe5948768d54ab9653c865523d8920e670991a925936eb524b7cb6a6361d199a760b21d0ca7620194455aa4b + languageName: node + linkType: hard + +"get-tsconfig@npm:^4.10.0": + version: 4.10.0 + resolution: "get-tsconfig@npm:4.10.0" + dependencies: + resolve-pkg-maps: "npm:^1.0.0" + checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86 + languageName: node + linkType: hard + +"getos@npm:^3.2.1": + version: 3.2.1 + resolution: "getos@npm:3.2.1" + dependencies: + async: "npm:^3.2.0" + checksum: 10c0/21556fca1da4dfc8f1707261b4f9ff19b9e9bfefa76478249d2abddba3cd014bd6c5360634add1590b27e0b27d422e8f997dddaa0234aae1fa4c54f33f82e841 + languageName: node + linkType: hard + +"getpass@npm:^0.1.1": + version: 0.1.7 + resolution: "getpass@npm:0.1.7" + dependencies: + assert-plus: "npm:^1.0.0" + checksum: 10c0/c13f8530ecf16fc509f3fa5cd8dd2129ffa5d0c7ccdf5728b6022d52954c2d24be3706b4cdf15333eec52f1fbb43feb70a01dabc639d1d10071e371da8aaa52f + languageName: node + linkType: hard + +"git-hooks-list@npm:^3.0.0": + version: 3.2.0 + resolution: "git-hooks-list@npm:3.2.0" + checksum: 10c0/6fdbc727da8e5a6fd9be47b40dd896db3a5c38196a3a52d2f0ed66fe28a6e0df50128b6e674d52b04fa5932a395b693441da9c0cfa7df16f1eff83aee042b127 + languageName: node + linkType: hard + +"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2": + version: 5.1.2 + resolution: "glob-parent@npm:5.1.2" + dependencies: + is-glob: "npm:^4.0.1" + checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee + languageName: node + linkType: hard + +"glob-parent@npm:^6.0.2": + version: 6.0.2 + resolution: "glob-parent@npm:6.0.2" + dependencies: + is-glob: "npm:^4.0.3" + checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 + languageName: node + linkType: hard + +"glob-to-regexp@npm:^0.4.1": + version: 0.4.1 + resolution: "glob-to-regexp@npm:0.4.1" + checksum: 10c0/0486925072d7a916f052842772b61c3e86247f0a80cc0deb9b5a3e8a1a9faad5b04fb6f58986a09f34d3e96cd2a22a24b7e9882fb1cf904c31e9a310de96c429 + languageName: node + linkType: hard + +"glob@npm:10.3.10": + version: 10.3.10 + resolution: "glob@npm:10.3.10" + dependencies: + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^2.3.5" + minimatch: "npm:^9.0.1" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry: "npm:^1.10.1" + bin: + glob: dist/esm/bin.mjs + checksum: 10c0/13d8a1feb7eac7945f8c8480e11cd4a44b24d26503d99a8d8ac8d5aefbf3e9802a2b6087318a829fad04cb4e829f25c5f4f1110c68966c498720dd261c7e344d + languageName: node + linkType: hard + +"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7": + version: 10.4.5 + resolution: "glob@npm:10.4.5" + dependencies: + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^3.1.2" + minimatch: "npm:^9.0.4" + minipass: "npm:^7.1.2" + package-json-from-dist: "npm:^1.0.0" + path-scurry: "npm:^1.11.1" + bin: + glob: dist/esm/bin.mjs + checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e + languageName: node + linkType: hard + +"glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6": + version: 7.2.3 + resolution: "glob@npm:7.2.3" + dependencies: + fs.realpath: "npm:^1.0.0" + inflight: "npm:^1.0.4" + inherits: "npm:2" + minimatch: "npm:^3.1.1" + once: "npm:^1.3.0" + path-is-absolute: "npm:^1.0.0" + checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe + languageName: node + linkType: hard + +"glob@npm:^9.3.2": + version: 9.3.5 + resolution: "glob@npm:9.3.5" + dependencies: + fs.realpath: "npm:^1.0.0" + minimatch: "npm:^8.0.2" + minipass: "npm:^4.2.4" + path-scurry: "npm:^1.6.1" + checksum: 10c0/2f6c2b9ee019ee21dc258ae97a88719614591e4c979cb4580b1b9df6f0f778a3cb38b4bdaf18dfa584637ea10f89a3c5f2533a5e449cf8741514ad18b0951f2e + languageName: node + linkType: hard + +"global-directory@npm:^4.0.1": + version: 4.0.1 + resolution: "global-directory@npm:4.0.1" + dependencies: + ini: "npm:4.1.1" + checksum: 10c0/f9cbeef41db4876f94dd0bac1c1b4282a7de9c16350ecaaf83e7b2dd777b32704cc25beeb1170b5a63c42a2c9abfade74d46357fe0133e933218bc89e613d4b2 + languageName: node + linkType: hard + +"global-dirs@npm:^3.0.0": + version: 3.0.1 + resolution: "global-dirs@npm:3.0.1" + dependencies: + ini: "npm:2.0.0" + checksum: 10c0/ef65e2241a47ff978f7006a641302bc7f4c03dfb98783d42bf7224c136e3a06df046e70ee3a010cf30214114755e46c9eb5eb1513838812fbbe0d92b14c25080 + languageName: node + linkType: hard + +"globals@npm:^11.1.0": + version: 11.12.0 + resolution: "globals@npm:11.12.0" + checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 + languageName: node + linkType: hard + +"globals@npm:^13.19.0": + version: 13.24.0 + resolution: "globals@npm:13.24.0" + dependencies: + type-fest: "npm:^0.20.2" + checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd + languageName: node + linkType: hard + +"globalthis@npm:^1.0.4": + version: 1.0.4 + resolution: "globalthis@npm:1.0.4" + dependencies: + define-properties: "npm:^1.2.1" + gopd: "npm:^1.0.1" + checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846 + languageName: node + linkType: hard + +"globby@npm:^11.1.0": + version: 11.1.0 + resolution: "globby@npm:11.1.0" + dependencies: + array-union: "npm:^2.1.0" + dir-glob: "npm:^3.0.1" + fast-glob: "npm:^3.2.9" + ignore: "npm:^5.2.0" + merge2: "npm:^1.4.1" + slash: "npm:^3.0.0" + checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189 + languageName: node + linkType: hard + +"globby@npm:^14.0.1": + version: 14.1.0 + resolution: "globby@npm:14.1.0" + dependencies: + "@sindresorhus/merge-streams": "npm:^2.1.0" + fast-glob: "npm:^3.3.3" + ignore: "npm:^7.0.3" + path-type: "npm:^6.0.0" + slash: "npm:^5.1.0" + unicorn-magic: "npm:^0.3.0" + checksum: 10c0/527a1063c5958255969620c6fa4444a2b2e9278caddd571d46dfbfa307cb15977afb746e84d682ba5b6c94fc081e8997f80ff05dd235441ba1cb16f86153e58e + languageName: node + linkType: hard + +"goober@npm:^2.1.14": + version: 2.1.16 + resolution: "goober@npm:2.1.16" + peerDependencies: + csstype: ^3.0.10 + checksum: 10c0/f4c8256bf9c27873d47c1443f348779ac7f322516cb80a5dc647a6ebe790ce6bb9d3f487a0fb8be0b583fb96b9b2f6b7463f7fea3cd680306f95fa6fc9db1f6a + languageName: node + linkType: hard + +"gopd@npm:^1.0.1, gopd@npm:^1.2.0": + version: 1.2.0 + resolution: "gopd@npm:1.2.0" + checksum: 10c0/50fff1e04ba2b7737c097358534eacadad1e68d24cccee3272e04e007bed008e68d2614f3987788428fd192a5ae3889d08fb2331417e4fc4a9ab366b2043cead + languageName: node + linkType: hard + +"got@npm:10.7.0": + version: 10.7.0 + resolution: "got@npm:10.7.0" + dependencies: + "@sindresorhus/is": "npm:^2.0.0" + "@szmarczak/http-timer": "npm:^4.0.0" + "@types/cacheable-request": "npm:^6.0.1" + cacheable-lookup: "npm:^2.0.0" + cacheable-request: "npm:^7.0.1" + decompress-response: "npm:^5.0.0" + duplexer3: "npm:^0.1.4" + get-stream: "npm:^5.0.0" + lowercase-keys: "npm:^2.0.0" + mimic-response: "npm:^2.1.0" + p-cancelable: "npm:^2.0.0" + p-event: "npm:^4.0.0" + responselike: "npm:^2.0.0" + to-readable-stream: "npm:^2.0.0" + type-fest: "npm:^0.10.0" + checksum: 10c0/3972cbbd2f99b8331f3447596e92849adb0e486c6c4feebbbedbf243e95f0ed79e62c34d8ff354d2e861ba69dd18c8870842aefae15cf3db3d5bb1019e8b837b + languageName: node + linkType: hard + +"graceful-fs@npm:4.2.10": + version: 4.2.10 + resolution: "graceful-fs@npm:4.2.10" + checksum: 10c0/4223a833e38e1d0d2aea630c2433cfb94ddc07dfc11d511dbd6be1d16688c5be848acc31f9a5d0d0ddbfb56d2ee5a6ae0278aceeb0ca6a13f27e06b9956fb952 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.1.11, graceful-fs@npm:^4.1.2, graceful-fs@npm:^4.1.6, graceful-fs@npm:^4.2.0, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.4, graceful-fs@npm:^4.2.6, graceful-fs@npm:^4.2.9": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 + languageName: node + linkType: hard + +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 + languageName: node + linkType: hard + +"graphql-request@npm:^6.1.0": + version: 6.1.0 + resolution: "graphql-request@npm:6.1.0" + dependencies: + "@graphql-typed-document-node/core": "npm:^3.2.0" + cross-fetch: "npm:^3.1.5" + peerDependencies: + graphql: 14 - 16 + checksum: 10c0/f8167925a110e8e1de93d56c14245e7e64391dc8dce5002dd01bf24a3059f345d4ca1bb6ce2040e2ec78264211b0704e75da3e63984f0f74d2042f697a4e8cc6 + languageName: node + linkType: hard + +"graphql-tag@npm:^2.12.6": + version: 2.12.6 + resolution: "graphql-tag@npm:2.12.6" + dependencies: + tslib: "npm:^2.1.0" + peerDependencies: + graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/7763a72011bda454ed8ff1a0d82325f43ca6478e4ce4ab8b7910c4c651dd00db553132171c04d80af5d5aebf1ef6a8a9fd53ccfa33b90ddc00aa3d4be6114419 + languageName: node + linkType: hard + +"graphql@npm:^16.8.1": + version: 16.10.0 + resolution: "graphql@npm:16.10.0" + checksum: 10c0/303730675538c8bd6c76b447dc6f03e61242e2d2596b408c34759666ec4877409e5593a7a0467d590ac5407b8c663b093b599556a77f24f281abea69ddc53de6 + languageName: node + linkType: hard + +"handlebars@npm:^4.7.7": + version: 4.7.8 + resolution: "handlebars@npm:4.7.8" + dependencies: + minimist: "npm:^1.2.5" + neo-async: "npm:^2.6.2" + source-map: "npm:^0.6.1" + uglify-js: "npm:^3.1.4" + wordwrap: "npm:^1.0.0" + dependenciesMeta: + uglify-js: + optional: true + bin: + handlebars: bin/handlebars + checksum: 10c0/7aff423ea38a14bb379316f3857fe0df3c5d66119270944247f155ba1f08e07a92b340c58edaa00cfe985c21508870ee5183e0634dcb53dd405f35c93ef7f10d + languageName: node + linkType: hard + +"has-bigints@npm:^1.0.2": + version: 1.1.0 + resolution: "has-bigints@npm:1.1.0" + checksum: 10c0/2de0cdc4a1ccf7a1e75ffede1876994525ac03cc6f5ae7392d3415dd475cd9eee5bceec63669ab61aa997ff6cceebb50ef75561c7002bed8988de2b9d1b40788 + languageName: node + linkType: hard + +"has-flag@npm:^3.0.0": + version: 3.0.0 + resolution: "has-flag@npm:3.0.0" + checksum: 10c0/1c6c83b14b8b1b3c25b0727b8ba3e3b647f99e9e6e13eb7322107261de07a4c1be56fc0d45678fc376e09772a3a1642ccdaf8fc69bdf123b6c086598397ce473 + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 + languageName: node + linkType: hard + +"has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2": + version: 1.0.2 + resolution: "has-property-descriptors@npm:1.0.2" + dependencies: + es-define-property: "npm:^1.0.0" + checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 + languageName: node + linkType: hard + +"has-proto@npm:^1.2.0": + version: 1.2.0 + resolution: "has-proto@npm:1.2.0" + dependencies: + dunder-proto: "npm:^1.0.0" + checksum: 10c0/46538dddab297ec2f43923c3d35237df45d8c55a6fc1067031e04c13ed8a9a8f94954460632fd4da84c31a1721eefee16d901cbb1ae9602bab93bb6e08f93b95 + languageName: node + linkType: hard + +"has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0": + version: 1.1.0 + resolution: "has-symbols@npm:1.1.0" + checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e + languageName: node + linkType: hard + +"has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" + dependencies: + has-symbols: "npm:^1.0.3" + checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c + languageName: node + linkType: hard + +"hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: "npm:^1.1.2" + checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + languageName: node + linkType: hard + +"he@npm:^1.2.0": + version: 1.2.0 + resolution: "he@npm:1.2.0" + bin: + he: bin/he + checksum: 10c0/a27d478befe3c8192f006cdd0639a66798979dfa6e2125c6ac582a19a5ebfec62ad83e8382e6036170d873f46e4536a7e795bf8b95bf7c247f4cc0825ccc8c17 + languageName: node + linkType: hard + +"hoist-non-react-statics@npm:3, hoist-non-react-statics@npm:^3.3.0, hoist-non-react-statics@npm:^3.3.2": + version: 3.3.2 + resolution: "hoist-non-react-statics@npm:3.3.2" + dependencies: + react-is: "npm:^16.7.0" + checksum: 10c0/fe0889169e845d738b59b64badf5e55fa3cf20454f9203d1eb088df322d49d4318df774828e789898dcb280e8a5521bb59b3203385662ca5e9218a6ca5820e74 + languageName: node + linkType: hard + +"hosted-git-info@npm:^2.1.4": + version: 2.8.9 + resolution: "hosted-git-info@npm:2.8.9" + checksum: 10c0/317cbc6b1bbbe23c2a40ae23f3dafe9fa349ce42a89a36f930e3f9c0530c179a3882d2ef1e4141a4c3674d6faaea862138ec55b43ad6f75e387fda2483a13c70 + languageName: node + linkType: hard + +"html-dom-parser@npm:5.0.13": + version: 5.0.13 + resolution: "html-dom-parser@npm:5.0.13" + dependencies: + domhandler: "npm:5.0.3" + htmlparser2: "npm:10.0.0" + checksum: 10c0/9ab49dce1c0708d6f91a495f5bbec397233653c0427ec3f60f8a00db6f44600a4363fe1d5e23c0282a2164de28d0209602dd899d8b35e1f9f78c21682a121807 + languageName: node + linkType: hard + +"html-encoding-sniffer@npm:^3.0.0": + version: 3.0.0 + resolution: "html-encoding-sniffer@npm:3.0.0" + dependencies: + whatwg-encoding: "npm:^2.0.0" + checksum: 10c0/b17b3b0fb5d061d8eb15121c3b0b536376c3e295ecaf09ba48dd69c6b6c957839db124fe1e2b3f11329753a4ee01aa7dedf63b7677999e86da17fbbdd82c5386 + languageName: node + linkType: hard + +"html-escaper@npm:^2.0.0": + version: 2.0.2 + resolution: "html-escaper@npm:2.0.2" + checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 + languageName: node + linkType: hard + +"html-react-parser@npm:^5.2.2": + version: 5.2.2 + resolution: "html-react-parser@npm:5.2.2" + dependencies: + domhandler: "npm:5.0.3" + html-dom-parser: "npm:5.0.13" + react-property: "npm:2.0.2" + style-to-js: "npm:1.1.16" + peerDependencies: + "@types/react": 0.14 || 15 || 16 || 17 || 18 || 19 + react: 0.14 || 15 || 16 || 17 || 18 || 19 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/f757476308831afeba42698c83213045ce83a94577788217022528f9b52dfd2a5076f0f77acf0927ba97c2c695423c6898cef8e162134d7d1ceadc150f80b730 + languageName: node + linkType: hard + +"htmlparser2@npm:10.0.0": + version: 10.0.0 + resolution: "htmlparser2@npm:10.0.0" + dependencies: + domelementtype: "npm:^2.3.0" + domhandler: "npm:^5.0.3" + domutils: "npm:^3.2.1" + entities: "npm:^6.0.0" + checksum: 10c0/47cfa37e529c86a7ba9a1e0e6f951ad26ef8ca5af898ab6e8916fa02c0264c1453b4a65f28b7b8a7f9d0d29b5a70abead8203bf8b3f07bc69407e85e7d9a68e4 + languageName: node + linkType: hard + +"http-assert@npm:^1.3.0": + version: 1.5.0 + resolution: "http-assert@npm:1.5.0" + dependencies: + deep-equal: "npm:~1.0.1" + http-errors: "npm:~1.8.0" + checksum: 10c0/7b4e631114a1a77654f9ba3feb96da305ddbdeb42112fe384b7b3249c7141e460d7177970155bea6e54e655a04850415b744b452c1fe5052eba6f4186d16b095 + languageName: node + linkType: hard + +"http-cache-semantics@npm:^4.0.0, http-cache-semantics@npm:^4.1.1": + version: 4.1.1 + resolution: "http-cache-semantics@npm:4.1.1" + checksum: 10c0/ce1319b8a382eb3cbb4a37c19f6bfe14e5bb5be3d09079e885e8c513ab2d3cd9214902f8a31c9dc4e37022633ceabfc2d697405deeaf1b8f3552bb4ed996fdfc + languageName: node + linkType: hard + +"http-errors@npm:2.0.0": + version: 2.0.0 + resolution: "http-errors@npm:2.0.0" + dependencies: + depd: "npm:2.0.0" + inherits: "npm:2.0.4" + setprototypeof: "npm:1.2.0" + statuses: "npm:2.0.1" + toidentifier: "npm:1.0.1" + checksum: 10c0/fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 + languageName: node + linkType: hard + +"http-errors@npm:^1.6.3, http-errors@npm:^1.7.3, http-errors@npm:~1.8.0": + version: 1.8.1 + resolution: "http-errors@npm:1.8.1" + dependencies: + depd: "npm:~1.1.2" + inherits: "npm:2.0.4" + setprototypeof: "npm:1.2.0" + statuses: "npm:>= 1.5.0 < 2" + toidentifier: "npm:1.0.1" + checksum: 10c0/f01aeecd76260a6fe7f08e192fcbe9b2f39ed20fc717b852669a69930167053b01790998275c6297d44f435cf0e30edd50c05223d1bec9bc484e6cf35b2d6f43 + languageName: node + linkType: hard + +"http-errors@npm:~1.6.2": + version: 1.6.3 + resolution: "http-errors@npm:1.6.3" + dependencies: + depd: "npm:~1.1.2" + inherits: "npm:2.0.3" + setprototypeof: "npm:1.1.0" + statuses: "npm:>= 1.4.0 < 2" + checksum: 10c0/17ec4046ee974477778bfdd525936c254b872054703ec2caa4d6f099566b8adade636ae6aeeacb39302c5cd6e28fb407ebd937f500f5010d0b6850750414ff78 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^4.0.1": + version: 4.0.1 + resolution: "http-proxy-agent@npm:4.0.1" + dependencies: + "@tootallnate/once": "npm:1" + agent-base: "npm:6" + debug: "npm:4" + checksum: 10c0/4fa4774d65b5331814b74ac05cefea56854fc0d5989c80b13432c1b0d42a14c9f4342ca3ad9f0359a52e78da12b1744c9f8a28e50042136ea9171675d972a5fd + languageName: node + linkType: hard + +"http-proxy-agent@npm:^5.0.0": + version: 5.0.0 + resolution: "http-proxy-agent@npm:5.0.0" + dependencies: + "@tootallnate/once": "npm:2" + agent-base: "npm:6" + debug: "npm:4" + checksum: 10c0/32a05e413430b2c1e542e5c74b38a9f14865301dd69dff2e53ddb684989440e3d2ce0c4b64d25eb63cf6283e6265ff979a61cf93e3ca3d23047ddfdc8df34a32 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 + languageName: node + linkType: hard + +"http-signature@npm:~1.4.0": + version: 1.4.0 + resolution: "http-signature@npm:1.4.0" + dependencies: + assert-plus: "npm:^1.0.0" + jsprim: "npm:^2.0.2" + sshpk: "npm:^1.18.0" + checksum: 10c0/b9806f5a9ed82a146589837d175c43b596b1cc8c9431665e83d47c152aa8a4629dd1b1e050f8f56e7f17f62cf97b58e888775093310441ddee5f105f28646b2b + languageName: node + linkType: hard + +"https-proxy-agent@npm:5.0.1, https-proxy-agent@npm:^5.0.0, https-proxy-agent@npm:^5.0.1": + version: 5.0.1 + resolution: "https-proxy-agent@npm:5.0.1" + dependencies: + agent-base: "npm:6" + debug: "npm:4" + checksum: 10c0/6dd639f03434003577c62b27cafdb864784ef19b2de430d8ae2a1d45e31c4fd60719e5637b44db1a88a046934307da7089e03d6089ec3ddacc1189d8de8897d1 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.0, https-proxy-agent@npm:^7.0.1": + version: 7.0.6 + resolution: "https-proxy-agent@npm:7.0.6" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:4" + checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac + languageName: node + linkType: hard + +"human-signals@npm:^1.1.1": + version: 1.1.1 + resolution: "human-signals@npm:1.1.1" + checksum: 10c0/18810ed239a7a5e23fb6c32d0fd4be75d7cd337a07ad59b8dbf0794cb0761e6e628349ee04c409e605fe55344716eab5d0a47a62ba2a2d0d367c89a2b4247b1e + languageName: node + linkType: hard + +"human-signals@npm:^2.1.0": + version: 2.1.0 + resolution: "human-signals@npm:2.1.0" + checksum: 10c0/695edb3edfcfe9c8b52a76926cd31b36978782062c0ed9b1192b36bebc75c4c87c82e178dfcb0ed0fc27ca59d434198aac0bd0be18f5781ded775604db22304a + languageName: node + linkType: hard + +"human-signals@npm:^5.0.0": + version: 5.0.0 + resolution: "human-signals@npm:5.0.0" + checksum: 10c0/5a9359073fe17a8b58e5a085e9a39a950366d9f00217c4ff5878bd312e09d80f460536ea6a3f260b5943a01fe55c158d1cea3fc7bee3d0520aeef04f6d915c82 + languageName: node + linkType: hard + +"husky@npm:^9.1.7": + version: 9.1.7 + resolution: "husky@npm:9.1.7" + bin: + husky: bin.js + checksum: 10c0/35bb110a71086c48906aa7cd3ed4913fb913823715359d65e32e0b964cb1e255593b0ae8014a5005c66a68e6fa66c38dcfa8056dbbdfb8b0187c0ffe7ee3a58f + languageName: node + linkType: hard + +"iconv-lite@npm:0.4.24": + version: 0.4.24 + resolution: "iconv-lite@npm:0.4.24" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3" + checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4 + languageName: node + linkType: hard + +"iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2, iconv-lite@npm:^0.6.3": + version: 0.6.3 + resolution: "iconv-lite@npm:0.6.3" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 + languageName: node + linkType: hard + +"ics@npm:^3.8.1": + version: 3.8.1 + resolution: "ics@npm:3.8.1" + dependencies: + nanoid: "npm:^3.1.23" + runes2: "npm:^1.1.2" + yup: "npm:^1.2.0" + checksum: 10c0/a11634279c15f1c3f3a6c2d669a28079c95d5f59de5e268c560379d76e79f24d80915f66f45a7a959d30a2bef9c7696d8800dc8db95abcc8044b9dcb2accaf26 + languageName: node + linkType: hard + +"icss-utils@npm:^5.0.0, icss-utils@npm:^5.1.0": + version: 5.1.0 + resolution: "icss-utils@npm:5.1.0" + peerDependencies: + postcss: ^8.1.0 + checksum: 10c0/39c92936fabd23169c8611d2b5cc39e39d10b19b0d223352f20a7579f75b39d5f786114a6b8fc62bee8c5fed59ba9e0d38f7219a4db383e324fb3061664b043d + languageName: node + linkType: hard + +"ieee754@npm:^1.1.13": + version: 1.2.1 + resolution: "ieee754@npm:1.2.1" + checksum: 10c0/b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb + languageName: node + linkType: hard + +"ignore@npm:^5.2.0, ignore@npm:^5.2.4, ignore@npm:^5.3.1": + version: 5.3.2 + resolution: "ignore@npm:5.3.2" + checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 + languageName: node + linkType: hard + +"ignore@npm:^7.0.3": + version: 7.0.3 + resolution: "ignore@npm:7.0.3" + checksum: 10c0/8e21637513cbcd888a4873d34d5c651a2e24b3c4c9a6b159335a26bed348c3c386c51d6fab23577f59140e1b226323138fbd50e63882d4568fd12aa6c822029e + languageName: node + linkType: hard + +"image-size@npm:~0.5.0": + version: 0.5.5 + resolution: "image-size@npm:0.5.5" + bin: + image-size: bin/image-size.js + checksum: 10c0/655204163af06732f483a9fe7cce9dff4a29b7b2e88f5c957a5852e8143fa750f5e54b1955a2ca83de99c5220dbd680002d0d4e09140b01433520f4d5a0b1f4c + languageName: node + linkType: hard + +"immer@npm:10.1.1": + version: 10.1.1 + resolution: "immer@npm:10.1.1" + checksum: 10c0/b749e10d137ccae91788f41bd57e9387f32ea6d6ea8fd7eb47b23fd7766681575efc7f86ceef7fe24c3bc9d61e38ff5d2f49c2663b2b0c056e280a4510923653 + languageName: node + linkType: hard + +"immutable@npm:^5.0.2": + version: 5.0.3 + resolution: "immutable@npm:5.0.3" + checksum: 10c0/3269827789e1026cd25c2ea97f0b2c19be852ffd49eda1b674b20178f73d84fa8d945ad6f5ac5bc4545c2b4170af9f6e1f77129bc1cae7974a4bf9b04a9cdfb9 + languageName: node + linkType: hard + +"import-fresh@npm:^3.2.1, import-fresh@npm:^3.3.0": + version: 3.3.1 + resolution: "import-fresh@npm:3.3.1" + dependencies: + parent-module: "npm:^1.0.0" + resolve-from: "npm:^4.0.0" + checksum: 10c0/bf8cc494872fef783249709385ae883b447e3eb09db0ebd15dcead7d9afe7224dad7bd7591c6b73b0b19b3c0f9640eb8ee884f01cfaf2887ab995b0b36a0cbec + languageName: node + linkType: hard + +"import-in-the-middle@npm:^1.11.2, import-in-the-middle@npm:^1.8.1": + version: 1.13.0 + resolution: "import-in-the-middle@npm:1.13.0" + dependencies: + acorn: "npm:^8.14.0" + acorn-import-attributes: "npm:^1.9.5" + cjs-module-lexer: "npm:^1.2.2" + module-details-from-path: "npm:^1.0.3" + checksum: 10c0/f84146bf5eabf5a9cf2269a65413487be26ba21cb3cd33ffb8e59e0f94d775a624a4d2c77ef3dc06f89f7ce5265c3ec2e93546a73b70ce9aac6a6932be6e0aba + languageName: node + linkType: hard + +"import-lazy@npm:~4.0.0": + version: 4.0.0 + resolution: "import-lazy@npm:4.0.0" + checksum: 10c0/a3520313e2c31f25c0b06aa66d167f329832b68a4f957d7c9daf6e0fa41822b6e84948191648b9b9d8ca82f94740cdf15eecf2401a5b42cd1c33fd84f2225cca + languageName: node + linkType: hard + +"import-local@npm:^3.0.2": + version: 3.2.0 + resolution: "import-local@npm:3.2.0" + dependencies: + pkg-dir: "npm:^4.2.0" + resolve-cwd: "npm:^3.0.0" + bin: + import-local-fixture: fixtures/cli.js + checksum: 10c0/94cd6367a672b7e0cb026970c85b76902d2710a64896fa6de93bd5c571dd03b228c5759308959de205083e3b1c61e799f019c9e36ee8e9c523b993e1057f0433 + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 + languageName: node + linkType: hard + +"indent-string@npm:^4.0.0": + version: 4.0.0 + resolution: "indent-string@npm:4.0.0" + checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f + languageName: node + linkType: hard + +"inflation@npm:^2.0.0": + version: 2.1.0 + resolution: "inflation@npm:2.1.0" + checksum: 10c0/aadfcb8047a7e00d644e2e195f901dd9d7266c2be2326b7f8f6a99298f14916f1e322d00108a7e2778d6e76a8dc2174ddb9ac14bcdfe4f4866dfd612b695ab5d + languageName: node + linkType: hard + +"inflight@npm:^1.0.4": + version: 1.0.6 + resolution: "inflight@npm:1.0.6" + dependencies: + once: "npm:^1.3.0" + wrappy: "npm:1" + checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2 + languageName: node + linkType: hard + +"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3": + version: 2.0.4 + resolution: "inherits@npm:2.0.4" + checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 + languageName: node + linkType: hard + +"inherits@npm:2.0.3": + version: 2.0.3 + resolution: "inherits@npm:2.0.3" + checksum: 10c0/6e56402373149ea076a434072671f9982f5fad030c7662be0332122fe6c0fa490acb3cc1010d90b6eff8d640b1167d77674add52dfd1bb85d545cf29e80e73e7 + languageName: node + linkType: hard + +"ini@npm:2.0.0": + version: 2.0.0 + resolution: "ini@npm:2.0.0" + checksum: 10c0/2e0c8f386369139029da87819438b20a1ff3fe58372d93fb1a86e9d9344125ace3a806b8ec4eb160a46e64cbc422fe68251869441676af49b7fc441af2389c25 + languageName: node + linkType: hard + +"ini@npm:4.1.1": + version: 4.1.1 + resolution: "ini@npm:4.1.1" + checksum: 10c0/7fddc8dfd3e63567d4fdd5d999d1bf8a8487f1479d0b34a1d01f28d391a9228d261e19abc38e1a6a1ceb3400c727204fce05725d5eb598dfcf2077a1e3afe211 + languageName: node + linkType: hard + +"ini@npm:^1.3.4, ini@npm:~1.3.0": + version: 1.3.8 + resolution: "ini@npm:1.3.8" + checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a + languageName: node + linkType: hard + +"inline-style-parser@npm:0.2.4": + version: 0.2.4 + resolution: "inline-style-parser@npm:0.2.4" + checksum: 10c0/ddc0b210eaa03e0f98d677b9836242c583c7c6051e84ce0e704ae4626e7871c5b78f8e30853480218b446355745775df318d4f82d33087ff7e393245efa9a881 + languageName: node + linkType: hard + +"input-otp@npm:^1.4.2": + version: 1.4.2 + resolution: "input-otp@npm:1.4.2" + peerDependencies: + react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc + checksum: 10c0/d3a3216a75ed832993f3f2852edd7a85c5bae30ea6d251182119120488bbf9fed7cfdd91819bcee6daff57b3cfcbca94fd16d6a7c92cee4d806c0d4fa6ff1128 + languageName: node + linkType: hard + +"internal-slot@npm:^1.1.0": + version: 1.1.0 + resolution: "internal-slot@npm:1.1.0" + dependencies: + es-errors: "npm:^1.3.0" + hasown: "npm:^2.0.2" + side-channel: "npm:^1.1.0" + checksum: 10c0/03966f5e259b009a9bf1a78d60da920df198af4318ec004f57b8aef1dd3fe377fbc8cce63a96e8c810010302654de89f9e19de1cd8ad0061d15be28a695465c7 + languageName: node + linkType: hard + +"intl-messageformat@npm:10.7.7": + version: 10.7.7 + resolution: "intl-messageformat@npm:10.7.7" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/fast-memoize": "npm:2.2.3" + "@formatjs/icu-messageformat-parser": "npm:2.9.4" + tslib: "npm:2" + checksum: 10c0/691895fb6a73a2feb2569658706e0d452861441de184dd1c9201e458a39fb80fc80080dd40d3d370400a52663f87de7a6d5a263c94245492f7265dd760441a95 + languageName: node + linkType: hard + +"intl-messageformat@npm:^10.1.0": + version: 10.7.15 + resolution: "intl-messageformat@npm:10.7.15" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.3.3" + "@formatjs/fast-memoize": "npm:2.2.6" + "@formatjs/icu-messageformat-parser": "npm:2.11.1" + tslib: "npm:2" + checksum: 10c0/5759cd38718b7e4874fd6eb5e759e920227f993bdf17d71cd7474919098aafc13c8bbc63f5ccb2bafe13093f3a519fd7a03a47efc84bb3e9fbf9f25f88a408c9 + languageName: node + linkType: hard + +"ip-address@npm:^9.0.5": + version: 9.0.5 + resolution: "ip-address@npm:9.0.5" + dependencies: + jsbn: "npm:1.1.0" + sprintf-js: "npm:^1.1.3" + checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc + languageName: node + linkType: hard + +"is-arguments@npm:^1.0.4": + version: 1.2.0 + resolution: "is-arguments@npm:1.2.0" + dependencies: + call-bound: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/6377344b31e9fcb707c6751ee89b11f132f32338e6a782ec2eac9393b0cbd32235dad93052998cda778ee058754860738341d8114910d50ada5615912bb929fc + languageName: node + linkType: hard + +"is-array-buffer@npm:^3.0.4, is-array-buffer@npm:^3.0.5": + version: 3.0.5 + resolution: "is-array-buffer@npm:3.0.5" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + get-intrinsic: "npm:^1.2.6" + checksum: 10c0/c5c9f25606e86dbb12e756694afbbff64bc8b348d1bc989324c037e1068695131930199d6ad381952715dad3a9569333817f0b1a72ce5af7f883ce802e49c83d + languageName: node + linkType: hard + +"is-arrayish@npm:^0.2.1": + version: 0.2.1 + resolution: "is-arrayish@npm:0.2.1" + checksum: 10c0/e7fb686a739068bb70f860b39b67afc62acc62e36bb61c5f965768abce1873b379c563e61dd2adad96ebb7edf6651111b385e490cf508378959b0ed4cac4e729 + languageName: node + linkType: hard + +"is-arrayish@npm:^0.3.1": + version: 0.3.2 + resolution: "is-arrayish@npm:0.3.2" + checksum: 10c0/f59b43dc1d129edb6f0e282595e56477f98c40278a2acdc8b0a5c57097c9eff8fe55470493df5775478cf32a4dc8eaf6d3a749f07ceee5bc263a78b2434f6a54 + languageName: node + linkType: hard + +"is-async-function@npm:^2.0.0": + version: 2.1.1 + resolution: "is-async-function@npm:2.1.1" + dependencies: + async-function: "npm:^1.0.0" + call-bound: "npm:^1.0.3" + get-proto: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.2" + safe-regex-test: "npm:^1.1.0" + checksum: 10c0/d70c236a5e82de6fc4d44368ffd0c2fee2b088b893511ce21e679da275a5ecc6015ff59a7d7e1bdd7ca39f71a8dbdd253cf8cce5c6b3c91cdd5b42b5ce677298 + languageName: node + linkType: hard + +"is-bigint@npm:^1.1.0": + version: 1.1.0 + resolution: "is-bigint@npm:1.1.0" + dependencies: + has-bigints: "npm:^1.0.2" + checksum: 10c0/f4f4b905ceb195be90a6ea7f34323bf1c18e3793f18922e3e9a73c684c29eeeeff5175605c3a3a74cc38185fe27758f07efba3dbae812e5c5afbc0d2316b40e4 + languageName: node + linkType: hard + +"is-binary-path@npm:~2.1.0": + version: 2.1.0 + resolution: "is-binary-path@npm:2.1.0" + dependencies: + binary-extensions: "npm:^2.0.0" + checksum: 10c0/a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38 + languageName: node + linkType: hard + +"is-boolean-object@npm:^1.2.1": + version: 1.2.2 + resolution: "is-boolean-object@npm:1.2.2" + dependencies: + call-bound: "npm:^1.0.3" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/36ff6baf6bd18b3130186990026f5a95c709345c39cd368468e6c1b6ab52201e9fd26d8e1f4c066357b4938b0f0401e1a5000e08257787c1a02f3a719457001e + languageName: node + linkType: hard + +"is-bun-module@npm:^1.0.2": + version: 1.3.0 + resolution: "is-bun-module@npm:1.3.0" + dependencies: + semver: "npm:^7.6.3" + checksum: 10c0/2966744188fcd28e0123c52158c7073973f88babfa9ab04e2846ec5862d6b0f8f398df6413429d930f7c5ee6111ce2cbfb3eb8652d9ec42d4a37dc5089a866fb + languageName: node + linkType: hard + +"is-callable@npm:^1.2.7": + version: 1.2.7 + resolution: "is-callable@npm:1.2.7" + checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f + languageName: node + linkType: hard + +"is-core-module@npm:^2.1.0, is-core-module@npm:^2.13.0, is-core-module@npm:^2.15.1, is-core-module@npm:^2.16.0": + version: 2.16.1 + resolution: "is-core-module@npm:2.16.1" + dependencies: + hasown: "npm:^2.0.2" + checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd + languageName: node + linkType: hard + +"is-d@npm:^1.0.0": + version: 1.0.0 + resolution: "is-d@npm:1.0.0" + dependencies: + pinkie-promise: "npm:^2.0.0" + checksum: 10c0/f75cc67bf50fc3abefbdf299bdbc1a09d7afa9a2912d3c5fbcd239de38873365aa5e802436a3fe2160e576172d06a866319d8cd5dbb1460393d39bea1980184f + languageName: node + linkType: hard + +"is-data-view@npm:^1.0.1, is-data-view@npm:^1.0.2": + version: 1.0.2 + resolution: "is-data-view@npm:1.0.2" + dependencies: + call-bound: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.6" + is-typed-array: "npm:^1.1.13" + checksum: 10c0/ef3548a99d7e7f1370ce21006baca6d40c73e9f15c941f89f0049c79714c873d03b02dae1c64b3f861f55163ecc16da06506c5b8a1d4f16650b3d9351c380153 + languageName: node + linkType: hard + +"is-date-object@npm:^1.0.5, is-date-object@npm:^1.1.0": + version: 1.1.0 + resolution: "is-date-object@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.2" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/1a4d199c8e9e9cac5128d32e6626fa7805175af9df015620ac0d5d45854ccf348ba494679d872d37301032e35a54fc7978fba1687e8721b2139aea7870cafa2f + languageName: node + linkType: hard + +"is-docker@npm:^2.0.0, is-docker@npm:^2.1.1": + version: 2.2.1 + resolution: "is-docker@npm:2.2.1" + bin: + is-docker: cli.js + checksum: 10c0/e828365958d155f90c409cdbe958f64051d99e8aedc2c8c4cd7c89dcf35329daed42f7b99346f7828df013e27deb8f721cf9408ba878c76eb9e8290235fbcdcc + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 + languageName: node + linkType: hard + +"is-finalizationregistry@npm:^1.1.0": + version: 1.1.1 + resolution: "is-finalizationregistry@npm:1.1.1" + dependencies: + call-bound: "npm:^1.0.3" + checksum: 10c0/818dff679b64f19e228a8205a1e2d09989a98e98def3a817f889208cfcbf918d321b251aadf2c05918194803ebd2eb01b14fc9d0b2bea53d984f4137bfca5e97 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^4.0.0": + version: 4.0.0 + resolution: "is-fullwidth-code-point@npm:4.0.0" + checksum: 10c0/df2a717e813567db0f659c306d61f2f804d480752526886954a2a3e2246c7745fd07a52b5fecf2b68caf0a6c79dcdace6166fdf29cc76ed9975cc334f0a018b8 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^5.0.0": + version: 5.0.0 + resolution: "is-fullwidth-code-point@npm:5.0.0" + dependencies: + get-east-asian-width: "npm:^1.0.0" + checksum: 10c0/cd591b27d43d76b05fa65ed03eddce57a16e1eca0b7797ff7255de97019bcaf0219acfc0c4f7af13319e13541f2a53c0ace476f442b13267b9a6a7568f2b65c8 + languageName: node + linkType: hard + +"is-generator-fn@npm:^2.0.0": + version: 2.1.0 + resolution: "is-generator-fn@npm:2.1.0" + checksum: 10c0/2957cab387997a466cd0bf5c1b6047bd21ecb32bdcfd8996b15747aa01002c1c88731802f1b3d34ac99f4f6874b626418bd118658cf39380fe5fff32a3af9c4d + languageName: node + linkType: hard + +"is-generator-function@npm:^1.0.10, is-generator-function@npm:^1.0.7": + version: 1.1.0 + resolution: "is-generator-function@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.3" + get-proto: "npm:^1.0.0" + has-tostringtag: "npm:^1.0.2" + safe-regex-test: "npm:^1.1.0" + checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a + languageName: node + linkType: hard + +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: "npm:^2.1.1" + checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a + languageName: node + linkType: hard + +"is-in-ci@npm:^1.0.0": + version: 1.0.0 + resolution: "is-in-ci@npm:1.0.0" + bin: + is-in-ci: cli.js + checksum: 10c0/98f9cec4c35aece4cf731abf35ebf28359a9b0324fac810da05b842515d9ccb33b8999c1d9a679f0362e1a4df3292065c38d7f86327b1387fa667bc0150f4898 + languageName: node + linkType: hard + +"is-installed-globally@npm:^1.0.0": + version: 1.0.0 + resolution: "is-installed-globally@npm:1.0.0" + dependencies: + global-directory: "npm:^4.0.1" + is-path-inside: "npm:^4.0.0" + checksum: 10c0/5f57745b6e75b2e9e707a26470d0cb74291d9be33c0fe0dc06c6955fe086bc2ca0a8960631b1ecb9677100eac90af33e911aec7a2c0b88097d702bfa3b76486d + languageName: node + linkType: hard + +"is-installed-globally@npm:~0.4.0": + version: 0.4.0 + resolution: "is-installed-globally@npm:0.4.0" + dependencies: + global-dirs: "npm:^3.0.0" + is-path-inside: "npm:^3.0.2" + checksum: 10c0/f3e6220ee5824b845c9ed0d4b42c24272701f1f9926936e30c0e676254ca5b34d1b92c6205cae11b283776f9529212c0cdabb20ec280a6451677d6493ca9c22d + languageName: node + linkType: hard + +"is-map@npm:^2.0.3": + version: 2.0.3 + resolution: "is-map@npm:2.0.3" + checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc + languageName: node + linkType: hard + +"is-npm@npm:^6.0.0": + version: 6.0.0 + resolution: "is-npm@npm:6.0.0" + checksum: 10c0/1f064c66325cba6e494783bee4e635caa2655aad7f853a0e045d086e0bb7d83d2d6cdf1745dc9a7c7c93dacbf816fbee1f8d9179b02d5d01674d4f92541dc0d9 + languageName: node + linkType: hard + +"is-number-object@npm:^1.1.1": + version: 1.1.1 + resolution: "is-number-object@npm:1.1.1" + dependencies: + call-bound: "npm:^1.0.3" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/97b451b41f25135ff021d85c436ff0100d84a039bb87ffd799cbcdbea81ef30c464ced38258cdd34f080be08fc3b076ca1f472086286d2aa43521d6ec6a79f53 + languageName: node + linkType: hard + +"is-number@npm:^7.0.0": + version: 7.0.0 + resolution: "is-number@npm:7.0.0" + checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811 + languageName: node + linkType: hard + +"is-path-inside@npm:^3.0.2, is-path-inside@npm:^3.0.3": + version: 3.0.3 + resolution: "is-path-inside@npm:3.0.3" + checksum: 10c0/cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05 + languageName: node + linkType: hard + +"is-path-inside@npm:^4.0.0": + version: 4.0.0 + resolution: "is-path-inside@npm:4.0.0" + checksum: 10c0/51188d7e2b1d907a9a5f7c18d99a90b60870b951ed87cf97595d9aaa429d4c010652c3350bcbf31182e7f4b0eab9a1860b43e16729b13cb1a44baaa6cdb64c46 + languageName: node + linkType: hard + +"is-plain-obj@npm:^4.1.0": + version: 4.1.0 + resolution: "is-plain-obj@npm:4.1.0" + checksum: 10c0/32130d651d71d9564dc88ba7e6fda0e91a1010a3694648e9f4f47bb6080438140696d3e3e15c741411d712e47ac9edc1a8a9de1fe76f3487b0d90be06ac9975e + languageName: node + linkType: hard + +"is-potential-custom-element-name@npm:^1.0.1": + version: 1.0.1 + resolution: "is-potential-custom-element-name@npm:1.0.1" + checksum: 10c0/b73e2f22bc863b0939941d369486d308b43d7aef1f9439705e3582bfccaa4516406865e32c968a35f97a99396dac84e2624e67b0a16b0a15086a785e16ce7db9 + languageName: node + linkType: hard + +"is-reference@npm:1.2.1": + version: 1.2.1 + resolution: "is-reference@npm:1.2.1" + dependencies: + "@types/estree": "npm:*" + checksum: 10c0/7dc819fc8de7790264a0a5d531164f9f5b9ef5aa1cd05f35322d14db39c8a2ec78fd5d4bf57f9789f3ddd2b3abeea7728432b759636157a42db12a9e8c3b549b + languageName: node + linkType: hard + +"is-regex@npm:^1.2.1": + version: 1.2.1 + resolution: "is-regex@npm:1.2.1" + dependencies: + call-bound: "npm:^1.0.2" + gopd: "npm:^1.2.0" + has-tostringtag: "npm:^1.0.2" + hasown: "npm:^2.0.2" + checksum: 10c0/1d3715d2b7889932349241680032e85d0b492cfcb045acb75ffc2c3085e8d561184f1f7e84b6f8321935b4aea39bc9c6ba74ed595b57ce4881a51dfdbc214e04 + languageName: node + linkType: hard + +"is-set@npm:^2.0.3": + version: 2.0.3 + resolution: "is-set@npm:2.0.3" + checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7 + languageName: node + linkType: hard + +"is-shared-array-buffer@npm:^1.0.4": + version: 1.0.4 + resolution: "is-shared-array-buffer@npm:1.0.4" + dependencies: + call-bound: "npm:^1.0.3" + checksum: 10c0/65158c2feb41ff1edd6bbd6fd8403a69861cf273ff36077982b5d4d68e1d59278c71691216a4a64632bd76d4792d4d1d2553901b6666d84ade13bba5ea7bc7db + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 + languageName: node + linkType: hard + +"is-stream@npm:^3.0.0": + version: 3.0.0 + resolution: "is-stream@npm:3.0.0" + checksum: 10c0/eb2f7127af02ee9aa2a0237b730e47ac2de0d4e76a4a905a50a11557f2339df5765eaea4ceb8029f1efa978586abe776908720bfcb1900c20c6ec5145f6f29d8 + languageName: node + linkType: hard + +"is-string@npm:^1.0.7, is-string@npm:^1.1.1": + version: 1.1.1 + resolution: "is-string@npm:1.1.1" + dependencies: + call-bound: "npm:^1.0.3" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/2f518b4e47886bb81567faba6ffd0d8a8333cf84336e2e78bf160693972e32ad00fe84b0926491cc598dee576fdc55642c92e62d0cbe96bf36f643b6f956f94d + languageName: node + linkType: hard + +"is-subset-of@npm:^3.1.10": + version: 3.1.10 + resolution: "is-subset-of@npm:3.1.10" + dependencies: + typedescriptor: "npm:3.0.2" + checksum: 10c0/79d569c05fe64b7fe8f12b22205064b0fe67ed90e4359b3eb1622d8cfcc48d289b0c49310c7547dec2a4a13561e99e157088e3f67b00a02829a89acb3862225e + languageName: node + linkType: hard + +"is-symbol@npm:^1.0.4, is-symbol@npm:^1.1.1": + version: 1.1.1 + resolution: "is-symbol@npm:1.1.1" + dependencies: + call-bound: "npm:^1.0.2" + has-symbols: "npm:^1.1.0" + safe-regex-test: "npm:^1.1.0" + checksum: 10c0/f08f3e255c12442e833f75a9e2b84b2d4882fdfd920513cf2a4a2324f0a5b076c8fd913778e3ea5d258d5183e9d92c0cd20e04b03ab3df05316b049b2670af1e + languageName: node + linkType: hard + +"is-typed-array@npm:^1.1.13, is-typed-array@npm:^1.1.14, is-typed-array@npm:^1.1.15, is-typed-array@npm:^1.1.3": + version: 1.1.15 + resolution: "is-typed-array@npm:1.1.15" + dependencies: + which-typed-array: "npm:^1.1.16" + checksum: 10c0/415511da3669e36e002820584e264997ffe277ff136643a3126cc949197e6ca3334d0f12d084e83b1994af2e9c8141275c741cf2b7da5a2ff62dd0cac26f76c4 + languageName: node + linkType: hard + +"is-typedarray@npm:~1.0.0": + version: 1.0.0 + resolution: "is-typedarray@npm:1.0.0" + checksum: 10c0/4c096275ba041a17a13cca33ac21c16bc4fd2d7d7eb94525e7cd2c2f2c1a3ab956e37622290642501ff4310601e413b675cf399ad6db49855527d2163b3eeeec + languageName: node + linkType: hard + +"is-unicode-supported@npm:^0.1.0": + version: 0.1.0 + resolution: "is-unicode-supported@npm:0.1.0" + checksum: 10c0/00cbe3455c3756be68d2542c416cab888aebd5012781d6819749fefb15162ff23e38501fe681b3d751c73e8ff561ac09a5293eba6f58fdf0178462ce6dcb3453 + languageName: node + linkType: hard + +"is-weakmap@npm:^2.0.2": + version: 2.0.2 + resolution: "is-weakmap@npm:2.0.2" + checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299 + languageName: node + linkType: hard + +"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0": + version: 1.1.1 + resolution: "is-weakref@npm:1.1.1" + dependencies: + call-bound: "npm:^1.0.3" + checksum: 10c0/8e0a9c07b0c780949a100e2cab2b5560a48ecd4c61726923c1a9b77b6ab0aa0046c9e7fb2206042296817045376dee2c8ab1dabe08c7c3dfbf195b01275a085b + languageName: node + linkType: hard + +"is-weakset@npm:^2.0.3": + version: 2.0.4 + resolution: "is-weakset@npm:2.0.4" + dependencies: + call-bound: "npm:^1.0.3" + get-intrinsic: "npm:^1.2.6" + checksum: 10c0/6491eba08acb8dc9532da23cb226b7d0192ede0b88f16199e592e4769db0a077119c1f5d2283d1e0d16d739115f70046e887e477eb0e66cd90e1bb29f28ba647 + languageName: node + linkType: hard + +"is-what@npm:^3.14.1": + version: 3.14.1 + resolution: "is-what@npm:3.14.1" + checksum: 10c0/4b770b85454c877b6929a84fd47c318e1f8c2ff70fd72fd625bc3fde8e0c18a6e57345b6e7aa1ee9fbd1c608d27cfe885df473036c5c2e40cd2187250804a2c7 + languageName: node + linkType: hard + +"is-what@npm:^4.1.8": + version: 4.1.16 + resolution: "is-what@npm:4.1.16" + checksum: 10c0/611f1947776826dcf85b57cfb7bd3b3ea6f4b94a9c2f551d4a53f653cf0cb9d1e6518846648256d46ee6c91d114b6d09d2ac8a07306f7430c5900f87466aae5b + languageName: node + linkType: hard + +"is-wsl@npm:^2.1.1, is-wsl@npm:^2.2.0": + version: 2.2.0 + resolution: "is-wsl@npm:2.2.0" + dependencies: + is-docker: "npm:^2.0.0" + checksum: 10c0/a6fa2d370d21be487c0165c7a440d567274fbba1a817f2f0bfa41cc5e3af25041d84267baa22df66696956038a43973e72fca117918c91431920bdef490fa25e + languageName: node + linkType: hard + +"isarray@npm:0.0.1": + version: 0.0.1 + resolution: "isarray@npm:0.0.1" + checksum: 10c0/ed1e62da617f71fe348907c71743b5ed550448b455f8d269f89a7c7ddb8ae6e962de3dab6a74a237b06f5eb7f6ece7a45ada8ce96d87fe972926530f91ae3311 + languageName: node + linkType: hard + +"isarray@npm:^2.0.5": + version: 2.0.5 + resolution: "isarray@npm:2.0.5" + checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd + languageName: node + linkType: hard + +"isarray@npm:~1.0.0": + version: 1.0.0 + resolution: "isarray@npm:1.0.0" + checksum: 10c0/18b5be6669be53425f0b84098732670ed4e727e3af33bc7f948aac01782110eb9a18b3b329c5323bcdd3acdaae547ee077d3951317e7f133bff7105264b3003d + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d + languageName: node + linkType: hard + +"isexe@npm:^3.1.1": + version: 3.1.1 + resolution: "isexe@npm:3.1.1" + checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 + languageName: node + linkType: hard + +"isstream@npm:~0.1.2": + version: 0.1.2 + resolution: "isstream@npm:0.1.2" + checksum: 10c0/a6686a878735ca0a48e0d674dd6d8ad31aedfaf70f07920da16ceadc7577b46d67179a60b313f2e6860cb097a2c2eb3cbd0b89e921ae89199a59a17c3273d66f + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.2 + resolution: "istanbul-lib-coverage@npm:3.2.2" + checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^5.0.4": + version: 5.2.1 + resolution: "istanbul-lib-instrument@npm:5.2.1" + dependencies: + "@babel/core": "npm:^7.12.3" + "@babel/parser": "npm:^7.14.7" + "@istanbuljs/schema": "npm:^0.1.2" + istanbul-lib-coverage: "npm:^3.2.0" + semver: "npm:^6.3.0" + checksum: 10c0/8a1bdf3e377dcc0d33ec32fe2b6ecacdb1e4358fd0eb923d4326bb11c67622c0ceb99600a680f3dad5d29c66fc1991306081e339b4d43d0b8a2ab2e1d910a6ee + languageName: node + linkType: hard + +"istanbul-lib-instrument@npm:^6.0.0": + version: 6.0.3 + resolution: "istanbul-lib-instrument@npm:6.0.3" + dependencies: + "@babel/core": "npm:^7.23.9" + "@babel/parser": "npm:^7.23.9" + "@istanbuljs/schema": "npm:^0.1.3" + istanbul-lib-coverage: "npm:^3.2.0" + semver: "npm:^7.5.4" + checksum: 10c0/a1894e060dd2a3b9f046ffdc87b44c00a35516f5e6b7baf4910369acca79e506fc5323a816f811ae23d82334b38e3ddeb8b3b331bd2c860540793b59a8689128 + languageName: node + linkType: hard + +"istanbul-lib-report@npm:^3.0.0": + version: 3.0.1 + resolution: "istanbul-lib-report@npm:3.0.1" + dependencies: + istanbul-lib-coverage: "npm:^3.0.0" + make-dir: "npm:^4.0.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7 + languageName: node + linkType: hard + +"istanbul-lib-source-maps@npm:^4.0.0": + version: 4.0.1 + resolution: "istanbul-lib-source-maps@npm:4.0.1" + dependencies: + debug: "npm:^4.1.1" + istanbul-lib-coverage: "npm:^3.0.0" + source-map: "npm:^0.6.1" + checksum: 10c0/19e4cc405016f2c906dff271a76715b3e881fa9faeb3f09a86cb99b8512b3a5ed19cadfe0b54c17ca0e54c1142c9c6de9330d65506e35873994e06634eebeb66 + languageName: node + linkType: hard + +"istanbul-reports@npm:^3.1.3": + version: 3.1.7 + resolution: "istanbul-reports@npm:3.1.7" + dependencies: + html-escaper: "npm:^2.0.0" + istanbul-lib-report: "npm:^3.0.0" + checksum: 10c0/a379fadf9cf8dc5dfe25568115721d4a7eb82fbd50b005a6672aff9c6989b20cc9312d7865814e0859cd8df58cbf664482e1d3604be0afde1f7fc3ccc1394a51 + languageName: node + linkType: hard + +"iterator.prototype@npm:^1.1.4": + version: 1.1.5 + resolution: "iterator.prototype@npm:1.1.5" + dependencies: + define-data-property: "npm:^1.1.4" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.6" + get-proto: "npm:^1.0.0" + has-symbols: "npm:^1.1.0" + set-function-name: "npm:^2.0.2" + checksum: 10c0/f7a262808e1b41049ab55f1e9c29af7ec1025a000d243b83edf34ce2416eedd56079b117fa59376bb4a724110690f13aa8427f2ee29a09eec63a7e72367626d0 + languageName: node + linkType: hard + +"jackspeak@npm:^2.3.5": + version: 2.3.6 + resolution: "jackspeak@npm:2.3.6" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111 + languageName: node + linkType: hard + +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 + languageName: node + linkType: hard + +"jest-changed-files@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-changed-files@npm:29.7.0" + dependencies: + execa: "npm:^5.0.0" + jest-util: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + checksum: 10c0/e071384d9e2f6bb462231ac53f29bff86f0e12394c1b49ccafbad225ce2ab7da226279a8a94f421949920bef9be7ef574fd86aee22e8adfa149be73554ab828b + languageName: node + linkType: hard + +"jest-circus@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-circus@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/expect": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + co: "npm:^4.6.0" + dedent: "npm:^1.0.0" + is-generator-fn: "npm:^2.0.0" + jest-each: "npm:^29.7.0" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + pretty-format: "npm:^29.7.0" + pure-rand: "npm:^6.0.0" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 10c0/8d15344cf7a9f14e926f0deed64ed190c7a4fa1ed1acfcd81e4cc094d3cc5bf7902ebb7b874edc98ada4185688f90c91e1747e0dfd7ac12463b097968ae74b5e + languageName: node + linkType: hard + +"jest-cli@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-cli@npm:29.7.0" + dependencies: + "@jest/core": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + create-jest: "npm:^29.7.0" + exit: "npm:^0.1.2" + import-local: "npm:^3.0.2" + jest-config: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + yargs: "npm:^17.3.1" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: 10c0/a658fd55050d4075d65c1066364595962ead7661711495cfa1dfeecf3d6d0a8ffec532f3dbd8afbb3e172dd5fd2fb2e813c5e10256e7cf2fea766314942fb43a + languageName: node + linkType: hard + +"jest-config@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-config@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@jest/test-sequencer": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + babel-jest: "npm:^29.7.0" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + deepmerge: "npm:^4.2.2" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + jest-circus: "npm:^29.7.0" + jest-environment-node: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-runner: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + parse-json: "npm:^5.2.0" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-json-comments: "npm:^3.1.1" + peerDependencies: + "@types/node": "*" + ts-node: ">=9.0.0" + peerDependenciesMeta: + "@types/node": + optional: true + ts-node: + optional: true + checksum: 10c0/bab23c2eda1fff06e0d104b00d6adfb1d1aabb7128441899c9bff2247bd26710b050a5364281ce8d52b46b499153bf7e3ee88b19831a8f3451f1477a0246a0f1 + languageName: node + linkType: hard + +"jest-diff@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-diff@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + diff-sequences: "npm:^29.6.3" + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/89a4a7f182590f56f526443dde69acefb1f2f0c9e59253c61d319569856c4931eae66b8a3790c443f529267a0ddba5ba80431c585deed81827032b2b2a1fc999 + languageName: node + linkType: hard + +"jest-docblock@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-docblock@npm:29.7.0" + dependencies: + detect-newline: "npm:^3.0.0" + checksum: 10c0/d932a8272345cf6b6142bb70a2bb63e0856cc0093f082821577ea5bdf4643916a98744dfc992189d2b1417c38a11fa42466f6111526bc1fb81366f56410f3be9 + languageName: node + linkType: hard + +"jest-each@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-each@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + pretty-format: "npm:^29.7.0" + checksum: 10c0/f7f9a90ebee80cc688e825feceb2613627826ac41ea76a366fa58e669c3b2403d364c7c0a74d862d469b103c843154f8456d3b1c02b487509a12afa8b59edbb4 + languageName: node + linkType: hard + +"jest-environment-jsdom@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-environment-jsdom@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/fake-timers": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/jsdom": "npm:^20.0.0" + "@types/node": "npm:*" + jest-mock: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jsdom: "npm:^20.0.0" + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + checksum: 10c0/139b94e2c8ec1bb5a46ce17df5211da65ce867354b3fd4e00fa6a0d1da95902df4cf7881273fc6ea937e5c325d39d6773f0d41b6c469363334de9d489d2c321f + languageName: node + linkType: hard + +"jest-environment-node@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-environment-node@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/fake-timers": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-mock: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + checksum: 10c0/61f04fec077f8b1b5c1a633e3612fc0c9aa79a0ab7b05600683428f1e01a4d35346c474bde6f439f9fcc1a4aa9a2861ff852d079a43ab64b02105d1004b2592b + languageName: node + linkType: hard + +"jest-get-type@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-get-type@npm:29.6.3" + checksum: 10c0/552e7a97a983d3c2d4e412a44eb7de0430ff773dd99f7500962c268d6dfbfa431d7d08f919c9d960530e5f7f78eb47f267ad9b318265e5092b3ff9ede0db7c2b + languageName: node + linkType: hard + +"jest-haste-map@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-haste-map@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/graceful-fs": "npm:^4.1.3" + "@types/node": "npm:*" + anymatch: "npm:^3.0.3" + fb-watchman: "npm:^2.0.0" + fsevents: "npm:^2.3.2" + graceful-fs: "npm:^4.2.9" + jest-regex-util: "npm:^29.6.3" + jest-util: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + micromatch: "npm:^4.0.4" + walker: "npm:^1.0.8" + dependenciesMeta: + fsevents: + optional: true + checksum: 10c0/2683a8f29793c75a4728787662972fedd9267704c8f7ef9d84f2beed9a977f1cf5e998c07b6f36ba5603f53cb010c911fe8cd0ac9886e073fe28ca66beefd30c + languageName: node + linkType: hard + +"jest-leak-detector@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-leak-detector@npm:29.7.0" + dependencies: + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/71bb9f77fc489acb842a5c7be030f2b9acb18574dc9fb98b3100fc57d422b1abc55f08040884bd6e6dbf455047a62f7eaff12aa4058f7cbdc11558718ca6a395 + languageName: node + linkType: hard + +"jest-matcher-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-matcher-utils@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + jest-diff: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + pretty-format: "npm:^29.7.0" + checksum: 10c0/0d0e70b28fa5c7d4dce701dc1f46ae0922102aadc24ed45d594dd9b7ae0a8a6ef8b216718d1ab79e451291217e05d4d49a82666e1a3cc2b428b75cd9c933244e + languageName: node + linkType: hard + +"jest-message-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-message-util@npm:29.7.0" + dependencies: + "@babel/code-frame": "npm:^7.12.13" + "@jest/types": "npm:^29.6.3" + "@types/stack-utils": "npm:^2.0.0" + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + micromatch: "npm:^4.0.4" + pretty-format: "npm:^29.7.0" + slash: "npm:^3.0.0" + stack-utils: "npm:^2.0.3" + checksum: 10c0/850ae35477f59f3e6f27efac5215f706296e2104af39232bb14e5403e067992afb5c015e87a9243ec4d9df38525ef1ca663af9f2f4766aa116f127247008bd22 + languageName: node + linkType: hard + +"jest-mock@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-mock@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + jest-util: "npm:^29.7.0" + checksum: 10c0/7b9f8349ee87695a309fe15c46a74ab04c853369e5c40952d68061d9dc3159a0f0ed73e215f81b07ee97a9faaf10aebe5877a9d6255068a0977eae6a9ff1d5ac + languageName: node + linkType: hard + +"jest-pnp-resolver@npm:^1.2.2": + version: 1.2.3 + resolution: "jest-pnp-resolver@npm:1.2.3" + peerDependencies: + jest-resolve: "*" + peerDependenciesMeta: + jest-resolve: + optional: true + checksum: 10c0/86eec0c78449a2de733a6d3e316d49461af6a858070e113c97f75fb742a48c2396ea94150cbca44159ffd4a959f743a47a8b37a792ef6fdad2cf0a5cba973fac + languageName: node + linkType: hard + +"jest-regex-util@npm:^29.6.3": + version: 29.6.3 + resolution: "jest-regex-util@npm:29.6.3" + checksum: 10c0/4e33fb16c4f42111159cafe26397118dcfc4cf08bc178a67149fb05f45546a91928b820894572679d62559839d0992e21080a1527faad65daaae8743a5705a3b + languageName: node + linkType: hard + +"jest-resolve-dependencies@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-resolve-dependencies@npm:29.7.0" + dependencies: + jest-regex-util: "npm:^29.6.3" + jest-snapshot: "npm:^29.7.0" + checksum: 10c0/b6e9ad8ae5b6049474118ea6441dfddd385b6d1fc471db0136f7c8fbcfe97137a9665e4f837a9f49f15a29a1deb95a14439b7aec812f3f99d08f228464930f0d + languageName: node + linkType: hard + +"jest-resolve@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-resolve@npm:29.7.0" + dependencies: + chalk: "npm:^4.0.0" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-pnp-resolver: "npm:^1.2.2" + jest-util: "npm:^29.7.0" + jest-validate: "npm:^29.7.0" + resolve: "npm:^1.20.0" + resolve.exports: "npm:^2.0.0" + slash: "npm:^3.0.0" + checksum: 10c0/59da5c9c5b50563e959a45e09e2eace783d7f9ac0b5dcc6375dea4c0db938d2ebda97124c8161310082760e8ebbeff9f6b177c15ca2f57fb424f637a5d2adb47 + languageName: node + linkType: hard + +"jest-runner@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-runner@npm:29.7.0" + dependencies: + "@jest/console": "npm:^29.7.0" + "@jest/environment": "npm:^29.7.0" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + emittery: "npm:^0.13.1" + graceful-fs: "npm:^4.2.9" + jest-docblock: "npm:^29.7.0" + jest-environment-node: "npm:^29.7.0" + jest-haste-map: "npm:^29.7.0" + jest-leak-detector: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-resolve: "npm:^29.7.0" + jest-runtime: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + jest-watcher: "npm:^29.7.0" + jest-worker: "npm:^29.7.0" + p-limit: "npm:^3.1.0" + source-map-support: "npm:0.5.13" + checksum: 10c0/2194b4531068d939f14c8d3274fe5938b77fa73126aedf9c09ec9dec57d13f22c72a3b5af01ac04f5c1cf2e28d0ac0b4a54212a61b05f10b5d6b47f2a1097bb4 + languageName: node + linkType: hard + +"jest-runtime@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-runtime@npm:29.7.0" + dependencies: + "@jest/environment": "npm:^29.7.0" + "@jest/fake-timers": "npm:^29.7.0" + "@jest/globals": "npm:^29.7.0" + "@jest/source-map": "npm:^29.6.3" + "@jest/test-result": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + cjs-module-lexer: "npm:^1.0.0" + collect-v8-coverage: "npm:^1.0.0" + glob: "npm:^7.1.3" + graceful-fs: "npm:^4.2.9" + jest-haste-map: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-mock: "npm:^29.7.0" + jest-regex-util: "npm:^29.6.3" + jest-resolve: "npm:^29.7.0" + jest-snapshot: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + slash: "npm:^3.0.0" + strip-bom: "npm:^4.0.0" + checksum: 10c0/7cd89a1deda0bda7d0941835434e44f9d6b7bd50b5c5d9b0fc9a6c990b2d4d2cab59685ab3cb2850ed4cc37059f6de903af5a50565d7f7f1192a77d3fd6dd2a6 + languageName: node + linkType: hard + +"jest-snapshot@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-snapshot@npm:29.7.0" + dependencies: + "@babel/core": "npm:^7.11.6" + "@babel/generator": "npm:^7.7.2" + "@babel/plugin-syntax-jsx": "npm:^7.7.2" + "@babel/plugin-syntax-typescript": "npm:^7.7.2" + "@babel/types": "npm:^7.3.3" + "@jest/expect-utils": "npm:^29.7.0" + "@jest/transform": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + babel-preset-current-node-syntax: "npm:^1.0.0" + chalk: "npm:^4.0.0" + expect: "npm:^29.7.0" + graceful-fs: "npm:^4.2.9" + jest-diff: "npm:^29.7.0" + jest-get-type: "npm:^29.6.3" + jest-matcher-utils: "npm:^29.7.0" + jest-message-util: "npm:^29.7.0" + jest-util: "npm:^29.7.0" + natural-compare: "npm:^1.4.0" + pretty-format: "npm:^29.7.0" + semver: "npm:^7.5.3" + checksum: 10c0/6e9003c94ec58172b4a62864a91c0146513207bedf4e0a06e1e2ac70a4484088a2683e3a0538d8ea913bcfd53dc54a9b98a98cdfa562e7fe1d1339aeae1da570 + languageName: node + linkType: hard + +"jest-util@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-util@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + chalk: "npm:^4.0.0" + ci-info: "npm:^3.2.0" + graceful-fs: "npm:^4.2.9" + picomatch: "npm:^2.2.3" + checksum: 10c0/bc55a8f49fdbb8f51baf31d2a4f312fb66c9db1483b82f602c9c990e659cdd7ec529c8e916d5a89452ecbcfae4949b21b40a7a59d4ffc0cd813a973ab08c8150 + languageName: node + linkType: hard + +"jest-validate@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-validate@npm:29.7.0" + dependencies: + "@jest/types": "npm:^29.6.3" + camelcase: "npm:^6.2.0" + chalk: "npm:^4.0.0" + jest-get-type: "npm:^29.6.3" + leven: "npm:^3.1.0" + pretty-format: "npm:^29.7.0" + checksum: 10c0/a20b930480c1ed68778c739f4739dce39423131bc070cd2505ddede762a5570a256212e9c2401b7ae9ba4d7b7c0803f03c5b8f1561c62348213aba18d9dbece2 + languageName: node + linkType: hard + +"jest-watcher@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-watcher@npm:29.7.0" + dependencies: + "@jest/test-result": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + "@types/node": "npm:*" + ansi-escapes: "npm:^4.2.1" + chalk: "npm:^4.0.0" + emittery: "npm:^0.13.1" + jest-util: "npm:^29.7.0" + string-length: "npm:^4.0.1" + checksum: 10c0/ec6c75030562fc8f8c727cb8f3b94e75d831fc718785abfc196e1f2a2ebc9a2e38744a15147170039628a853d77a3b695561ce850375ede3a4ee6037a2574567 + languageName: node + linkType: hard + +"jest-worker@npm:^29.7.0": + version: 29.7.0 + resolution: "jest-worker@npm:29.7.0" + dependencies: + "@types/node": "npm:*" + jest-util: "npm:^29.7.0" + merge-stream: "npm:^2.0.0" + supports-color: "npm:^8.0.0" + checksum: 10c0/5570a3a005b16f46c131968b8a5b56d291f9bbb85ff4217e31c80bd8a02e7de799e59a54b95ca28d5c302f248b54cbffde2d177c2f0f52ffcee7504c6eabf660 + languageName: node + linkType: hard + +"jest@npm:^29.7.0": + version: 29.7.0 + resolution: "jest@npm:29.7.0" + dependencies: + "@jest/core": "npm:^29.7.0" + "@jest/types": "npm:^29.6.3" + import-local: "npm:^3.0.2" + jest-cli: "npm:^29.7.0" + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + bin: + jest: bin/jest.js + checksum: 10c0/f40eb8171cf147c617cc6ada49d062fbb03b4da666cb8d39cdbfb739a7d75eea4c3ca150fb072d0d273dce0c753db4d0467d54906ad0293f59c54f9db4a09d8b + languageName: node + linkType: hard + +"jiti@npm:^1.21.0": + version: 1.21.7 + resolution: "jiti@npm:1.21.7" + bin: + jiti: bin/jiti.js + checksum: 10c0/77b61989c758ff32407cdae8ddc77f85e18e1a13fc4977110dbd2e05fc761842f5f71bce684d9a01316e1c4263971315a111385759951080bbfe17cbb5de8f7a + languageName: node + linkType: hard + +"jju@npm:~1.4.0": + version: 1.4.0 + resolution: "jju@npm:1.4.0" + checksum: 10c0/f3f444557e4364cfc06b1abf8331bf3778b26c0c8552ca54429bc0092652172fdea26cbffe33e1017b303d5aa506f7ede8571857400efe459cb7439180e2acad + languageName: node + linkType: hard + +"joi@npm:^17.13.3": + version: 17.13.3 + resolution: "joi@npm:17.13.3" + dependencies: + "@hapi/hoek": "npm:^9.3.0" + "@hapi/topo": "npm:^5.1.0" + "@sideway/address": "npm:^4.1.5" + "@sideway/formula": "npm:^3.0.1" + "@sideway/pinpoint": "npm:^2.0.0" + checksum: 10c0/9262aef1da3f1bec5b03caf50c46368899fe03b8ff26cbe3d53af4584dd1049079fc97230bbf1500b6149db7cc765b9ee45f0deb24bb6fc3fa06229d7148c17f + languageName: node + linkType: hard + +"jose@npm:^5.1.3": + version: 5.10.0 + resolution: "jose@npm:5.10.0" + checksum: 10c0/e20d9fc58d7e402f2e5f04e824b8897d5579aae60e64cb88ebdea1395311c24537bf4892f7de413fab1acf11e922797fb1b42269bc8fc65089a3749265ccb7b0 + languageName: node + linkType: hard + +"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0": + version: 4.0.0 + resolution: "js-tokens@npm:4.0.0" + checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed + languageName: node + linkType: hard + +"js-tokens@npm:^9.0.1": + version: 9.0.1 + resolution: "js-tokens@npm:9.0.1" + checksum: 10c0/68dcab8f233dde211a6b5fd98079783cbcd04b53617c1250e3553ee16ab3e6134f5e65478e41d82f6d351a052a63d71024553933808570f04dbf828d7921e80e + languageName: node + linkType: hard + +"js-yaml@npm:^3.13.1": + version: 3.14.1 + resolution: "js-yaml@npm:3.14.1" + dependencies: + argparse: "npm:^1.0.7" + esprima: "npm:^4.0.0" + bin: + js-yaml: bin/js-yaml.js + checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b + languageName: node + linkType: hard + +"js-yaml@npm:^4.1.0": + version: 4.1.0 + resolution: "js-yaml@npm:4.1.0" + dependencies: + argparse: "npm:^2.0.1" + bin: + js-yaml: bin/js-yaml.js + checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + languageName: node + linkType: hard + +"jsbn@npm:1.1.0": + version: 1.1.0 + resolution: "jsbn@npm:1.1.0" + checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96 + languageName: node + linkType: hard + +"jsbn@npm:~0.1.0": + version: 0.1.1 + resolution: "jsbn@npm:0.1.1" + checksum: 10c0/e046e05c59ff880ee4ef68902dbdcb6d2f3c5d60c357d4d68647dc23add556c31c0e5f41bdb7e69e793dd63468bd9e085da3636341048ef577b18f5b713877c0 + languageName: node + linkType: hard + +"jsdoc-type-pratt-parser@npm:^4.0.0": + version: 4.1.0 + resolution: "jsdoc-type-pratt-parser@npm:4.1.0" + checksum: 10c0/7700372d2e733a32f7ea0a1df9cec6752321a5345c11a91b2ab478a031a426e934f16d5c1f15c8566c7b2c10af9f27892a29c2c789039f595470e929a4aa60ea + languageName: node + linkType: hard + +"jsdom@npm:^20.0.0": + version: 20.0.3 + resolution: "jsdom@npm:20.0.3" + dependencies: + abab: "npm:^2.0.6" + acorn: "npm:^8.8.1" + acorn-globals: "npm:^7.0.0" + cssom: "npm:^0.5.0" + cssstyle: "npm:^2.3.0" + data-urls: "npm:^3.0.2" + decimal.js: "npm:^10.4.2" + domexception: "npm:^4.0.0" + escodegen: "npm:^2.0.0" + form-data: "npm:^4.0.0" + html-encoding-sniffer: "npm:^3.0.0" + http-proxy-agent: "npm:^5.0.0" + https-proxy-agent: "npm:^5.0.1" + is-potential-custom-element-name: "npm:^1.0.1" + nwsapi: "npm:^2.2.2" + parse5: "npm:^7.1.1" + saxes: "npm:^6.0.0" + symbol-tree: "npm:^3.2.4" + tough-cookie: "npm:^4.1.2" + w3c-xmlserializer: "npm:^4.0.0" + webidl-conversions: "npm:^7.0.0" + whatwg-encoding: "npm:^2.0.0" + whatwg-mimetype: "npm:^3.0.0" + whatwg-url: "npm:^11.0.0" + ws: "npm:^8.11.0" + xml-name-validator: "npm:^4.0.0" + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + checksum: 10c0/b109073bb826a966db7828f46cb1d7371abecd30f182b143c52be5fe1ed84513bbbe995eb3d157241681fcd18331381e61e3dc004d4949f3a63bca02f6214902 + languageName: node + linkType: hard + +"jsesc@npm:^3.0.2": + version: 3.1.0 + resolution: "jsesc@npm:3.1.0" + bin: + jsesc: bin/jsesc + checksum: 10c0/531779df5ec94f47e462da26b4cbf05eb88a83d9f08aac2ba04206508fc598527a153d08bd462bae82fc78b3eaa1a908e1a4a79f886e9238641c4cdefaf118b1 + languageName: node + linkType: hard + +"jsesc@npm:~3.0.2": + version: 3.0.2 + resolution: "jsesc@npm:3.0.2" + bin: + jsesc: bin/jsesc + checksum: 10c0/ef22148f9e793180b14d8a145ee6f9f60f301abf443288117b4b6c53d0ecd58354898dc506ccbb553a5f7827965cd38bc5fb726575aae93c5e8915e2de8290e1 + languageName: node + linkType: hard + +"json-buffer@npm:3.0.1": + version: 3.0.1 + resolution: "json-buffer@npm:3.0.1" + checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 + languageName: node + linkType: hard + +"json-parse-even-better-errors@npm:^2.3.0": + version: 2.3.1 + resolution: "json-parse-even-better-errors@npm:2.3.1" + checksum: 10c0/140932564c8f0b88455432e0f33c4cb4086b8868e37524e07e723f4eaedb9425bdc2bafd71bd1d9765bd15fd1e2d126972bc83990f55c467168c228c24d665f3 + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce + languageName: node + linkType: hard + +"json-schema@npm:0.4.0": + version: 0.4.0 + resolution: "json-schema@npm:0.4.0" + checksum: 10c0/d4a637ec1d83544857c1c163232f3da46912e971d5bf054ba44fdb88f07d8d359a462b4aec46f2745efbc57053365608d88bc1d7b1729f7b4fc3369765639ed3 + languageName: node + linkType: hard + +"json-sort-cli@npm:^4.0.4": + version: 4.0.4 + resolution: "json-sort-cli@npm:4.0.4" + dependencies: + ast-monkey-traverse: "npm:^4.0.16" + chalk: "npm:^5.3.0" + codsen-utils: "npm:^1.6.4" + fs-extra: "npm:^11.2.0" + globby: "npm:^14.0.1" + is-d: "npm:^1.0.0" + meow: "npm:^13.2.0" + p-filter: "npm:^4.1.0" + p-reduce: "npm:^3.0.0" + sort-package-json: "npm:^2.10.0" + update-notifier: "npm:^7.0.0" + bin: + jsonsort: cli.js + sortjson: cli.js + checksum: 10c0/488aa0aa33b4a2e78a1dc029a457df8c164952a2dbafe832c32e21827892ee7fe8a65e8ac8b79c26fda57c95921258f2e9d9d5e61bf58be6f76877c1c3bbfe29 + languageName: node + linkType: hard + +"json-stable-stringify-without-jsonify@npm:^1.0.1": + version: 1.0.1 + resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" + checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 + languageName: node + linkType: hard + +"json-stable-stringify@npm:^1.0.2": + version: 1.2.1 + resolution: "json-stable-stringify@npm:1.2.1" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + isarray: "npm:^2.0.5" + jsonify: "npm:^0.0.1" + object-keys: "npm:^1.1.1" + checksum: 10c0/e623e7ce89282f089d56454087edb717357e8572089b552fbc6980fb7814dc3943f7d0e4f1a19429a36ce9f4428b6c8ee6883357974457aaaa98daba5adebeea + languageName: node + linkType: hard + +"json-stringify-safe@npm:5, json-stringify-safe@npm:~5.0.1": + version: 5.0.1 + resolution: "json-stringify-safe@npm:5.0.1" + checksum: 10c0/7dbf35cd0411d1d648dceb6d59ce5857ec939e52e4afc37601aa3da611f0987d5cee5b38d58329ceddf3ed48bd7215229c8d52059ab01f2444a338bf24ed0f37 + languageName: node + linkType: hard + +"json5@npm:^1.0.2": + version: 1.0.2 + resolution: "json5@npm:1.0.2" + dependencies: + minimist: "npm:^1.2.0" + bin: + json5: lib/cli.js + checksum: 10c0/9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f + languageName: node + linkType: hard + +"json5@npm:^2.2.2, json5@npm:^2.2.3": + version: 2.2.3 + resolution: "json5@npm:2.2.3" + bin: + json5: lib/cli.js + checksum: 10c0/5a04eed94810fa55c5ea138b2f7a5c12b97c3750bc63d11e511dcecbfef758003861522a070c2272764ee0f4e3e323862f386945aeb5b85b87ee43f084ba586c + languageName: node + linkType: hard + +"jsonfile@npm:^4.0.0": + version: 4.0.0 + resolution: "jsonfile@npm:4.0.0" + dependencies: + graceful-fs: "npm:^4.1.6" + dependenciesMeta: + graceful-fs: + optional: true + checksum: 10c0/7dc94b628d57a66b71fb1b79510d460d662eb975b5f876d723f81549c2e9cd316d58a2ddf742b2b93a4fa6b17b2accaf1a738a0e2ea114bdfb13a32e5377e480 + languageName: node + linkType: hard + +"jsonfile@npm:^6.0.1": + version: 6.1.0 + resolution: "jsonfile@npm:6.1.0" + dependencies: + graceful-fs: "npm:^4.1.6" + universalify: "npm:^2.0.0" + dependenciesMeta: + graceful-fs: + optional: true + checksum: 10c0/4f95b5e8a5622b1e9e8f33c96b7ef3158122f595998114d1e7f03985649ea99cb3cd99ce1ed1831ae94c8c8543ab45ebd044207612f31a56fd08462140e46865 + languageName: node + linkType: hard + +"jsonify@npm:^0.0.1": + version: 0.0.1 + resolution: "jsonify@npm:0.0.1" + checksum: 10c0/7f5499cdd59a0967ed35bda48b7cec43d850bbc8fb955cdd3a1717bb0efadbe300724d5646de765bb7a99fc1c3ab06eb80d93503c6faaf99b4ff50a3326692f6 + languageName: node + linkType: hard + +"jsonparse@npm:^1.2.0": + version: 1.3.1 + resolution: "jsonparse@npm:1.3.1" + checksum: 10c0/89bc68080cd0a0e276d4b5ab1b79cacd68f562467008d176dc23e16e97d4efec9e21741d92ba5087a8433526a45a7e6a9d5ef25408696c402ca1cfbc01a90bf0 + languageName: node + linkType: hard + +"jsprim@npm:^2.0.2": + version: 2.0.2 + resolution: "jsprim@npm:2.0.2" + dependencies: + assert-plus: "npm:1.0.0" + extsprintf: "npm:1.3.0" + json-schema: "npm:0.4.0" + verror: "npm:1.10.0" + checksum: 10c0/677be2d41df536c92c6d0114a492ef197084018cfbb1a3e10b1fa1aad889564b2e3a7baa6af7949cc2d73678f42368b0be165a26bd4e4de6883a30dd6a24e98d + languageName: node + linkType: hard + +"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5": + version: 3.3.5 + resolution: "jsx-ast-utils@npm:3.3.5" + dependencies: + array-includes: "npm:^3.1.6" + array.prototype.flat: "npm:^1.3.1" + object.assign: "npm:^4.1.4" + object.values: "npm:^1.1.6" + checksum: 10c0/a32679e9cb55469cb6d8bbc863f7d631b2c98b7fc7bf172629261751a6e7bc8da6ae374ddb74d5fbd8b06cf0eb4572287b259813d92b36e384024ed35e4c13e1 + languageName: node + linkType: hard + +"kdbush@npm:^4.0.2": + version: 4.0.2 + resolution: "kdbush@npm:4.0.2" + checksum: 10c0/d50183b299c57e2573114e902ab47aed7494be3ca41b66d456779ecc3b2f153f491de341f9609965414784f728894f9a9001152eb9f3a40cd3755521c06a45a3 + languageName: node + linkType: hard + +"keygrip@npm:~1.1.0": + version: 1.1.0 + resolution: "keygrip@npm:1.1.0" + dependencies: + tsscmp: "npm:1.0.6" + checksum: 10c0/2aceec1a1e642a0caf938044056ed67b1909cfe67a93a59b32aae2863e0f35a1a53782ecc8f9cd0e3bdb60863fa0f401ccbd257cd7dfae61915f78445139edea + languageName: node + linkType: hard + +"keyv@npm:^4.0.0, keyv@npm:^4.5.3": + version: 4.5.4 + resolution: "keyv@npm:4.5.4" + dependencies: + json-buffer: "npm:3.0.1" + checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e + languageName: node + linkType: hard + +"klaw-sync@npm:^6.0.0": + version: 6.0.0 + resolution: "klaw-sync@npm:6.0.0" + dependencies: + graceful-fs: "npm:^4.1.11" + checksum: 10c0/00d8e4c48d0d699b743b3b028e807295ea0b225caf6179f51029e19783a93ad8bb9bccde617d169659fbe99559d73fb35f796214de031d0023c26b906cecd70a + languageName: node + linkType: hard + +"kleur@npm:^3.0.3": + version: 3.0.3 + resolution: "kleur@npm:3.0.3" + checksum: 10c0/cd3a0b8878e7d6d3799e54340efe3591ca787d9f95f109f28129bdd2915e37807bf8918bb295ab86afb8c82196beec5a1adcaf29042ce3f2bd932b038fe3aa4b + languageName: node + linkType: hard + +"koa-bodyparser@npm:^4.2.1": + version: 4.4.1 + resolution: "koa-bodyparser@npm:4.4.1" + dependencies: + co-body: "npm:^6.0.0" + copy-to: "npm:^2.0.1" + type-is: "npm:^1.6.18" + checksum: 10c0/72abf648bb62649cebfed310ef8fd09db3ca48867e083814b63f799fedadfdc440817507b9edbcd1d8d75282b23ed64812d924d4d5fc12375ae935150b224c1d + languageName: node + linkType: hard + +"koa-compose@npm:^4.1.0": + version: 4.1.0 + resolution: "koa-compose@npm:4.1.0" + checksum: 10c0/f1f786f994a691931148e7f38f443865bf2702af4a61610d1eea04dab79c04b1232285b59d82a0cf61c830516dd92f10ab0d009b024fcecd4098e7d296ab771a + languageName: node + linkType: hard + +"koa-compress@npm:^3.0.0": + version: 3.1.0 + resolution: "koa-compress@npm:3.1.0" + dependencies: + bytes: "npm:^3.0.0" + compressible: "npm:^2.0.0" + koa-is-json: "npm:^1.0.0" + statuses: "npm:^1.0.0" + checksum: 10c0/36b9434cd692f0d9e6e9142bd56bedb1f7fe350330797d2e61785e941ebfbba94607a702a13291879c9e24b09d02150f0106cb48435a27b788cf0e360a6d19b7 + languageName: node + linkType: hard + +"koa-conditional-get@npm:^2.0.0": + version: 2.0.0 + resolution: "koa-conditional-get@npm:2.0.0" + checksum: 10c0/019f287675b901bbf086a54999a8f1b63d236b3443d6426490698ff646ada1129a903069da1999d426e7338b5665544a47a806b486c047265211f91fee1ad91a + languageName: node + linkType: hard + +"koa-convert@npm:^2.0.0": + version: 2.0.0 + resolution: "koa-convert@npm:2.0.0" + dependencies: + co: "npm:^4.6.0" + koa-compose: "npm:^4.1.0" + checksum: 10c0/d3e243ceccd11524d5f4942f6ccd828a9b18a1a967c4375192aa9eedf844f790563632839f006732ce8ca720275737c65a3bab344e13b25f41fb2be451ea102c + languageName: node + linkType: hard + +"koa-etag@npm:^3.0.0": + version: 3.0.0 + resolution: "koa-etag@npm:3.0.0" + dependencies: + etag: "npm:^1.3.0" + mz: "npm:^2.1.0" + checksum: 10c0/f32cfc1c8761e9ea477e3c94650368f3279a4c766d6b398e2292e58f2460148e18b34b8f1e6ccaf2e28bd5112f6f1bd21e51ba8e5d54b698692d94362739e81a + languageName: node + linkType: hard + +"koa-is-json@npm:1, koa-is-json@npm:^1.0.0": + version: 1.0.0 + resolution: "koa-is-json@npm:1.0.0" + checksum: 10c0/b942126580724772fbcb533675cb5dd914a1bea5fbdccf6c1341b399ab7b2b52319f7252cad308fd596b7198ced77cacbb13784a0040141e83d8913e561f735f + languageName: node + linkType: hard + +"koa-json@npm:^2.0.2": + version: 2.0.2 + resolution: "koa-json@npm:2.0.2" + dependencies: + koa-is-json: "npm:1" + streaming-json-stringify: "npm:3" + checksum: 10c0/6ff744fd4cb07d42d1d0df8ecdad47f7939ffa7d834464a23396e03ab3ae85ed2544b7ac6449bfded0e81dc47aac0e7cd6103b5d3693dde1e4abc333112a5e27 + languageName: node + linkType: hard + +"koa-morgan@npm:^1.0.1": + version: 1.0.1 + resolution: "koa-morgan@npm:1.0.1" + dependencies: + morgan: "npm:^1.6.1" + checksum: 10c0/385714f35d6fc094961688d6470e64868600c9ddfa6c18737e916cd2ffcf400af67c9214b250a164df0eb3e8659820c5e68c324666ab1a69a861886d5f1bb253 + languageName: node + linkType: hard + +"koa-range@npm:^0.3.0": + version: 0.3.0 + resolution: "koa-range@npm:0.3.0" + dependencies: + stream-slice: "npm:^0.1.2" + checksum: 10c0/01da0edba7c8c327962ffd5808d52d7e4e1a7c7fbf9976b0d77847834fa388e54d4f52d7042cf8c586f69c20c4018a6457ed839c90ce7015007b8e284aa1b894 + languageName: node + linkType: hard + +"koa-route@npm:^3.2.0": + version: 3.2.0 + resolution: "koa-route@npm:3.2.0" + dependencies: + debug: "npm:*" + methods: "npm:~1.1.0" + path-to-regexp: "npm:^1.2.0" + checksum: 10c0/4e4a76ce0149f5c9adddc76c46a4e664210e712c5aa3db025383b6e5efcb72d0ee34f52d35292a178481f7d448aee125af0069751ea31e67642cc7b8d5d7245b + languageName: node + linkType: hard + +"koa-send@npm:^5.0.0": + version: 5.0.1 + resolution: "koa-send@npm:5.0.1" + dependencies: + debug: "npm:^4.1.1" + http-errors: "npm:^1.7.3" + resolve-path: "npm:^1.4.0" + checksum: 10c0/787a8abaf3690a86cf2e6021f1d870daba5f8393f4b4da4da74c26e7d1f7a89636fa2f251a0ec1ea75364fc81a9ef20d3c52e8e2dc7ad9f1d5053357a0db204f + languageName: node + linkType: hard + +"koa-static@npm:^5.0.0": + version: 5.0.0 + resolution: "koa-static@npm:5.0.0" + dependencies: + debug: "npm:^3.1.0" + koa-send: "npm:^5.0.0" + checksum: 10c0/4cb7a4e98506d54274658eb3565b24fcbe606bbb6916cb5ef226b2613d3ffd417dec3404000baa171f2206f2a6d29117bbe881fd26b27d54ef746d9de6de3e91 + languageName: node + linkType: hard + +"koa@npm:^2.11.0": + version: 2.15.4 + resolution: "koa@npm:2.15.4" + dependencies: + accepts: "npm:^1.3.5" + cache-content-type: "npm:^1.0.0" + content-disposition: "npm:~0.5.2" + content-type: "npm:^1.0.4" + cookies: "npm:~0.9.0" + debug: "npm:^4.3.2" + delegates: "npm:^1.0.0" + depd: "npm:^2.0.0" + destroy: "npm:^1.0.4" + encodeurl: "npm:^1.0.2" + escape-html: "npm:^1.0.3" + fresh: "npm:~0.5.2" + http-assert: "npm:^1.3.0" + http-errors: "npm:^1.6.3" + is-generator-function: "npm:^1.0.7" + koa-compose: "npm:^4.1.0" + koa-convert: "npm:^2.0.0" + on-finished: "npm:^2.3.0" + only: "npm:~0.0.2" + parseurl: "npm:^1.3.2" + statuses: "npm:^1.5.0" + type-is: "npm:^1.6.16" + vary: "npm:^1.1.2" + checksum: 10c0/fd2171b4dba706d35244fe60403a61671717a167453349813757999dad280049ddd0dcdba23cda197a5a3538f4c034cf0fd1f9caeb849be1ca1eecaa78db2f99 + languageName: node + linkType: hard + +"kolorist@npm:^1.8.0": + version: 1.8.0 + resolution: "kolorist@npm:1.8.0" + checksum: 10c0/73075db44a692bf6c34a649f3b4b3aea4993b84f6b754cbf7a8577e7c7db44c0bad87752bd23b0ce533f49de2244ce2ce03b7b1b667a85ae170a94782cc50f9b + languageName: node + linkType: hard + +"ky@npm:^1.2.0": + version: 1.7.5 + resolution: "ky@npm:1.7.5" + checksum: 10c0/9f9c70a4916592f728c90e38ecbe2ed468eb7161b7525a4561a861e457edd5cb706751e2aba615d350380231d021f535147f9ed3ca07271af836465ecc725761 + languageName: node + linkType: hard + +"language-subtag-registry@npm:^0.3.20": + version: 0.3.23 + resolution: "language-subtag-registry@npm:0.3.23" + checksum: 10c0/e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c + languageName: node + linkType: hard + +"language-tags@npm:^1.0.9": + version: 1.0.9 + resolution: "language-tags@npm:1.0.9" + dependencies: + language-subtag-registry: "npm:^0.3.20" + checksum: 10c0/9ab911213c4bd8bd583c850201c17794e52cb0660d1ab6e32558aadc8324abebf6844e46f92b80a5d600d0fbba7eface2c207bfaf270a1c7fd539e4c3a880bff + languageName: node + linkType: hard + +"latest-version@npm:^9.0.0": + version: 9.0.0 + resolution: "latest-version@npm:9.0.0" + dependencies: + package-json: "npm:^10.0.0" + checksum: 10c0/643cfda3a58dfb3af221a2950e433393d28a5adbe225d1cbbb358dbcbb04e9f8dce15b892f8ae3e3156f50693428dbd7ca13a69edfbdfcd94e62519480d7041e + languageName: node + linkType: hard + +"lazy-ass@npm:1.6.0, lazy-ass@npm:^1.6.0": + version: 1.6.0 + resolution: "lazy-ass@npm:1.6.0" + checksum: 10c0/4af6cb9a333fbc811268c745f9173fba0f99ecb817cc9c0fae5dbf986b797b730ff525504128f6623b91aba32b02124553a34b0d14de3762b637b74d7233f3bd + languageName: node + linkType: hard + +"lazy-universal-dotenv@npm:^4.0.0": + version: 4.0.0 + resolution: "lazy-universal-dotenv@npm:4.0.0" + dependencies: + app-root-dir: "npm:^1.0.2" + dotenv: "npm:^16.0.0" + dotenv-expand: "npm:^10.0.0" + checksum: 10c0/3bc4fe649c46c4a20561ca1fd10cd1df641d2c6c42c61af6c65a5fe0546cb548f449e13e6c7440be445c9fe5b4973c25f499e7d899b8704b7b9bd0ec85bbfe2d + languageName: node + linkType: hard + +"less@npm:^4.2.0": + version: 4.2.2 + resolution: "less@npm:4.2.2" + dependencies: + copy-anything: "npm:^2.0.1" + errno: "npm:^0.1.1" + graceful-fs: "npm:^4.1.2" + image-size: "npm:~0.5.0" + make-dir: "npm:^2.1.0" + mime: "npm:^1.4.1" + needle: "npm:^3.1.0" + parse-node-version: "npm:^1.0.1" + source-map: "npm:~0.6.0" + tslib: "npm:^2.3.0" + dependenciesMeta: + errno: + optional: true + graceful-fs: + optional: true + image-size: + optional: true + make-dir: + optional: true + mime: + optional: true + needle: + optional: true + source-map: + optional: true + bin: + lessc: bin/lessc + checksum: 10c0/d472c203a41fb3722a9bf5677f5348e59d8b6589bf2e3933a77c305b42b2ebbe1e3accf145f05b6d2415ba1dad08add7803646947bf867eec7a2a279d758d99a + languageName: node + linkType: hard + +"leven@npm:^3.1.0": + version: 3.1.0 + resolution: "leven@npm:3.1.0" + checksum: 10c0/cd778ba3fbab0f4d0500b7e87d1f6e1f041507c56fdcd47e8256a3012c98aaee371d4c15e0a76e0386107af2d42e2b7466160a2d80688aaa03e66e49949f42df + languageName: node + linkType: hard + +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: "npm:^1.2.1" + type-check: "npm:~0.4.0" + checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e + languageName: node + linkType: hard + +"libphonenumber-js@npm:^1.10.60": + version: 1.11.20 + resolution: "libphonenumber-js@npm:1.11.20" + checksum: 10c0/fb1010bfa5f8682dadfbd9608f76207510e13c456db96d0d534cf727efa2de005cafbb16d016046965894af0787bf567eb5a1a2688d7bb2d5f8b2eebc42437c6 + languageName: node + linkType: hard + +"lilconfig@npm:^2.0.5": + version: 2.1.0 + resolution: "lilconfig@npm:2.1.0" + checksum: 10c0/64645641aa8d274c99338e130554abd6a0190533c0d9eb2ce7ebfaf2e05c7d9961f3ffe2bfa39efd3b60c521ba3dd24fa236fe2775fc38501bf82bf49d4678b8 + languageName: node + linkType: hard + +"lilconfig@npm:^3.1.3": + version: 3.1.3 + resolution: "lilconfig@npm:3.1.3" + checksum: 10c0/f5604e7240c5c275743561442fbc5abf2a84ad94da0f5adc71d25e31fa8483048de3dcedcb7a44112a942fed305fd75841cdf6c9681c7f640c63f1049e9a5dcc + languageName: node + linkType: hard + +"lines-and-columns@npm:^1.1.6": + version: 1.2.4 + resolution: "lines-and-columns@npm:1.2.4" + checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d + languageName: node + linkType: hard + +"lint-staged@npm:^15.2.2": + version: 15.4.3 + resolution: "lint-staged@npm:15.4.3" + dependencies: + chalk: "npm:^5.4.1" + commander: "npm:^13.1.0" + debug: "npm:^4.4.0" + execa: "npm:^8.0.1" + lilconfig: "npm:^3.1.3" + listr2: "npm:^8.2.5" + micromatch: "npm:^4.0.8" + pidtree: "npm:^0.6.0" + string-argv: "npm:^0.3.2" + yaml: "npm:^2.7.0" + bin: + lint-staged: bin/lint-staged.js + checksum: 10c0/c1f71f2273bcbd992af929620f5acc6b9f6899da4b395e780e0b3ab33a0d725c239eb961873067c8c842e057c585c71dd4d44c0dc8b25539d3c2e97a3bdd6f30 + languageName: node + linkType: hard + +"listr2@npm:^3.8.3": + version: 3.14.0 + resolution: "listr2@npm:3.14.0" + dependencies: + cli-truncate: "npm:^2.1.0" + colorette: "npm:^2.0.16" + log-update: "npm:^4.0.0" + p-map: "npm:^4.0.0" + rfdc: "npm:^1.3.0" + rxjs: "npm:^7.5.1" + through: "npm:^2.3.8" + wrap-ansi: "npm:^7.0.0" + peerDependencies: + enquirer: ">= 2.3.0 < 3" + peerDependenciesMeta: + enquirer: + optional: true + checksum: 10c0/8301703876ad6bf50cd769e9c1169c2aa435951d69d4f54fc202a13c1b6006a9b3afbcf9842440eb22f08beec4d311d365e31d4ed2e0fcabf198d8085b06a421 + languageName: node + linkType: hard + +"listr2@npm:^8.2.5": + version: 8.2.5 + resolution: "listr2@npm:8.2.5" + dependencies: + cli-truncate: "npm:^4.0.0" + colorette: "npm:^2.0.20" + eventemitter3: "npm:^5.0.1" + log-update: "npm:^6.1.0" + rfdc: "npm:^1.4.1" + wrap-ansi: "npm:^9.0.0" + checksum: 10c0/f5a9599514b00c27d7eb32d1117c83c61394b2a985ec20e542c798bf91cf42b19340215701522736f5b7b42f557e544afeadec47866e35e5d4f268f552729671 + languageName: node + linkType: hard + +"load-module@npm:^3.0.0": + version: 3.0.0 + resolution: "load-module@npm:3.0.0" + dependencies: + array-back: "npm:^4.0.1" + checksum: 10c0/3d6e02bc9f10ae719ce67846939aae33762792533ef13d2de9f177ba741d49799eb5d792222ba0522d92a3b0bdba08fdd27779c860b71597c0f3b6f15f2db494 + languageName: node + linkType: hard + +"loader-utils@npm:^3.2.1": + version: 3.3.1 + resolution: "loader-utils@npm:3.3.1" + checksum: 10c0/f2af4eb185ac5bf7e56e1337b666f90744e9f443861ac521b48f093fb9e8347f191c8960b4388a3365147d218913bc23421234e7788db69f385bacfefa0b4758 + languageName: node + linkType: hard + +"local-pkg@npm:^0.5.0": + version: 0.5.1 + resolution: "local-pkg@npm:0.5.1" + dependencies: + mlly: "npm:^1.7.3" + pkg-types: "npm:^1.2.1" + checksum: 10c0/ade8346f1dc04875921461adee3c40774b00d4b74095261222ebd4d5fd0a444676e36e325f76760f21af6a60bc82480e154909b54d2d9f7173671e36dacf1808 + languageName: node + linkType: hard + +"local-web-server@npm:^4.2.1": + version: 4.2.1 + resolution: "local-web-server@npm:4.2.1" + dependencies: + lws: "npm:^3.1.0" + lws-basic-auth: "npm:^2.0.0" + lws-blacklist: "npm:^3.0.0" + lws-body-parser: "npm:^2.0.0" + lws-compress: "npm:^2.0.0" + lws-conditional-get: "npm:^2.0.0" + lws-cors: "npm:^3.0.0" + lws-index: "npm:^2.0.0" + lws-json: "npm:^2.0.0" + lws-log: "npm:^2.0.0" + lws-mime: "npm:^2.0.0" + lws-range: "npm:^3.0.0" + lws-request-monitor: "npm:^2.0.0" + lws-rewrite: "npm:^3.1.1" + lws-spa: "npm:^3.0.0" + lws-static: "npm:^2.0.0" + node-version-matches: "npm:^2.0.1" + bin: + ws: bin/cli.js + checksum: 10c0/9a27003fdb97e7fb7826b4c38c8272c2f604b46f956cae78f6d24d7aaaf08ccd54e009a6877065c3509cb3303b9f8b032d8c2f3f304a9fc74198fbf4ce9f7a9b + languageName: node + linkType: hard + +"localStorage@npm:1.0.4": + version: 1.0.4 + resolution: "localStorage@npm:1.0.4" + checksum: 10c0/b9265f50ea978abeb063ae3bb3bee41e1e83fafd3eaf967ebfe83889972a3869a9e0b28b44bb26b2d16e171ce41228b918f20b96db7c429ddfd00c59439dc27d + languageName: node + linkType: hard + +"locate-path@npm:^5.0.0": + version: 5.0.0 + resolution: "locate-path@npm:5.0.0" + dependencies: + p-locate: "npm:^4.1.0" + checksum: 10c0/33a1c5247e87e022f9713e6213a744557a3e9ec32c5d0b5efb10aa3a38177615bf90221a5592674857039c1a0fd2063b82f285702d37b792d973e9e72ace6c59 + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: "npm:^5.0.0" + checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 + languageName: node + linkType: hard + +"lodash-es@npm:^4.17.21": + version: 4.17.21 + resolution: "lodash-es@npm:4.17.21" + checksum: 10c0/fb407355f7e6cd523a9383e76e6b455321f0f153a6c9625e21a8827d10c54c2a2341bd2ae8d034358b60e07325e1330c14c224ff582d04612a46a4f0479ff2f2 + languageName: node + linkType: hard + +"lodash.assignwith@npm:^4.2.0": + version: 4.2.0 + resolution: "lodash.assignwith@npm:4.2.0" + checksum: 10c0/069b0ce72d05ee19ec848ac1dddf612ab956960a347d7b4da07c4880debaea391896fd35cd731690eef70ea2ed165d983387af75bb0b15fbeba293eb15d39464 + languageName: node + linkType: hard + +"lodash.camelcase@npm:^4.3.0": + version: 4.3.0 + resolution: "lodash.camelcase@npm:4.3.0" + checksum: 10c0/fcba15d21a458076dd309fce6b1b4bf611d84a0ec252cb92447c948c533ac250b95d2e00955801ebc367e5af5ed288b996d75d37d2035260a937008e14eaf432 + languageName: node + linkType: hard + +"lodash.debounce@npm:^4.0.8": + version: 4.0.8 + resolution: "lodash.debounce@npm:4.0.8" + checksum: 10c0/762998a63e095412b6099b8290903e0a8ddcb353ac6e2e0f2d7e7d03abd4275fe3c689d88960eb90b0dde4f177554d51a690f22a343932ecbc50a5d111849987 + languageName: node + linkType: hard + +"lodash.get@npm:^4.4.2": + version: 4.4.2 + resolution: "lodash.get@npm:4.4.2" + checksum: 10c0/48f40d471a1654397ed41685495acb31498d5ed696185ac8973daef424a749ca0c7871bf7b665d5c14f5cc479394479e0307e781f61d5573831769593411be6e + languageName: node + linkType: hard + +"lodash.isempty@npm:^4.4.0": + version: 4.4.0 + resolution: "lodash.isempty@npm:4.4.0" + checksum: 10c0/6c7eaa0802398736809b9e8aed8b8ac1abca9be71788fd719ba9d7f5b4c23e8dc63b7f049df4131713dda30a2fdedc2f655268e9deb8cd5a985dfc934afca194 + languageName: node + linkType: hard + +"lodash.isequal@npm:^4.5.0": + version: 4.5.0 + resolution: "lodash.isequal@npm:4.5.0" + checksum: 10c0/dfdb2356db19631a4b445d5f37868a095e2402292d59539a987f134a8778c62a2810c2452d11ae9e6dcac71fc9de40a6fedcb20e2952a15b431ad8b29e50e28f + languageName: node + linkType: hard + +"lodash.isplainobject@npm:^4.0.6": + version: 4.0.6 + resolution: "lodash.isplainobject@npm:4.0.6" + checksum: 10c0/afd70b5c450d1e09f32a737bed06ff85b873ecd3d3d3400458725283e3f2e0bb6bf48e67dbe7a309eb371a822b16a26cca4a63c8c52db3fc7dc9d5f9dd324cbb + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 + languageName: node + linkType: hard + +"lodash.once@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.once@npm:4.1.1" + checksum: 10c0/46a9a0a66c45dd812fcc016e46605d85ad599fe87d71a02f6736220554b52ffbe82e79a483ad40f52a8a95755b0d1077fba259da8bfb6694a7abbf4a48f1fc04 + languageName: node + linkType: hard + +"lodash.throttle@npm:^4.1.1": + version: 4.1.1 + resolution: "lodash.throttle@npm:4.1.1" + checksum: 10c0/14628013e9e7f65ac904fc82fd8ecb0e55a9c4c2416434b1dd9cf64ae70a8937f0b15376a39a68248530adc64887ed0fe2b75204b2c9ec3eea1cb2d66ddd125d + languageName: node + linkType: hard + +"lodash.transform@npm:^4.6.0": + version: 4.6.0 + resolution: "lodash.transform@npm:4.6.0" + checksum: 10c0/ad7f376b00dccff09f8597f19a171f2e074756178ae74887346876e10f6f0d83009460cc0793183cc5ee4e24a72ff86e68031c45b5aa2731c2f681a4dc93fe77 + languageName: node + linkType: hard + +"lodash@npm:^4.17.15, lodash@npm:^4.17.21, lodash@npm:~4.17.15": + version: 4.17.21 + resolution: "lodash@npm:4.17.21" + checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c + languageName: node + linkType: hard + +"log-symbols@npm:^4.0.0": + version: 4.1.0 + resolution: "log-symbols@npm:4.1.0" + dependencies: + chalk: "npm:^4.1.0" + is-unicode-supported: "npm:^0.1.0" + checksum: 10c0/67f445a9ffa76db1989d0fa98586e5bc2fd5247260dafb8ad93d9f0ccd5896d53fb830b0e54dade5ad838b9de2006c826831a3c528913093af20dff8bd24aca6 + languageName: node + linkType: hard + +"log-update@npm:^4.0.0": + version: 4.0.0 + resolution: "log-update@npm:4.0.0" + dependencies: + ansi-escapes: "npm:^4.3.0" + cli-cursor: "npm:^3.1.0" + slice-ansi: "npm:^4.0.0" + wrap-ansi: "npm:^6.2.0" + checksum: 10c0/18b299e230432a156f2535660776406d15ba8bb7817dd3eaadd58004b363756d4ecaabcd658f9949f90b62ea7d3354423be3fdeb7a201ab951ec0e8d6139af86 + languageName: node + linkType: hard + +"log-update@npm:^6.1.0": + version: 6.1.0 + resolution: "log-update@npm:6.1.0" + dependencies: + ansi-escapes: "npm:^7.0.0" + cli-cursor: "npm:^5.0.0" + slice-ansi: "npm:^7.1.0" + strip-ansi: "npm:^7.1.0" + wrap-ansi: "npm:^9.0.0" + checksum: 10c0/4b350c0a83d7753fea34dcac6cd797d1dc9603291565de009baa4aa91c0447eab0d3815a05c8ec9ac04fdfffb43c82adcdb03ec1fceafd8518e1a8c1cff4ff89 + languageName: node + linkType: hard + +"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0": + version: 1.4.0 + resolution: "loose-envify@npm:1.4.0" + dependencies: + js-tokens: "npm:^3.0.0 || ^4.0.0" + bin: + loose-envify: cli.js + checksum: 10c0/655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e + languageName: node + linkType: hard + +"loupe@npm:^2.3.6, loupe@npm:^2.3.7": + version: 2.3.7 + resolution: "loupe@npm:2.3.7" + dependencies: + get-func-name: "npm:^2.0.1" + checksum: 10c0/71a781c8fc21527b99ed1062043f1f2bb30bdaf54fa4cf92463427e1718bc6567af2988300bc243c1f276e4f0876f29e3cbf7b58106fdc186915687456ce5bf4 + languageName: node + linkType: hard + +"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2": + version: 3.1.3 + resolution: "loupe@npm:3.1.3" + checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541 + languageName: node + linkType: hard + +"lower-case@npm:^2.0.2": + version: 2.0.2 + resolution: "lower-case@npm:2.0.2" + dependencies: + tslib: "npm:^2.0.3" + checksum: 10c0/3d925e090315cf7dc1caa358e0477e186ffa23947740e4314a7429b6e62d72742e0bbe7536a5ae56d19d7618ce998aba05caca53c2902bd5742fdca5fc57fd7b + languageName: node + linkType: hard + +"lowercase-keys@npm:^2.0.0": + version: 2.0.0 + resolution: "lowercase-keys@npm:2.0.0" + checksum: 10c0/f82a2b3568910509da4b7906362efa40f5b54ea14c2584778ddb313226f9cbf21020a5db35f9b9a0e95847a9b781d548601f31793d736b22a2b8ae8eb9ab1082 + languageName: node + linkType: hard + +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb + languageName: node + linkType: hard + +"lru-cache@npm:^5.1.1": + version: 5.1.1 + resolution: "lru-cache@npm:5.1.1" + dependencies: + yallist: "npm:^3.0.2" + checksum: 10c0/89b2ef2ef45f543011e38737b8a8622a2f8998cddf0e5437174ef8f1f70a8b9d14a918ab3e232cb3ba343b7abddffa667f0b59075b2b80e6b4d63c3de6127482 + languageName: node + linkType: hard + +"lru-cache@npm:^6.0.0": + version: 6.0.0 + resolution: "lru-cache@npm:6.0.0" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/cb53e582785c48187d7a188d3379c181b5ca2a9c78d2bce3e7dee36f32761d1c42983da3fe12b55cb74e1779fa94cdc2e5367c028a9b35317184ede0c07a30a9 + languageName: node + linkType: hard + +"lws-basic-auth@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-basic-auth@npm:2.0.0" + dependencies: + basic-auth: "npm:^2.0.1" + checksum: 10c0/413b243cc9b2c33a265dcb31380575e945b9a9389021127b7227c165f25184006d2ebfacae8961eca00ec1dda662d6de4786b0648e08ce89607e6f13cc06d8a1 + languageName: node + linkType: hard + +"lws-blacklist@npm:^3.0.0": + version: 3.0.0 + resolution: "lws-blacklist@npm:3.0.0" + dependencies: + array-back: "npm:^4.0.1" + path-to-regexp: "npm:^6.1.0" + checksum: 10c0/f914e48703b8a0238694aa5359359e3567005dc45f74da5df147bf4386c5acef8c2a31b31e5896413c7d69a986f0c27a801a18ac3469ba4c5b9f7062ab3010e4 + languageName: node + linkType: hard + +"lws-body-parser@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-body-parser@npm:2.0.0" + dependencies: + koa-bodyparser: "npm:^4.2.1" + checksum: 10c0/0b19632f00722bace3716b317931cfec8a2e41ce5ad5bd69ff171dc8b03d3313216d66716264b3069e1cc0615b363bdf44cf290158b610183c082a1764c87272 + languageName: node + linkType: hard + +"lws-compress@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-compress@npm:2.0.0" + dependencies: + koa-compress: "npm:^3.0.0" + checksum: 10c0/c8115f9d9c8e7ad978aa112735a91a245d3d9f4ffa24ec58ea1462c1183b482b7031f4180bbb125cf8f63cd0dc85bd9514d5aeb40d9ddaf26c0796be12d728b5 + languageName: node + linkType: hard + +"lws-conditional-get@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-conditional-get@npm:2.0.0" + dependencies: + koa-conditional-get: "npm:^2.0.0" + koa-etag: "npm:^3.0.0" + checksum: 10c0/51ce7e7f8b2826c2d5ecde9f1023d02e9dc48b67e98a49c0593f29dc8019b9544751605ca4034830c2df02e0f26981019ae58a0f913432ff6531c6e6024c3488 + languageName: node + linkType: hard + +"lws-cors@npm:^3.0.0": + version: 3.1.1 + resolution: "lws-cors@npm:3.1.1" + dependencies: + "@koa/cors": "npm:^3.0.0" + checksum: 10c0/8e841b35e534754f23428850bb31b39fa0aa7e15f723e7cbc1f65149ab26938e89d9275c58ea00ba8c2412cb5fd70a02dd2d2424a767880f1abbb40ff6560b75 + languageName: node + linkType: hard + +"lws-index@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-index@npm:2.0.0" + dependencies: + serve-index-75lb: "npm:^2.0.1" + checksum: 10c0/33464f036bf7c092b0fdd6b84ed2b82893f44837ecd6719fcee0d6f53d3cec5a1ff1f186b4ecdf9f8fff5d04378a65bbeb2bacabb1dca8d542eb1a626591e837 + languageName: node + linkType: hard + +"lws-json@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-json@npm:2.0.0" + dependencies: + koa-json: "npm:^2.0.2" + checksum: 10c0/c8d3d346f1cab7b171ff534e8828ccb299757765d2d33677dab8d5c4a2b199c094bac2216feec17f018cfceb4b9e18ad1bf7dfd355ab456582496f7ad7978aff + languageName: node + linkType: hard + +"lws-log@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-log@npm:2.0.0" + dependencies: + koa-morgan: "npm:^1.0.1" + stream-log-stats: "npm:^3.0.2" + checksum: 10c0/995efb4cab79b9433e433a17738467088ae8deeb04105fa0b24766a81ecbc15025fca279667fe29836160b7b09cf11abe67830e02b73377aa12d8297c0a312f5 + languageName: node + linkType: hard + +"lws-mime@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-mime@npm:2.0.0" + checksum: 10c0/749d9f44ba24c179d86d80d247d2d40e9e5b7cb3e3ef67bab6c676b2b21f00626d8a9294b23d99669e10a3c1d28204653a8c0590e38bfd8724ba96d2a233cd16 + languageName: node + linkType: hard + +"lws-range@npm:^3.0.0": + version: 3.0.0 + resolution: "lws-range@npm:3.0.0" + dependencies: + koa-range: "npm:^0.3.0" + checksum: 10c0/c846be615d5543be22685ccec954b6927bdafeb8f96cf1c9139b2e1ef6e37f49c467f86c18730a6d34bfc59b3ee137b9089e51aaa674910fde60509d165e0e81 + languageName: node + linkType: hard + +"lws-request-monitor@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-request-monitor@npm:2.0.0" + dependencies: + byte-size: "npm:^6.2.0" + checksum: 10c0/762786cb8dee10792ef36ff41811e6dab6e1b0c33a5f8987179934c184379b8ffb090510fc1ce80bc9a06757397dfbe303df7848d23a6944bfafc9905d8264c9 + languageName: node + linkType: hard + +"lws-rewrite@npm:^3.1.1": + version: 3.1.1 + resolution: "lws-rewrite@npm:3.1.1" + dependencies: + array-back: "npm:^4.0.1" + http-proxy-agent: "npm:^4.0.1" + https-proxy-agent: "npm:^5.0.0" + koa-route: "npm:^3.2.0" + path-to-regexp: "npm:^6.1.0" + bin: + lws-rewrite: bin/cli.js + checksum: 10c0/dc2f92f04263ff96c1089cfe93ebed7cdb4327c65a4a24201cec5a443f020e4583cf95ffa9ca024fb0340aacab13fa0c1018ae9765ddc7ab2bbac4f74f4d67a3 + languageName: node + linkType: hard + +"lws-spa@npm:^3.0.0": + version: 3.0.0 + resolution: "lws-spa@npm:3.0.0" + dependencies: + koa-send: "npm:^5.0.0" + checksum: 10c0/da023affe29f84e2ffceb18e01e5dd0a4dc27efd4621be7dd83fa0584aafe6a21a107376c451a2cbe2235fa2ba1e09213577a9661ba0f940b470582934164204 + languageName: node + linkType: hard + +"lws-static@npm:^2.0.0": + version: 2.0.0 + resolution: "lws-static@npm:2.0.0" + dependencies: + koa-static: "npm:^5.0.0" + checksum: 10c0/915af6d28acb655a0d1196b5e0c8ebbd06b15d1294708ccdea97ab165a0f0f6b2c5ad21885e0a26a0cff84046af02d1364a6c13edccb178d4e7a2140edbeaacc + languageName: node + linkType: hard + +"lws@npm:^3.1.0": + version: 3.1.0 + resolution: "lws@npm:3.1.0" + dependencies: + ansi-escape-sequences: "npm:^5.1.2" + array-back: "npm:^4.0.1" + byte-size: "npm:^6.2.0" + command-line-args: "npm:^5.1.1" + command-line-usage: "npm:^6.1.0" + create-mixin: "npm:^3.0.0" + koa: "npm:^2.11.0" + load-module: "npm:^3.0.0" + lodash.assignwith: "npm:^4.2.0" + node-version-matches: "npm:^2.0.1" + open: "npm:^7.0.4" + qrcode-terminal: "npm:^0.12.0" + reduce-flatten: "npm:^3.0.0" + typical: "npm:^6.0.0" + walk-back: "npm:^4.0.0" + bin: + lws: bin/cli.js + checksum: 10c0/c3eaa005fc84b8556556771a560ef90d8f47914db9a1d29ac4994a4a0c24974b5aedcd3e20361341c1c457931a9ec482d357eec618bf90e1c6ff7b28d7acbb96 + languageName: node + linkType: hard + +"lz-string@npm:^1.5.0": + version: 1.5.0 + resolution: "lz-string@npm:1.5.0" + bin: + lz-string: bin/bin.js + checksum: 10c0/36128e4de34791838abe979b19927c26e67201ca5acf00880377af7d765b38d1c60847e01c5ec61b1a260c48029084ab3893a3925fd6e48a04011364b089991b + languageName: node + linkType: hard + +"magic-string@npm:0.30.8": + version: 0.30.8 + resolution: "magic-string@npm:0.30.8" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.4.15" + checksum: 10c0/51a1f06f678c082aceddfb5943de9b6bdb88f2ea1385a1c2adf116deb73dfcfa50df6c222901d691b529455222d4d68d0b28be5689ac6f69b3baa3462861f922 + languageName: node + linkType: hard + +"magic-string@npm:^0.27.0": + version: 0.27.0 + resolution: "magic-string@npm:0.27.0" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.4.13" + checksum: 10c0/cddacfea14441ca57ae8a307bc3cf90bac69efaa4138dd9a80804cffc2759bf06f32da3a293fb13eaa96334b7d45b7768a34f1d226afae25d2f05b05a3bb37d8 + languageName: node + linkType: hard + +"magic-string@npm:^0.30.0, magic-string@npm:^0.30.2, magic-string@npm:^0.30.3, magic-string@npm:^0.30.5, magic-string@npm:^0.30.7, magic-string@npm:^0.30.8": + version: 0.30.17 + resolution: "magic-string@npm:0.30.17" + dependencies: + "@jridgewell/sourcemap-codec": "npm:^1.5.0" + checksum: 10c0/16826e415d04b88378f200fe022b53e638e3838b9e496edda6c0e086d7753a44a6ed187adc72d19f3623810589bf139af1a315541cd6a26ae0771a0193eaf7b8 + languageName: node + linkType: hard + +"make-dir@npm:^2.1.0": + version: 2.1.0 + resolution: "make-dir@npm:2.1.0" + dependencies: + pify: "npm:^4.0.1" + semver: "npm:^5.6.0" + checksum: 10c0/ada869944d866229819735bee5548944caef560d7a8536ecbc6536edca28c72add47cc4f6fc39c54fb25d06b58da1f8994cf7d9df7dadea047064749efc085d8 + languageName: node + linkType: hard + +"make-dir@npm:^3.0.2": + version: 3.1.0 + resolution: "make-dir@npm:3.1.0" + dependencies: + semver: "npm:^6.0.0" + checksum: 10c0/56aaafefc49c2dfef02c5c95f9b196c4eb6988040cf2c712185c7fe5c99b4091591a7fc4d4eafaaefa70ff763a26f6ab8c3ff60b9e75ea19876f49b18667ecaa + languageName: node + linkType: hard + +"make-dir@npm:^4.0.0": + version: 4.0.0 + resolution: "make-dir@npm:4.0.0" + dependencies: + semver: "npm:^7.5.3" + checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68 + languageName: node + linkType: hard + +"make-error@npm:^1.1.1": + version: 1.3.6 + resolution: "make-error@npm:1.3.6" + checksum: 10c0/171e458d86854c6b3fc46610cfacf0b45149ba043782558c6875d9f42f222124384ad0b468c92e996d815a8a2003817a710c0a160e49c1c394626f76fa45396f + languageName: node + linkType: hard + +"make-fetch-happen@npm:^14.0.3": + version: 14.0.3 + resolution: "make-fetch-happen@npm:14.0.3" + dependencies: + "@npmcli/agent": "npm:^3.0.0" + cacache: "npm:^19.0.1" + http-cache-semantics: "npm:^4.1.1" + minipass: "npm:^7.0.2" + minipass-fetch: "npm:^4.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^1.0.0" + proc-log: "npm:^5.0.0" + promise-retry: "npm:^2.0.1" + ssri: "npm:^12.0.0" + checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0 + languageName: node + linkType: hard + +"makeerror@npm:1.0.12": + version: 1.0.12 + resolution: "makeerror@npm:1.0.12" + dependencies: + tmpl: "npm:1.0.5" + checksum: 10c0/b0e6e599780ce6bab49cc413eba822f7d1f0dfebd1c103eaa3785c59e43e22c59018323cf9e1708f0ef5329e94a745d163fcbb6bff8e4c6742f9be9e86f3500c + languageName: node + linkType: hard + +"map-or-similar@npm:^1.5.0": + version: 1.5.0 + resolution: "map-or-similar@npm:1.5.0" + checksum: 10c0/33c6ccfdc272992e33e4e99a69541a3e7faed9de3ac5bc732feb2500a9ee71d3f9d098980a70b7746e7eeb7f859ff7dfb8aa9b5ecc4e34170a32ab78cfb18def + languageName: node + linkType: hard + +"map-stream@npm:~0.1.0": + version: 0.1.0 + resolution: "map-stream@npm:0.1.0" + checksum: 10c0/7dd6debe511c1b55d9da75e1efa65a28b1252a2d8357938d2e49b412713c478efbaefb0cdf0ee0533540c3bf733e8f9f71e1a15aa0fe74bf71b64e75bf1576bd + languageName: node + linkType: hard + +"math-intrinsics@npm:^1.1.0": + version: 1.1.0 + resolution: "math-intrinsics@npm:1.1.0" + checksum: 10c0/7579ff94e899e2f76ab64491d76cf606274c874d8f2af4a442c016bd85688927fcfca157ba6bf74b08e9439dc010b248ce05b96cc7c126a354c3bae7fcb48b7f + languageName: node + linkType: hard + +"mdn-data@npm:2.0.28": + version: 2.0.28 + resolution: "mdn-data@npm:2.0.28" + checksum: 10c0/20000932bc4cd1cde9cba4e23f08cc4f816398af4c15ec81040ed25421d6bf07b5cf6b17095972577fb498988f40f4cb589e3169b9357bb436a12d8e07e5ea7b + languageName: node + linkType: hard + +"mdn-data@npm:2.0.30": + version: 2.0.30 + resolution: "mdn-data@npm:2.0.30" + checksum: 10c0/a2c472ea16cee3911ae742593715aa4c634eb3d4b9f1e6ada0902aa90df13dcbb7285d19435f3ff213ebaa3b2e0c0265c1eb0e3fb278fda7f8919f046a410cd9 + languageName: node + linkType: hard + +"media-typer@npm:0.3.0": + version: 0.3.0 + resolution: "media-typer@npm:0.3.0" + checksum: 10c0/d160f31246907e79fed398470285f21bafb45a62869dc469b1c8877f3f064f5eabc4bcc122f9479b8b605bc5c76187d7871cf84c4ee3ecd3e487da1993279928 + languageName: node + linkType: hard + +"memoizerific@npm:^1.11.3": + version: 1.11.3 + resolution: "memoizerific@npm:1.11.3" + dependencies: + map-or-similar: "npm:^1.5.0" + checksum: 10c0/661bf69b7afbfad57f0208f0c63324f4c96087b480708115b78ee3f0237d86c7f91347f6db31528740b2776c2e34c709bcb034e1e910edee2270c9603a0a469e + languageName: node + linkType: hard + +"meow@npm:^13.2.0": + version: 13.2.0 + resolution: "meow@npm:13.2.0" + checksum: 10c0/d5b339ae314715bcd0b619dd2f8a266891928e21526b4800d49b4fba1cc3fff7e2c1ff5edd3344149fac841bc2306157f858e8c4d5eaee4d52ce52ad925664ce + languageName: node + linkType: hard + +"merge-stream@npm:^2.0.0": + version: 2.0.0 + resolution: "merge-stream@npm:2.0.0" + checksum: 10c0/867fdbb30a6d58b011449b8885601ec1690c3e41c759ecd5a9d609094f7aed0096c37823ff4a7190ef0b8f22cc86beb7049196ff68c016e3b3c671d0dac91ce5 + languageName: node + linkType: hard + +"merge2@npm:^1.3.0, merge2@npm:^1.4.1": + version: 1.4.1 + resolution: "merge2@npm:1.4.1" + checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb + languageName: node + linkType: hard + +"methods@npm:~1.1.0": + version: 1.1.2 + resolution: "methods@npm:1.1.2" + checksum: 10c0/bdf7cc72ff0a33e3eede03708c08983c4d7a173f91348b4b1e4f47d4cdbf734433ad971e7d1e8c77247d9e5cd8adb81ea4c67b0a2db526b758b2233d7814b8b2 + languageName: node + linkType: hard + +"micromatch@npm:^4.0.2, micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": + version: 4.0.8 + resolution: "micromatch@npm:4.0.8" + dependencies: + braces: "npm:^3.0.3" + picomatch: "npm:^2.3.1" + checksum: 10c0/166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8 + languageName: node + linkType: hard + +"mime-db@npm:1.52.0": + version: 1.52.0 + resolution: "mime-db@npm:1.52.0" + checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa + languageName: node + linkType: hard + +"mime-db@npm:>= 1.43.0 < 2": + version: 1.53.0 + resolution: "mime-db@npm:1.53.0" + checksum: 10c0/1dcc37ba8ed5d1c179f5c6f0837e8db19371d5f2ea3690c3c2f3fa8c3858f976851d3460b172b4dee78ebd606762cbb407aa398545fbacd539e519f858cd7bf4 + languageName: node + linkType: hard + +"mime-types@npm:^2.1.12, mime-types@npm:^2.1.18, mime-types@npm:~2.1.18, mime-types@npm:~2.1.19, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34": + version: 2.1.35 + resolution: "mime-types@npm:2.1.35" + dependencies: + mime-db: "npm:1.52.0" + checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2 + languageName: node + linkType: hard + +"mime@npm:^1.4.1": + version: 1.6.0 + resolution: "mime@npm:1.6.0" + bin: + mime: cli.js + checksum: 10c0/b92cd0adc44888c7135a185bfd0dddc42c32606401c72896a842ae15da71eb88858f17669af41e498b463cd7eb998f7b48939a25b08374c7924a9c8a6f8a81b0 + languageName: node + linkType: hard + +"mimic-fn@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-fn@npm:2.1.0" + checksum: 10c0/b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4 + languageName: node + linkType: hard + +"mimic-fn@npm:^4.0.0": + version: 4.0.0 + resolution: "mimic-fn@npm:4.0.0" + checksum: 10c0/de9cc32be9996fd941e512248338e43407f63f6d497abe8441fa33447d922e927de54d4cc3c1a3c6d652857acd770389d5a3823f311a744132760ce2be15ccbf + languageName: node + linkType: hard + +"mimic-function@npm:^5.0.0": + version: 5.0.1 + resolution: "mimic-function@npm:5.0.1" + checksum: 10c0/f3d9464dd1816ecf6bdf2aec6ba32c0728022039d992f178237d8e289b48764fee4131319e72eedd4f7f094e22ded0af836c3187a7edc4595d28dd74368fd81d + languageName: node + linkType: hard + +"mimic-response@npm:^1.0.0": + version: 1.0.1 + resolution: "mimic-response@npm:1.0.1" + checksum: 10c0/c5381a5eae997f1c3b5e90ca7f209ed58c3615caeee850e85329c598f0c000ae7bec40196580eef1781c60c709f47258131dab237cad8786f8f56750594f27fa + languageName: node + linkType: hard + +"mimic-response@npm:^2.0.0, mimic-response@npm:^2.1.0": + version: 2.1.0 + resolution: "mimic-response@npm:2.1.0" + checksum: 10c0/717475c840f20deca87a16cb2f7561f9115f5de225ea2377739e09890c81aec72f43c81fd4984650c4044e66be5a846fa7a517ac7908f01009e1e624e19864d5 + languageName: node + linkType: hard + +"min-indent@npm:^1.0.0, min-indent@npm:^1.0.1": + version: 1.0.1 + resolution: "min-indent@npm:1.0.1" + checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c + languageName: node + linkType: hard + +"minimatch@npm:9.0.3": + version: 9.0.3 + resolution: "minimatch@npm:9.0.3" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10c0/85f407dcd38ac3e180f425e86553911d101455ca3ad5544d6a7cec16286657e4f8a9aa6695803025c55e31e35a91a2252b5dc8e7d527211278b8b65b4dbd5eac + languageName: node + linkType: hard + +"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": + version: 3.1.2 + resolution: "minimatch@npm:3.1.2" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311 + languageName: node + linkType: hard + +"minimatch@npm:^8.0.2": + version: 8.0.4 + resolution: "minimatch@npm:8.0.4" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10c0/a0a394c356dd5b4cb7f821720841a82fa6f07c9c562c5b716909d1b6ec5e56a7e4c4b5029da26dd256b7d2b3a3f38cbf9ddd8680e887b9b5282b09c05501c1ca + languageName: node + linkType: hard + +"minimatch@npm:^9.0.1, minimatch@npm:^9.0.3, minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + languageName: node + linkType: hard + +"minimatch@npm:~3.0.3": + version: 3.0.8 + resolution: "minimatch@npm:3.0.8" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: 10c0/72b226f452dcfb5075255f53534cb83fc25565b909e79b9be4fad463d735cb1084827f7013ff41d050e77ee6e474408c6073473edd2fb72c2fd630cfb0acc6ad + languageName: node + linkType: hard + +"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e + languageName: node + linkType: hard + +"minipass-fetch@npm:^4.0.0": + version: 4.0.0 + resolution: "minipass-fetch@npm:4.0.0" + dependencies: + encoding: "npm:^0.1.13" + minipass: "npm:^7.0.3" + minipass-sized: "npm:^1.0.3" + minizlib: "npm:^3.0.1" + dependenciesMeta: + encoding: + optional: true + checksum: 10c0/7fa30ce7c373fb6f94c086b374fff1589fd7e78451855d2d06c2e2d9df936d131e73e952163063016592ed3081444bd8d1ea608533313b0149156ce23311da4b + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 + languageName: node + linkType: hard + +"minipass-sized@npm:^1.0.3": + version: 1.0.3 + resolution: "minipass-sized@npm:1.0.3" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c + languageName: node + linkType: hard + +"minipass@npm:^4.2.4": + version: 4.2.8 + resolution: "minipass@npm:4.2.8" + checksum: 10c0/4ea76b030d97079f4429d6e8a8affd90baf1b6a1898977c8ccce4701c5a2ba2792e033abc6709373f25c2c4d4d95440d9d5e9464b46b7b76ca44d2ce26d939ce + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 + languageName: node + linkType: hard + +"minizlib@npm:^3.0.1": + version: 3.0.1 + resolution: "minizlib@npm:3.0.1" + dependencies: + minipass: "npm:^7.0.4" + rimraf: "npm:^5.0.5" + checksum: 10c0/82f8bf70da8af656909a8ee299d7ed3b3372636749d29e105f97f20e88971be31f5ed7642f2e898f00283b68b701cc01307401cdc209b0efc5dd3818220e5093 + languageName: node + linkType: hard + +"mkdirp-classic@npm:^0.5.2": + version: 0.5.3 + resolution: "mkdirp-classic@npm:0.5.3" + checksum: 10c0/95371d831d196960ddc3833cc6907e6b8f67ac5501a6582f47dfae5eb0f092e9f8ce88e0d83afcae95d6e2b61a01741ba03714eeafb6f7a6e9dcc158ac85b168 + languageName: node + linkType: hard + +"mkdirp@npm:^3.0.1": + version: 3.0.1 + resolution: "mkdirp@npm:3.0.1" + bin: + mkdirp: dist/cjs/src/bin.js + checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d + languageName: node + linkType: hard + +"mlly@npm:^1.7.3, mlly@npm:^1.7.4": + version: 1.7.4 + resolution: "mlly@npm:1.7.4" + dependencies: + acorn: "npm:^8.14.0" + pathe: "npm:^2.0.1" + pkg-types: "npm:^1.3.0" + ufo: "npm:^1.5.4" + checksum: 10c0/69e738218a13d6365caf930e0ab4e2b848b84eec261597df9788cefb9930f3e40667be9cb58a4718834ba5f97a6efeef31d3b5a95f4388143fd4e0d0deff72ff + languageName: node + linkType: hard + +"module-details-from-path@npm:^1.0.3": + version: 1.0.3 + resolution: "module-details-from-path@npm:1.0.3" + checksum: 10c0/3d881f3410c142e4c2b1307835a2862ba04e5b3ec6e90655614a0ee2c4b299b4c1d117fb525d2435bf436990026f18d338a197b54ad6bd36252f465c336ff423 + languageName: node + linkType: hard + +"morgan@npm:^1.6.1": + version: 1.10.0 + resolution: "morgan@npm:1.10.0" + dependencies: + basic-auth: "npm:~2.0.1" + debug: "npm:2.6.9" + depd: "npm:~2.0.0" + on-finished: "npm:~2.3.0" + on-headers: "npm:~1.0.2" + checksum: 10c0/684db061daca28f8d8e3bfd50bd0d21734401b46f74ea76f6df7785d45698fcd98f6d3b81a6bad59f8288c429183afba728c428e8f66d2e8c30fd277af3b5b3a + languageName: node + linkType: hard + +"mrmime@npm:^1.0.1": + version: 1.0.1 + resolution: "mrmime@npm:1.0.1" + checksum: 10c0/ab071441da76fd23b3b0d1823d77aacf8679d379a4a94cacd83e487d3d906763b277f3203a594c613602e31ab5209c26a8119b0477c4541ef8555b293a9db6d3 + languageName: node + linkType: hard + +"ms@npm:2.0.0": + version: 2.0.0 + resolution: "ms@npm:2.0.0" + checksum: 10c0/f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d + languageName: node + linkType: hard + +"ms@npm:2.1.2": + version: 2.1.2 + resolution: "ms@npm:2.1.2" + checksum: 10c0/a437714e2f90dbf881b5191d35a6db792efbca5badf112f87b9e1c712aace4b4b9b742dd6537f3edf90fd6f684de897cec230abde57e87883766712ddda297cc + languageName: node + linkType: hard + +"ms@npm:^2.1.1, ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 + languageName: node + linkType: hard + +"muggle-string@npm:^0.3.1": + version: 0.3.1 + resolution: "muggle-string@npm:0.3.1" + checksum: 10c0/489b0575fa76e30914393915a36638590052409fca2206a6bef0fb0ad7b181c1cbf99761191bfd16fe402c6f5a3164897965422fa32ef20ada1b44024ba46ab6 + languageName: node + linkType: hard + +"mustache@npm:^4.2.0": + version: 4.2.0 + resolution: "mustache@npm:4.2.0" + bin: + mustache: bin/mustache + checksum: 10c0/1f8197e8a19e63645a786581d58c41df7853da26702dbc005193e2437c98ca49b255345c173d50c08fe4b4dbb363e53cb655ecc570791f8deb09887248dd34a2 + languageName: node + linkType: hard + +"mz@npm:^2.1.0": + version: 2.7.0 + resolution: "mz@npm:2.7.0" + dependencies: + any-promise: "npm:^1.0.0" + object-assign: "npm:^4.0.1" + thenify-all: "npm:^1.0.0" + checksum: 10c0/103114e93f87362f0b56ab5b2e7245051ad0276b646e3902c98397d18bb8f4a77f2ea4a2c9d3ad516034ea3a56553b60d3f5f78220001ca4c404bd711bd0af39 + languageName: node + linkType: hard + +"nanoid@npm:^3.1.23, nanoid@npm:^3.3.6, nanoid@npm:^3.3.8": + version: 3.3.8 + resolution: "nanoid@npm:3.3.8" + bin: + nanoid: bin/nanoid.cjs + checksum: 10c0/4b1bb29f6cfebf3be3bc4ad1f1296fb0a10a3043a79f34fbffe75d1621b4318319211cd420549459018ea3592f0d2f159247a6f874911d6d26eaaadda2478120 + languageName: node + linkType: hard + +"nanoid@npm:^5.0.9": + version: 5.1.2 + resolution: "nanoid@npm:5.1.2" + bin: + nanoid: bin/nanoid.js + checksum: 10c0/60b3d30d1629704f4b156f79e53a454d10440a38f4ab14cda1c9aa08091389212d03afb35fbc09c11f4619f83bcf5076abc4719295e3b79c57abad0e40297177 + languageName: node + linkType: hard + +"natural-compare@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare@npm:1.4.0" + checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 + languageName: node + linkType: hard + +"natural-orderby@npm:^3.0.2": + version: 3.0.2 + resolution: "natural-orderby@npm:3.0.2" + checksum: 10c0/bc64985334946390d957fc6364d4b93fc0cff240789e67d4ae7fd754dd50172527c13db7f16e662785ad3fcd2ace933252d44d8a27cef79db2e391c24fb64ac9 + languageName: node + linkType: hard + +"needle@npm:^3.1.0": + version: 3.3.1 + resolution: "needle@npm:3.3.1" + dependencies: + iconv-lite: "npm:^0.6.3" + sax: "npm:^1.2.4" + bin: + needle: bin/needle + checksum: 10c0/233b9315d47b735867d03e7a018fb665ee6cacf3a83b991b19538019cf42b538a3e85ca745c840b4c5e9a0ffdca76472f941363bf7c166214ae8cbc650fd4d39 + languageName: node + linkType: hard + +"negotiator@npm:0.6.3": + version: 0.6.3 + resolution: "negotiator@npm:0.6.3" + checksum: 10c0/3ec9fd413e7bf071c937ae60d572bc67155262068ed522cf4b3be5edbe6ddf67d095ec03a3a14ebf8fc8e95f8e1d61be4869db0dbb0de696f6b837358bd43fc2 + languageName: node + linkType: hard + +"negotiator@npm:^1.0.0": + version: 1.0.0 + resolution: "negotiator@npm:1.0.0" + checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b + languageName: node + linkType: hard + +"neo-async@npm:^2.6.2": + version: 2.6.2 + resolution: "neo-async@npm:2.6.2" + checksum: 10c0/c2f5a604a54a8ec5438a342e1f356dff4bc33ccccdb6dc668d94fe8e5eccfc9d2c2eea6064b0967a767ba63b33763f51ccf2cd2441b461a7322656c1f06b3f5d + languageName: node + linkType: hard + +"netlify-plugin-cypress@npm:^2.2.1": + version: 2.2.1 + resolution: "netlify-plugin-cypress@npm:2.2.1" + dependencies: + common-tags: "npm:1.8.0" + debug: "npm:4.1.1" + got: "npm:10.7.0" + local-web-server: "npm:^4.2.1" + puppeteer: "npm:18.1.0" + ramda: "npm:0.27.1" + checksum: 10c0/5f61fbf134f21903c4e7495dba8164ecfe80e127ff8f86b66fe32079dc3e3c5ecfd75c12b0bc49765d6eb58a5177bd62750dda8879cdb9322e34aec840e09b4d + languageName: node + linkType: hard + +"next-auth@npm:5.0.0-beta.19": + version: 5.0.0-beta.19 + resolution: "next-auth@npm:5.0.0-beta.19" + dependencies: + "@auth/core": "npm:0.32.0" + peerDependencies: + "@simplewebauthn/browser": ^9.0.1 + "@simplewebauthn/server": ^9.0.2 + next: ^14 || ^15.0.0-0 + nodemailer: ^6.6.5 + react: ^18.2.0 || ^19.0.0-0 + peerDependenciesMeta: + "@simplewebauthn/browser": + optional: true + "@simplewebauthn/server": + optional: true + nodemailer: + optional: true + checksum: 10c0/30804eae158b9e57cdeeeef81d4aee10aabff8c415403b34cab673eb5eeadfe2232d77d782a7b1ad862bb3dc60faacf51794a23e52679243d156531609b7875f + languageName: node + linkType: hard + +"next@npm:*": + version: 15.1.7 + resolution: "next@npm:15.1.7" + dependencies: + "@next/env": "npm:15.1.7" + "@next/swc-darwin-arm64": "npm:15.1.7" + "@next/swc-darwin-x64": "npm:15.1.7" + "@next/swc-linux-arm64-gnu": "npm:15.1.7" + "@next/swc-linux-arm64-musl": "npm:15.1.7" + "@next/swc-linux-x64-gnu": "npm:15.1.7" + "@next/swc-linux-x64-musl": "npm:15.1.7" + "@next/swc-win32-arm64-msvc": "npm:15.1.7" + "@next/swc-win32-x64-msvc": "npm:15.1.7" + "@swc/counter": "npm:0.1.3" + "@swc/helpers": "npm:0.5.15" + busboy: "npm:1.6.0" + caniuse-lite: "npm:^1.0.30001579" + postcss: "npm:8.4.31" + sharp: "npm:^0.33.5" + styled-jsx: "npm:5.1.6" + peerDependencies: + "@opentelemetry/api": ^1.1.0 + "@playwright/test": ^1.41.2 + babel-plugin-react-compiler: "*" + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + dependenciesMeta: + "@next/swc-darwin-arm64": + optional: true + "@next/swc-darwin-x64": + optional: true + "@next/swc-linux-arm64-gnu": + optional: true + "@next/swc-linux-arm64-musl": + optional: true + "@next/swc-linux-x64-gnu": + optional: true + "@next/swc-linux-x64-musl": + optional: true + "@next/swc-win32-arm64-msvc": + optional: true + "@next/swc-win32-x64-msvc": + optional: true + sharp: + optional: true + peerDependenciesMeta: + "@opentelemetry/api": + optional: true + "@playwright/test": + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + bin: + next: dist/bin/next + checksum: 10c0/9d0f26c3742fb4339b931124607f267558357f2a9cd1cde4ea7d5755cea56a2f751b5898e1babd686ae97ee1f6043c94177f1dcc9c69db50b61d27e441970dfe + languageName: node + linkType: hard + +"next@npm:^14.2.18": + version: 14.2.24 + resolution: "next@npm:14.2.24" + dependencies: + "@next/env": "npm:14.2.24" + "@next/swc-darwin-arm64": "npm:14.2.24" + "@next/swc-darwin-x64": "npm:14.2.24" + "@next/swc-linux-arm64-gnu": "npm:14.2.24" + "@next/swc-linux-arm64-musl": "npm:14.2.24" + "@next/swc-linux-x64-gnu": "npm:14.2.24" + "@next/swc-linux-x64-musl": "npm:14.2.24" + "@next/swc-win32-arm64-msvc": "npm:14.2.24" + "@next/swc-win32-ia32-msvc": "npm:14.2.24" + "@next/swc-win32-x64-msvc": "npm:14.2.24" + "@swc/helpers": "npm:0.5.5" + busboy: "npm:1.6.0" + caniuse-lite: "npm:^1.0.30001579" + graceful-fs: "npm:^4.2.11" + postcss: "npm:8.4.31" + styled-jsx: "npm:5.1.1" + peerDependencies: + "@opentelemetry/api": ^1.1.0 + "@playwright/test": ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + dependenciesMeta: + "@next/swc-darwin-arm64": + optional: true + "@next/swc-darwin-x64": + optional: true + "@next/swc-linux-arm64-gnu": + optional: true + "@next/swc-linux-arm64-musl": + optional: true + "@next/swc-linux-x64-gnu": + optional: true + "@next/swc-linux-x64-musl": + optional: true + "@next/swc-win32-arm64-msvc": + optional: true + "@next/swc-win32-ia32-msvc": + optional: true + "@next/swc-win32-x64-msvc": + optional: true + peerDependenciesMeta: + "@opentelemetry/api": + optional: true + "@playwright/test": + optional: true + sass: + optional: true + bin: + next: dist/bin/next + checksum: 10c0/b047fb1a1d9fe16bda1bdaac51fd52defb4a5104aec30cbd43f868a4ec819989751f5dc53ab4a270ef5d0e8efd7020c1641aa89234e230b061a54036f63ddcb8 + languageName: node + linkType: hard + +"no-case@npm:^3.0.4": + version: 3.0.4 + resolution: "no-case@npm:3.0.4" + dependencies: + lower-case: "npm:^2.0.2" + tslib: "npm:^2.0.3" + checksum: 10c0/8ef545f0b3f8677c848f86ecbd42ca0ff3cd9dd71c158527b344c69ba14710d816d8489c746b6ca225e7b615108938a0bda0a54706f8c255933703ac1cf8e703 + languageName: node + linkType: hard + +"node-addon-api@npm:^7.0.0": + version: 7.1.1 + resolution: "node-addon-api@npm:7.1.1" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/fb32a206276d608037fa1bcd7e9921e177fe992fc610d098aa3128baca3c0050fc1e014fa007e9b3874cf865ddb4f5bd9f43ccb7cbbbe4efaff6a83e920b17e9 + languageName: node + linkType: hard + +"node-fetch@npm:2.6.7": + version: 2.6.7 + resolution: "node-fetch@npm:2.6.7" + dependencies: + whatwg-url: "npm:^5.0.0" + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: 10c0/fcae80f5ac52fbf5012f5e19df2bd3915e67d3b3ad51cb5942943df2238d32ba15890fecabd0e166876a9f98a581ab50f3f10eb942b09405c49ef8da36b826c7 + languageName: node + linkType: hard + +"node-fetch@npm:^2.0.0, node-fetch@npm:^2.6.7, node-fetch@npm:^2.7.0": + version: 2.7.0 + resolution: "node-fetch@npm:2.7.0" + dependencies: + whatwg-url: "npm:^5.0.0" + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + checksum: 10c0/b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8 + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 11.1.0 + resolution: "node-gyp@npm:11.1.0" + dependencies: + env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" + glob: "npm:^10.3.10" + graceful-fs: "npm:^4.2.6" + make-fetch-happen: "npm:^14.0.3" + nopt: "npm:^8.0.0" + proc-log: "npm:^5.0.0" + semver: "npm:^7.3.5" + tar: "npm:^7.4.3" + which: "npm:^5.0.0" + bin: + node-gyp: bin/node-gyp.js + checksum: 10c0/c38977ce502f1ea41ba2b8721bd5b49bc3d5b3f813eabfac8414082faf0620ccb5211e15c4daecc23ed9f5e3e9cc4da00e575a0bcfc2a95a069294f2afa1e0cd + languageName: node + linkType: hard + +"node-int64@npm:^0.4.0": + version: 0.4.0 + resolution: "node-int64@npm:0.4.0" + checksum: 10c0/a6a4d8369e2f2720e9c645255ffde909c0fbd41c92ea92a5607fc17055955daac99c1ff589d421eee12a0d24e99f7bfc2aabfeb1a4c14742f6c099a51863f31a + languageName: node + linkType: hard + +"node-releases@npm:^2.0.19": + version: 2.0.19 + resolution: "node-releases@npm:2.0.19" + checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa + languageName: node + linkType: hard + +"node-version-matches@npm:^2.0.1": + version: 2.0.1 + resolution: "node-version-matches@npm:2.0.1" + dependencies: + semver: "npm:^6.3.0" + checksum: 10c0/9ab81f411d84affcf2e8480ad92e41cb694e454dec59c67aa72376d73ae0d15a04e4c1db71566ab0186f083cd7ceb101e21654f108646e4a46c9f37d37d60ab4 + languageName: node + linkType: hard + +"nopt@npm:^8.0.0": + version: 8.1.0 + resolution: "nopt@npm:8.1.0" + dependencies: + abbrev: "npm:^3.0.0" + bin: + nopt: bin/nopt.js + checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef + languageName: node + linkType: hard + +"normalize-package-data@npm:^2.5.0": + version: 2.5.0 + resolution: "normalize-package-data@npm:2.5.0" + dependencies: + hosted-git-info: "npm:^2.1.4" + resolve: "npm:^1.10.0" + semver: "npm:2 || 3 || 4 || 5" + validate-npm-package-license: "npm:^3.0.1" + checksum: 10c0/357cb1646deb42f8eb4c7d42c4edf0eec312f3628c2ef98501963cc4bbe7277021b2b1d977f982b2edce78f5a1014613ce9cf38085c3df2d76730481357ca504 + languageName: node + linkType: hard + +"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0": + version: 3.0.0 + resolution: "normalize-path@npm:3.0.0" + checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046 + languageName: node + linkType: hard + +"normalize-url@npm:^6.0.1": + version: 6.1.0 + resolution: "normalize-url@npm:6.1.0" + checksum: 10c0/95d948f9bdd2cfde91aa786d1816ae40f8262946e13700bf6628105994fe0ff361662c20af3961161c38a119dc977adeb41fc0b41b1745eb77edaaf9cb22db23 + languageName: node + linkType: hard + +"npm-run-path@npm:^4.0.0, npm-run-path@npm:^4.0.1": + version: 4.0.1 + resolution: "npm-run-path@npm:4.0.1" + dependencies: + path-key: "npm:^3.0.0" + checksum: 10c0/6f9353a95288f8455cf64cbeb707b28826a7f29690244c1e4bb61ec573256e021b6ad6651b394eb1ccfd00d6ec50147253aba2c5fe58a57ceb111fad62c519ac + languageName: node + linkType: hard + +"npm-run-path@npm:^5.1.0": + version: 5.3.0 + resolution: "npm-run-path@npm:5.3.0" + dependencies: + path-key: "npm:^4.0.0" + checksum: 10c0/124df74820c40c2eb9a8612a254ea1d557ddfab1581c3e751f825e3e366d9f00b0d76a3c94ecd8398e7f3eee193018622677e95816e8491f0797b21e30b2deba + languageName: node + linkType: hard + +"nth-check@npm:^2.0.1": + version: 2.1.1 + resolution: "nth-check@npm:2.1.1" + dependencies: + boolbase: "npm:^1.0.0" + checksum: 10c0/5fee7ff309727763689cfad844d979aedd2204a817fbaaf0e1603794a7c20db28548d7b024692f953557df6ce4a0ee4ae46cd8ebd9b36cfb300b9226b567c479 + languageName: node + linkType: hard + +"nwsapi@npm:^2.2.2": + version: 2.2.16 + resolution: "nwsapi@npm:2.2.16" + checksum: 10c0/0aa0637f4d51043d0183d994e08336bae996b03b42984381bf09ebdf3ff4909c018eda6b2a8aba0a08f3ea8303db8a0dad0608b38dc0bff15fd87017286ae21a + languageName: node + linkType: hard + +"oauth4webapi@npm:^2.9.0": + version: 2.17.0 + resolution: "oauth4webapi@npm:2.17.0" + checksum: 10c0/a3be4f07f3050c982c9f47a899cb34eb4ce1b2072818eab37f241c7db932cf0dac31ed90b0913eaaaebfd7b23e8bf397ecef249a11aea699efb62c7657884ba5 + languageName: node + linkType: hard + +"object-assign@npm:^4.0.1, object-assign@npm:^4.1.1": + version: 4.1.1 + resolution: "object-assign@npm:4.1.1" + checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414 + languageName: node + linkType: hard + +"object-inspect@npm:^1.13.3": + version: 1.13.4 + resolution: "object-inspect@npm:1.13.4" + checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692 + languageName: node + linkType: hard + +"object-keys@npm:^1.1.1": + version: 1.1.1 + resolution: "object-keys@npm:1.1.1" + checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d + languageName: node + linkType: hard + +"object.assign@npm:^4.1.4, object.assign@npm:^4.1.7": + version: 4.1.7 + resolution: "object.assign@npm:4.1.7" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + has-symbols: "npm:^1.1.0" + object-keys: "npm:^1.1.1" + checksum: 10c0/3b2732bd860567ea2579d1567525168de925a8d852638612846bd8082b3a1602b7b89b67b09913cbb5b9bd6e95923b2ae73580baa9d99cb4e990564e8cbf5ddc + languageName: node + linkType: hard + +"object.entries@npm:^1.1.8": + version: 1.1.8 + resolution: "object.entries@npm:1.1.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/db9ea979d2956a3bc26c262da4a4d212d36f374652cc4c13efdd069c1a519c16571c137e2893d1c46e1cb0e15c88fd6419eaf410c945f329f09835487d7e65d3 + languageName: node + linkType: hard + +"object.fromentries@npm:^2.0.8": + version: 2.0.8 + resolution: "object.fromentries@npm:2.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/cd4327e6c3369cfa805deb4cbbe919bfb7d3aeebf0bcaba291bb568ea7169f8f8cdbcabe2f00b40db0c20cd20f08e11b5f3a5a36fb7dd3fe04850c50db3bf83b + languageName: node + linkType: hard + +"object.groupby@npm:^1.0.3": + version: 1.0.3 + resolution: "object.groupby@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + checksum: 10c0/60d0455c85c736fbfeda0217d1a77525956f76f7b2495edeca9e9bbf8168a45783199e77b894d30638837c654d0cc410e0e02cbfcf445bc8de71c3da1ede6a9c + languageName: node + linkType: hard + +"object.values@npm:^1.1.6, object.values@npm:^1.2.0, object.values@npm:^1.2.1": + version: 1.2.1 + resolution: "object.values@npm:1.2.1" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/3c47814fdc64842ae3d5a74bc9d06bdd8d21563c04d9939bf6716a9c00596a4ebc342552f8934013d1ec991c74e3671b26710a0c51815f0b603795605ab6b2c9 + languageName: node + linkType: hard + +"obuf@npm:~1.1.2": + version: 1.1.2 + resolution: "obuf@npm:1.1.2" + checksum: 10c0/520aaac7ea701618eacf000fc96ae458e20e13b0569845800fc582f81b386731ab22d55354b4915d58171db00e79cfcd09c1638c02f89577ef092b38c65b7d81 + languageName: node + linkType: hard + +"on-finished@npm:^2.3.0": + version: 2.4.1 + resolution: "on-finished@npm:2.4.1" + dependencies: + ee-first: "npm:1.1.1" + checksum: 10c0/46fb11b9063782f2d9968863d9cbba33d77aa13c17f895f56129c274318b86500b22af3a160fe9995aa41317efcd22941b6eba747f718ced08d9a73afdb087b4 + languageName: node + linkType: hard + +"on-finished@npm:~2.3.0": + version: 2.3.0 + resolution: "on-finished@npm:2.3.0" + dependencies: + ee-first: "npm:1.1.1" + checksum: 10c0/c904f9e518b11941eb60279a3cbfaf1289bd0001f600a950255b1dede9fe3df8cd74f38483550b3bb9485165166acb5db500c3b4c4337aec2815c88c96fcc2ea + languageName: node + linkType: hard + +"on-headers@npm:~1.0.2": + version: 1.0.2 + resolution: "on-headers@npm:1.0.2" + checksum: 10c0/f649e65c197bf31505a4c0444875db0258e198292f34b884d73c2f751e91792ef96bb5cf89aa0f4fecc2e4dc662461dda606b1274b0e564f539cae5d2f5fc32f + languageName: node + linkType: hard + +"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": + version: 1.4.0 + resolution: "once@npm:1.4.0" + dependencies: + wrappy: "npm:1" + checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0 + languageName: node + linkType: hard + +"onetime@npm:^5.1.0, onetime@npm:^5.1.2": + version: 5.1.2 + resolution: "onetime@npm:5.1.2" + dependencies: + mimic-fn: "npm:^2.1.0" + checksum: 10c0/ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f + languageName: node + linkType: hard + +"onetime@npm:^6.0.0": + version: 6.0.0 + resolution: "onetime@npm:6.0.0" + dependencies: + mimic-fn: "npm:^4.0.0" + checksum: 10c0/4eef7c6abfef697dd4479345a4100c382d73c149d2d56170a54a07418c50816937ad09500e1ed1e79d235989d073a9bade8557122aee24f0576ecde0f392bb6c + languageName: node + linkType: hard + +"onetime@npm:^7.0.0": + version: 7.0.0 + resolution: "onetime@npm:7.0.0" + dependencies: + mimic-function: "npm:^5.0.0" + checksum: 10c0/5cb9179d74b63f52a196a2e7037ba2b9a893245a5532d3f44360012005c9cadb60851d56716ebff18a6f47129dab7168022445df47c2aff3b276d92585ed1221 + languageName: node + linkType: hard + +"only@npm:~0.0.2": + version: 0.0.2 + resolution: "only@npm:0.0.2" + checksum: 10c0/d26b1347835a5a9b17afbd889ed60de3d3ae14cdeca5ba008d86e6bf055466a431adc731b82e1e8ab24a3b8be5b5c2cdbc16e652d231d18cc1a5752320aaf0a0 + languageName: node + linkType: hard + +"open@npm:^7.0.4, open@npm:^7.4.2": + version: 7.4.2 + resolution: "open@npm:7.4.2" + dependencies: + is-docker: "npm:^2.0.0" + is-wsl: "npm:^2.1.1" + checksum: 10c0/77573a6a68f7364f3a19a4c80492712720746b63680ee304555112605ead196afe91052bd3c3d165efdf4e9d04d255e87de0d0a77acec11ef47fd5261251813f + languageName: node + linkType: hard + +"open@npm:^8.0.4": + version: 8.4.2 + resolution: "open@npm:8.4.2" + dependencies: + define-lazy-prop: "npm:^2.0.0" + is-docker: "npm:^2.1.1" + is-wsl: "npm:^2.2.0" + checksum: 10c0/bb6b3a58401dacdb0aad14360626faf3fb7fba4b77816b373495988b724fb48941cad80c1b65d62bb31a17609b2cd91c41a181602caea597ca80dfbcc27e84c9 + languageName: node + linkType: hard + +"optionator@npm:^0.9.3": + version: 0.9.4 + resolution: "optionator@npm:0.9.4" + dependencies: + deep-is: "npm:^0.1.3" + fast-levenshtein: "npm:^2.0.6" + levn: "npm:^0.4.1" + prelude-ls: "npm:^1.2.1" + type-check: "npm:^0.4.0" + word-wrap: "npm:^1.2.5" + checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 + languageName: node + linkType: hard + +"os-tmpdir@npm:~1.0.2": + version: 1.0.2 + resolution: "os-tmpdir@npm:1.0.2" + checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990 + languageName: node + linkType: hard + +"ospath@npm:^1.2.2": + version: 1.2.2 + resolution: "ospath@npm:1.2.2" + checksum: 10c0/e485a6ca91964f786163408b093860bf26a9d9704d83ec39ccf463b9f11ea712b780b23b73d1f64536de62c5f66244dd94ed83fc9ffe3c1564dd1eed5cdae923 + languageName: node + linkType: hard + +"own-keys@npm:^1.0.1": + version: 1.0.1 + resolution: "own-keys@npm:1.0.1" + dependencies: + get-intrinsic: "npm:^1.2.6" + object-keys: "npm:^1.1.1" + safe-push-apply: "npm:^1.0.0" + checksum: 10c0/6dfeb3455bff92ec3f16a982d4e3e65676345f6902d9f5ded1d8265a6318d0200ce461956d6d1c70053c7fe9f9fe65e552faac03f8140d37ef0fdd108e67013a + languageName: node + linkType: hard + +"p-cancelable@npm:^2.0.0": + version: 2.1.1 + resolution: "p-cancelable@npm:2.1.1" + checksum: 10c0/8c6dc1f8dd4154fd8b96a10e55a3a832684c4365fb9108056d89e79fbf21a2465027c04a59d0d797b5ffe10b54a61a32043af287d5c4860f1e996cbdbc847f01 + languageName: node + linkType: hard + +"p-event@npm:^4.0.0": + version: 4.2.0 + resolution: "p-event@npm:4.2.0" + dependencies: + p-timeout: "npm:^3.1.0" + checksum: 10c0/f1b6a2fb13d47f2a8afc00150da5ece0d28940ce3d8fa562873e091d3337d298e78fee9cb18b768598ff1d11df608b2ae23868309ff6405b864a2451ccd6d25a + languageName: node + linkType: hard + +"p-filter@npm:^4.1.0": + version: 4.1.0 + resolution: "p-filter@npm:4.1.0" + dependencies: + p-map: "npm:^7.0.1" + checksum: 10c0/aaa663a74e7d97846377f1b7f7713692f95ca3320f0e6f7f2f06db073926bd8ef7b452d0eefc102c6c23f7482339fc52ea487aec2071dc01cae054665f3f004e + languageName: node + linkType: hard + +"p-finally@npm:^1.0.0": + version: 1.0.0 + resolution: "p-finally@npm:1.0.0" + checksum: 10c0/6b8552339a71fe7bd424d01d8451eea92d379a711fc62f6b2fe64cad8a472c7259a236c9a22b4733abca0b5666ad503cb497792a0478c5af31ded793d00937e7 + languageName: node + linkType: hard + +"p-limit@npm:^2.2.0": + version: 2.3.0 + resolution: "p-limit@npm:2.3.0" + dependencies: + p-try: "npm:^2.0.0" + checksum: 10c0/8da01ac53efe6a627080fafc127c873da40c18d87b3f5d5492d465bb85ec7207e153948df6b9cbaeb130be70152f874229b8242ee2be84c0794082510af97f12 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2, p-limit@npm:^3.1.0": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: "npm:^0.1.0" + checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a + languageName: node + linkType: hard + +"p-limit@npm:^5.0.0": + version: 5.0.0 + resolution: "p-limit@npm:5.0.0" + dependencies: + yocto-queue: "npm:^1.0.0" + checksum: 10c0/574e93b8895a26e8485eb1df7c4b58a1a6e8d8ae41b1750cc2cc440922b3d306044fc6e9a7f74578a883d46802d9db72b30f2e612690fcef838c173261b1ed83 + languageName: node + linkType: hard + +"p-locate@npm:^4.1.0": + version: 4.1.0 + resolution: "p-locate@npm:4.1.0" + dependencies: + p-limit: "npm:^2.2.0" + checksum: 10c0/1b476ad69ad7f6059744f343b26d51ce091508935c1dbb80c4e0a2f397ffce0ca3a1f9f5cd3c7ce19d7929a09719d5c65fe70d8ee289c3f267cd36f2881813e9 + languageName: node + linkType: hard + +"p-locate@npm:^5.0.0": + version: 5.0.0 + resolution: "p-locate@npm:5.0.0" + dependencies: + p-limit: "npm:^3.0.2" + checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a + languageName: node + linkType: hard + +"p-map@npm:^4.0.0": + version: 4.0.0 + resolution: "p-map@npm:4.0.0" + dependencies: + aggregate-error: "npm:^3.0.0" + checksum: 10c0/592c05bd6262c466ce269ff172bb8de7c6975afca9b50c975135b974e9bdaafbfe80e61aaaf5be6d1200ba08b30ead04b88cfa7e25ff1e3b93ab28c9f62a2c75 + languageName: node + linkType: hard + +"p-map@npm:^7.0.1, p-map@npm:^7.0.2": + version: 7.0.3 + resolution: "p-map@npm:7.0.3" + checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c + languageName: node + linkType: hard + +"p-reduce@npm:^3.0.0": + version: 3.0.0 + resolution: "p-reduce@npm:3.0.0" + checksum: 10c0/794cd6c98ad246f6f41fa4b925e56c7d8759b92f67712f5f735418dc7b47cd9aadaecbbbedaea2df879fd9c5d7622ed0b22a2c090d2ec349cf0578485a660196 + languageName: node + linkType: hard + +"p-timeout@npm:^3.1.0": + version: 3.2.0 + resolution: "p-timeout@npm:3.2.0" + dependencies: + p-finally: "npm:^1.0.0" + checksum: 10c0/524b393711a6ba8e1d48137c5924749f29c93d70b671e6db761afa784726572ca06149c715632da8f70c090073afb2af1c05730303f915604fd38ee207b70a61 + languageName: node + linkType: hard + +"p-try@npm:^2.0.0": + version: 2.2.0 + resolution: "p-try@npm:2.2.0" + checksum: 10c0/c36c19907734c904b16994e6535b02c36c2224d433e01a2f1ab777237f4d86e6289fd5fd464850491e940379d4606ed850c03e0f9ab600b0ebddb511312e177f + languageName: node + linkType: hard + +"package-json-from-dist@npm:^1.0.0": + version: 1.0.1 + resolution: "package-json-from-dist@npm:1.0.1" + checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b + languageName: node + linkType: hard + +"package-json@npm:^10.0.0": + version: 10.0.1 + resolution: "package-json@npm:10.0.1" + dependencies: + ky: "npm:^1.2.0" + registry-auth-token: "npm:^5.0.2" + registry-url: "npm:^6.0.1" + semver: "npm:^7.6.0" + checksum: 10c0/4a55648d820496326730a7b149fd3fd8382e96f3d6def5ec687f46b75063894acf06b21f79832b40bb094c821d97f532cb0f009f85c4102d0084b488d4f492d3 + languageName: node + linkType: hard + +"parent-module@npm:^1.0.0": + version: 1.0.1 + resolution: "parent-module@npm:1.0.1" + dependencies: + callsites: "npm:^3.0.0" + checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 + languageName: node + linkType: hard + +"parse-json@npm:^5.0.0, parse-json@npm:^5.2.0": + version: 5.2.0 + resolution: "parse-json@npm:5.2.0" + dependencies: + "@babel/code-frame": "npm:^7.0.0" + error-ex: "npm:^1.3.1" + json-parse-even-better-errors: "npm:^2.3.0" + lines-and-columns: "npm:^1.1.6" + checksum: 10c0/77947f2253005be7a12d858aedbafa09c9ae39eb4863adf330f7b416ca4f4a08132e453e08de2db46459256fb66afaac5ee758b44fe6541b7cdaf9d252e59585 + languageName: node + linkType: hard + +"parse-node-version@npm:^1.0.1": + version: 1.0.1 + resolution: "parse-node-version@npm:1.0.1" + checksum: 10c0/999cd3d7da1425c2e182dce82b226c6dc842562d3ed79ec47f5c719c32a7f6c1a5352495b894fc25df164be7f2ede4224758255da9902ddef81f2b77ba46bb2c + languageName: node + linkType: hard + +"parse5@npm:^7.0.0, parse5@npm:^7.1.1": + version: 7.2.1 + resolution: "parse5@npm:7.2.1" + dependencies: + entities: "npm:^4.5.0" + checksum: 10c0/829d37a0c709215a887e410a7118d754f8e1afd7edb529db95bc7bbf8045fb0266a7b67801331d8e8d9d073ea75793624ec27ce9ff3b96862c3b9008f4d68e80 + languageName: node + linkType: hard + +"parseurl@npm:^1.3.2, parseurl@npm:~1.3.2": + version: 1.3.3 + resolution: "parseurl@npm:1.3.3" + checksum: 10c0/90dd4760d6f6174adb9f20cf0965ae12e23879b5f5464f38e92fce8073354341e4b3b76fa3d878351efe7d01e617121955284cfd002ab087fba1a0726ec0b4f5 + languageName: node + linkType: hard + +"patch-package@npm:^8.0.0": + version: 8.0.0 + resolution: "patch-package@npm:8.0.0" + dependencies: + "@yarnpkg/lockfile": "npm:^1.1.0" + chalk: "npm:^4.1.2" + ci-info: "npm:^3.7.0" + cross-spawn: "npm:^7.0.3" + find-yarn-workspace-root: "npm:^2.0.0" + fs-extra: "npm:^9.0.0" + json-stable-stringify: "npm:^1.0.2" + klaw-sync: "npm:^6.0.0" + minimist: "npm:^1.2.6" + open: "npm:^7.4.2" + rimraf: "npm:^2.6.3" + semver: "npm:^7.5.3" + slash: "npm:^2.0.0" + tmp: "npm:^0.0.33" + yaml: "npm:^2.2.2" + bin: + patch-package: index.js + checksum: 10c0/690eab0537e953a3fd7d32bb23f0e82f97cd448f8244c3227ed55933611a126f9476397325c06ad2c11d881a19b427a02bd1881bee78d89f1731373fc4fe0fee + languageName: node + linkType: hard + +"path-browserify@npm:^1.0.1": + version: 1.0.1 + resolution: "path-browserify@npm:1.0.1" + checksum: 10c0/8b8c3fd5c66bd340272180590ae4ff139769e9ab79522e2eb82e3d571a89b8117c04147f65ad066dccfb42fcad902e5b7d794b3d35e0fd840491a8ddbedf8c66 + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b + languageName: node + linkType: hard + +"path-is-absolute@npm:1.0.1, path-is-absolute@npm:^1.0.0": + version: 1.0.1 + resolution: "path-is-absolute@npm:1.0.1" + checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078 + languageName: node + linkType: hard + +"path-key@npm:^3.0.0, path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c + languageName: node + linkType: hard + +"path-key@npm:^4.0.0": + version: 4.0.0 + resolution: "path-key@npm:4.0.0" + checksum: 10c0/794efeef32863a65ac312f3c0b0a99f921f3e827ff63afa5cb09a377e202c262b671f7b3832a4e64731003fa94af0263713962d317b9887bd1e0c48a342efba3 + languageName: node + linkType: hard + +"path-parse@npm:^1.0.6, path-parse@npm:^1.0.7": + version: 1.0.7 + resolution: "path-parse@npm:1.0.7" + checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1 + languageName: node + linkType: hard + +"path-scurry@npm:^1.10.1, path-scurry@npm:^1.11.1, path-scurry@npm:^1.6.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" + dependencies: + lru-cache: "npm:^10.2.0" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d + languageName: node + linkType: hard + +"path-to-regexp@npm:^1.2.0": + version: 1.9.0 + resolution: "path-to-regexp@npm:1.9.0" + dependencies: + isarray: "npm:0.0.1" + checksum: 10c0/de9ddb01b84d9c2c8e2bed18630d8d039e2d6f60a6538595750fa08c7a6482512257464c8da50616f266ab2cdd2428387e85f3b089e4c3f25d0c537e898a0751 + languageName: node + linkType: hard + +"path-to-regexp@npm:^6.1.0": + version: 6.3.0 + resolution: "path-to-regexp@npm:6.3.0" + checksum: 10c0/73b67f4638b41cde56254e6354e46ae3a2ebc08279583f6af3d96fe4664fc75788f74ed0d18ca44fa4a98491b69434f9eee73b97bb5314bd1b5adb700f5c18d6 + languageName: node + linkType: hard + +"path-type@npm:^4.0.0": + version: 4.0.0 + resolution: "path-type@npm:4.0.0" + checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c + languageName: node + linkType: hard + +"path-type@npm:^6.0.0": + version: 6.0.0 + resolution: "path-type@npm:6.0.0" + checksum: 10c0/55baa8b1187d6dc683d5a9cfcc866168d6adff58e5db91126795376d818eee46391e00b2a4d53e44d844c7524a7d96aa68cc68f4f3e500d3d069a39e6535481c + languageName: node + linkType: hard + +"pathe@npm:^1.1.1": + version: 1.1.2 + resolution: "pathe@npm:1.1.2" + checksum: 10c0/64ee0a4e587fb0f208d9777a6c56e4f9050039268faaaaecd50e959ef01bf847b7872785c36483fa5cdcdbdfdb31fef2ff222684d4fc21c330ab60395c681897 + languageName: node + linkType: hard + +"pathe@npm:^2.0.1": + version: 2.0.3 + resolution: "pathe@npm:2.0.3" + checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1 + languageName: node + linkType: hard + +"pathval@npm:^1.1.1": + version: 1.1.1 + resolution: "pathval@npm:1.1.1" + checksum: 10c0/f63e1bc1b33593cdf094ed6ff5c49c1c0dc5dc20a646ca9725cc7fe7cd9995002d51d5685b9b2ec6814342935748b711bafa840f84c0bb04e38ff40a335c94dc + languageName: node + linkType: hard + +"pathval@npm:^2.0.0": + version: 2.0.0 + resolution: "pathval@npm:2.0.0" + checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5 + languageName: node + linkType: hard + +"pause-stream@npm:0.0.11": + version: 0.0.11 + resolution: "pause-stream@npm:0.0.11" + dependencies: + through: "npm:~2.3" + checksum: 10c0/86f12c64cdaaa8e45ebaca4e39a478e1442db8b4beabc280b545bfaf79c0e2f33c51efb554aace5c069cc441c7b924ba484837b345eaa4ba6fc940d62f826802 + languageName: node + linkType: hard + +"pend@npm:~1.2.0": + version: 1.2.0 + resolution: "pend@npm:1.2.0" + checksum: 10c0/8a87e63f7a4afcfb0f9f77b39bb92374afc723418b9cb716ee4257689224171002e07768eeade4ecd0e86f1fa3d8f022994219fb45634f2dbd78c6803e452458 + languageName: node + linkType: hard + +"performance-now@npm:^2.1.0": + version: 2.1.0 + resolution: "performance-now@npm:2.1.0" + checksum: 10c0/22c54de06f269e29f640e0e075207af57de5052a3d15e360c09b9a8663f393f6f45902006c1e71aa8a5a1cdfb1a47fe268826f8496d6425c362f00f5bc3e85d9 + languageName: node + linkType: hard + +"pg-int8@npm:1.0.1": + version: 1.0.1 + resolution: "pg-int8@npm:1.0.1" + checksum: 10c0/be6a02d851fc2a4ae3e9de81710d861de3ba35ac927268973eb3cb618873a05b9424656df464dd43bd7dc3fc5295c3f5b3c8349494f87c7af50ec59ef14e0b98 + languageName: node + linkType: hard + +"pg-numeric@npm:1.0.2": + version: 1.0.2 + resolution: "pg-numeric@npm:1.0.2" + checksum: 10c0/43dd9884e7b52c79ddc28d2d282d7475fce8bba13452d33c04ceb2e0a65f561edf6699694e8e1c832ff9093770496363183c950dd29608e1bdd98f344b25bca9 + languageName: node + linkType: hard + +"pg-protocol@npm:*": + version: 1.7.1 + resolution: "pg-protocol@npm:1.7.1" + checksum: 10c0/3168d407ddc4c0fa2403eb9b49205399d4bc53dadbafdfcc5d25fa61b860a31c25df25704cf14c8140c80f0a41061d586e5fd5ce9bf800dfb91e9ce810bc2c37 + languageName: node + linkType: hard + +"pg-types@npm:^2.2.0": + version: 2.2.0 + resolution: "pg-types@npm:2.2.0" + dependencies: + pg-int8: "npm:1.0.1" + postgres-array: "npm:~2.0.0" + postgres-bytea: "npm:~1.0.0" + postgres-date: "npm:~1.0.4" + postgres-interval: "npm:^1.1.0" + checksum: 10c0/ab3f8069a323f601cd2d2279ca8c425447dab3f9b61d933b0601d7ffc00d6200df25e26a4290b2b0783b59278198f7dd2ed03e94c4875797919605116a577c65 + languageName: node + linkType: hard + +"pg-types@npm:^4.0.1": + version: 4.0.2 + resolution: "pg-types@npm:4.0.2" + dependencies: + pg-int8: "npm:1.0.1" + pg-numeric: "npm:1.0.2" + postgres-array: "npm:~3.0.1" + postgres-bytea: "npm:~3.0.0" + postgres-date: "npm:~2.1.0" + postgres-interval: "npm:^3.0.0" + postgres-range: "npm:^1.1.1" + checksum: 10c0/780fccda2f3fa2a34e85a72e8e7dadb7d88fbe71ce88f126cb3313f333ad836d02488ec4ff3d94d0c1e5846f735d6e6c6281f8059e6b8919d2180429acaec3e2 + languageName: node + linkType: hard + +"picocolors@npm:^1.0.0, picocolors@npm:^1.1.1": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 + languageName: node + linkType: hard + +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.3, picomatch@npm:^2.3.0, picomatch@npm:^2.3.1": + version: 2.3.1 + resolution: "picomatch@npm:2.3.1" + checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be + languageName: node + linkType: hard + +"picomatch@npm:^4.0.2": + version: 4.0.2 + resolution: "picomatch@npm:4.0.2" + checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc + languageName: node + linkType: hard + +"pidtree@npm:^0.6.0": + version: 0.6.0 + resolution: "pidtree@npm:0.6.0" + bin: + pidtree: bin/pidtree.js + checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 + languageName: node + linkType: hard + +"pify@npm:^2.2.0": + version: 2.3.0 + resolution: "pify@npm:2.3.0" + checksum: 10c0/551ff8ab830b1052633f59cb8adc9ae8407a436e06b4a9718bcb27dc5844b83d535c3a8512b388b6062af65a98c49bdc0dd523d8b2617b188f7c8fee457158dc + languageName: node + linkType: hard + +"pify@npm:^4.0.1": + version: 4.0.1 + resolution: "pify@npm:4.0.1" + checksum: 10c0/6f9d404b0d47a965437403c9b90eca8bb2536407f03de165940e62e72c8c8b75adda5516c6b9b23675a5877cc0bcac6bdfb0ef0e39414cd2476d5495da40e7cf + languageName: node + linkType: hard + +"pinkie-promise@npm:^2.0.0": + version: 2.0.1 + resolution: "pinkie-promise@npm:2.0.1" + dependencies: + pinkie: "npm:^2.0.0" + checksum: 10c0/11b5e5ce2b090c573f8fad7b517cbca1bb9a247587306f05ae71aef6f9b2cd2b923c304aa9663c2409cfde27b367286179f1379bc4ec18a3fbf2bb0d473b160a + languageName: node + linkType: hard + +"pinkie@npm:^2.0.0": + version: 2.0.4 + resolution: "pinkie@npm:2.0.4" + checksum: 10c0/25228b08b5597da42dc384221aa0ce56ee0fbf32965db12ba838e2a9ca0193c2f0609c45551ee077ccd2060bf109137fdb185b00c6d7e0ed7e35006d20fdcbc6 + languageName: node + linkType: hard + +"pirates@npm:^4.0.4": + version: 4.0.6 + resolution: "pirates@npm:4.0.6" + checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36 + languageName: node + linkType: hard + +"pkg-dir@npm:^4.1.0, pkg-dir@npm:^4.2.0": + version: 4.2.0 + resolution: "pkg-dir@npm:4.2.0" + dependencies: + find-up: "npm:^4.0.0" + checksum: 10c0/c56bda7769e04907a88423feb320babaed0711af8c436ce3e56763ab1021ba107c7b0cafb11cde7529f669cfc22bffcaebffb573645cbd63842ea9fb17cd7728 + languageName: node + linkType: hard + +"pkg-dir@npm:^5.0.0": + version: 5.0.0 + resolution: "pkg-dir@npm:5.0.0" + dependencies: + find-up: "npm:^5.0.0" + checksum: 10c0/793a496d685dc55bbbdbbb22d884535c3b29241e48e3e8d37e448113a71b9e42f5481a61fdc672d7322de12fbb2c584dd3a68bf89b18fffce5c48a390f911bc5 + languageName: node + linkType: hard + +"pkg-types@npm:^1.2.1, pkg-types@npm:^1.3.0": + version: 1.3.1 + resolution: "pkg-types@npm:1.3.1" + dependencies: + confbox: "npm:^0.1.8" + mlly: "npm:^1.7.4" + pathe: "npm:^2.0.1" + checksum: 10c0/19e6cb8b66dcc66c89f2344aecfa47f2431c988cfa3366bdfdcfb1dd6695f87dcce37fbd90fe9d1605e2f4440b77f391e83c23255347c35cf84e7fd774d7fcea + languageName: node + linkType: hard + +"polished@npm:^4.2.2": + version: 4.3.1 + resolution: "polished@npm:4.3.1" + dependencies: + "@babel/runtime": "npm:^7.17.8" + checksum: 10c0/45480d4c7281a134281cef092f6ecc202a868475ff66a390fee6e9261386e16f3047b4de46a2f2e1cf7fb7aa8f52d30b4ed631a1e3bcd6f303ca31161d4f07fe + languageName: node + linkType: hard + +"possible-typed-array-names@npm:^1.0.0": + version: 1.1.0 + resolution: "possible-typed-array-names@npm:1.1.0" + checksum: 10c0/c810983414142071da1d644662ce4caebce890203eb2bc7bf119f37f3fe5796226e117e6cca146b521921fa6531072674174a3325066ac66fce089a53e1e5196 + languageName: node + linkType: hard + +"postcss-load-config@npm:^3.1.4": + version: 3.1.4 + resolution: "postcss-load-config@npm:3.1.4" + dependencies: + lilconfig: "npm:^2.0.5" + yaml: "npm:^1.10.2" + peerDependencies: + postcss: ">=8.0.9" + ts-node: ">=9.0.0" + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + checksum: 10c0/7d2cc6695c2fc063e4538316d651a687fdb55e48db453ff699de916a6ee55ab68eac2b120c28a6b8ca7aa746a588888351b810a215b5cd090eabea62c5762ede + languageName: node + linkType: hard + +"postcss-modules-extract-imports@npm:^3.0.0": + version: 3.1.0 + resolution: "postcss-modules-extract-imports@npm:3.1.0" + peerDependencies: + postcss: ^8.1.0 + checksum: 10c0/402084bcab376083c4b1b5111b48ec92974ef86066f366f0b2d5b2ac2b647d561066705ade4db89875a13cb175b33dd6af40d16d32b2ea5eaf8bac63bd2bf219 + languageName: node + linkType: hard + +"postcss-modules-local-by-default@npm:^4.0.4": + version: 4.2.0 + resolution: "postcss-modules-local-by-default@npm:4.2.0" + dependencies: + icss-utils: "npm:^5.0.0" + postcss-selector-parser: "npm:^7.0.0" + postcss-value-parser: "npm:^4.1.0" + peerDependencies: + postcss: ^8.1.0 + checksum: 10c0/b0b83feb2a4b61f5383979d37f23116c99bc146eba1741ca3cf1acca0e4d0dbf293ac1810a6ab4eccbe1ee76440dd0a9eb2db5b3bba4f99fc1b3ded16baa6358 + languageName: node + linkType: hard + +"postcss-modules-scope@npm:^3.1.1": + version: 3.2.1 + resolution: "postcss-modules-scope@npm:3.2.1" + dependencies: + postcss-selector-parser: "npm:^7.0.0" + peerDependencies: + postcss: ^8.1.0 + checksum: 10c0/bd2d81f79e3da0ef6365b8e2c78cc91469d05b58046b4601592cdeef6c4050ed8fe1478ae000a1608042fc7e692cb51fecbd2d9bce3f4eace4d32e883ffca10b + languageName: node + linkType: hard + +"postcss-selector-parser@npm:^7.0.0": + version: 7.1.0 + resolution: "postcss-selector-parser@npm:7.1.0" + dependencies: + cssesc: "npm:^3.0.0" + util-deprecate: "npm:^1.0.2" + checksum: 10c0/0fef257cfd1c0fe93c18a3f8a6e739b4438b527054fd77e9a62730a89b2d0ded1b59314a7e4aaa55bc256204f40830fecd2eb50f20f8cb7ab3a10b52aa06c8aa + languageName: node + linkType: hard + +"postcss-value-parser@npm:^4.1.0": + version: 4.2.0 + resolution: "postcss-value-parser@npm:4.2.0" + checksum: 10c0/f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161 + languageName: node + linkType: hard + +"postcss@npm:8.4.31": + version: 8.4.31 + resolution: "postcss@npm:8.4.31" + dependencies: + nanoid: "npm:^3.3.6" + picocolors: "npm:^1.0.0" + source-map-js: "npm:^1.0.2" + checksum: 10c0/748b82e6e5fc34034dcf2ae88ea3d11fd09f69b6c50ecdd3b4a875cfc7cdca435c958b211e2cb52355422ab6fccb7d8f2f2923161d7a1b281029e4a913d59acf + languageName: node + linkType: hard + +"postcss@npm:^8.0.0, postcss@npm:^8.4.35, postcss@npm:^8.4.43": + version: 8.5.3 + resolution: "postcss@npm:8.5.3" + dependencies: + nanoid: "npm:^3.3.8" + picocolors: "npm:^1.1.1" + source-map-js: "npm:^1.2.1" + checksum: 10c0/b75510d7b28c3ab728c8733dd01538314a18c52af426f199a3c9177e63eb08602a3938bfb66b62dc01350b9aed62087eabbf229af97a1659eb8d3513cec823b3 + languageName: node + linkType: hard + +"postgres-array@npm:~2.0.0": + version: 2.0.0 + resolution: "postgres-array@npm:2.0.0" + checksum: 10c0/cbd56207e4141d7fbf08c86f2aebf21fa7064943d3f808ec85f442ff94b48d891e7a144cc02665fb2de5dbcb9b8e3183a2ac749959e794b4a4cfd379d7a21d08 + languageName: node + linkType: hard + +"postgres-array@npm:~3.0.1": + version: 3.0.2 + resolution: "postgres-array@npm:3.0.2" + checksum: 10c0/644aa071f67a66a59f641f8e623887d2b915bc102a32643e2aa8b54c11acd343c5ad97831ea444dd37bd4b921ba35add4aa2cb0c6b76700a8252c2324aeba5b4 + languageName: node + linkType: hard + +"postgres-bytea@npm:~1.0.0": + version: 1.0.0 + resolution: "postgres-bytea@npm:1.0.0" + checksum: 10c0/febf2364b8a8953695cac159eeb94542ead5886792a9627b97e33f6b5bb6e263bc0706ab47ec221516e79fbd6b2452d668841830fb3b49ec6c0fc29be61892ce + languageName: node + linkType: hard + +"postgres-bytea@npm:~3.0.0": + version: 3.0.0 + resolution: "postgres-bytea@npm:3.0.0" + dependencies: + obuf: "npm:~1.1.2" + checksum: 10c0/41c79cc48aa730c5ba3eda6ab989a940034f07a1f57b8f2777dce56f1b8cca16c5870582932b5b10cc605048aef9b6157e06253c871b4717cafc6d00f55376aa + languageName: node + linkType: hard + +"postgres-date@npm:~1.0.4": + version: 1.0.7 + resolution: "postgres-date@npm:1.0.7" + checksum: 10c0/0ff91fccc64003e10b767fcfeefb5eaffbc522c93aa65d5051c49b3c4ce6cb93ab091a7d22877a90ad60b8874202c6f1d0f935f38a7235ed3b258efd54b97ca9 + languageName: node + linkType: hard + +"postgres-date@npm:~2.1.0": + version: 2.1.0 + resolution: "postgres-date@npm:2.1.0" + checksum: 10c0/00a7472c10788f6b0d08d24108bf1eb80858de1bd6317740198a564918ea4a69b80c98148167b92ae688abd606483020d0de0dd3a36f3ea9a3e26bbeef3464f4 + languageName: node + linkType: hard + +"postgres-interval@npm:^1.1.0": + version: 1.2.0 + resolution: "postgres-interval@npm:1.2.0" + dependencies: + xtend: "npm:^4.0.0" + checksum: 10c0/c1734c3cb79e7f22579af0b268a463b1fa1d084e742a02a7a290c4f041e349456f3bee3b4ee0bb3f226828597f7b76deb615c1b857db9a742c45520100456272 + languageName: node + linkType: hard + +"postgres-interval@npm:^3.0.0": + version: 3.0.0 + resolution: "postgres-interval@npm:3.0.0" + checksum: 10c0/8b570b30ea37c685e26d136d34460f246f98935a1533defc4b53bb05ee23ae3dc7475b718ec7ea607a57894d8c6b4f1adf67ca9cc83a75bdacffd427d5c68de8 + languageName: node + linkType: hard + +"postgres-range@npm:^1.1.1": + version: 1.1.4 + resolution: "postgres-range@npm:1.1.4" + checksum: 10c0/254494ef81df208e0adeae6b66ce394aba37914ea14c7ece55a45fb6691b7db04bee74c825380a47c887a9f87158fd3d86f758f9cc60b76d3a38ce5aca7912e8 + languageName: node + linkType: hard + +"preact-render-to-string@npm:5.2.3": + version: 5.2.3 + resolution: "preact-render-to-string@npm:5.2.3" + dependencies: + pretty-format: "npm:^3.8.0" + peerDependencies: + preact: ">=10" + checksum: 10c0/c7695dd034a2dc50e3fd44621fd55e2d41854ab0abbcbc833a81feb3593a22a011596049de5a2486f71483323467a827adc7d6077cbbb1d154c0089fd8ab4cd7 + languageName: node + linkType: hard + +"preact@npm:10.11.3": + version: 10.11.3 + resolution: "preact@npm:10.11.3" + checksum: 10c0/44f342de226a89b53a7156fad0d4192bfc8233a5cc3eb46162f53d3c0c1c2956222d997927c7dff20f52c3592f112cefec5adac64f0477cbd8370fb39126ef7b + languageName: node + linkType: hard + +"preact@npm:10.19.5": + version: 10.19.5 + resolution: "preact@npm:10.19.5" + checksum: 10c0/b792ba78b6d29fbbde5dc49c7b16ad4d59145462f176bb4859852d6353bdcc13f4d052c8ab89a0c07991e644a2c63103487e754898516079663a0422a6514fd5 + languageName: node + linkType: hard + +"prelude-ls@npm:^1.2.1": + version: 1.2.1 + resolution: "prelude-ls@npm:1.2.1" + checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd + languageName: node + linkType: hard + +"prettier@npm:^3.2.5": + version: 3.5.2 + resolution: "prettier@npm:3.5.2" + bin: + prettier: bin/prettier.cjs + checksum: 10c0/d7b597ed33f39c32ace675896ad187f06a3e48dc8a1e80051b5c5f0dae3586d53981704b8fda5ac3b080e6c2e0e197d239131b953702674f044351621ca5e1ac + languageName: node + linkType: hard + +"pretty-bytes@npm:^5.6.0": + version: 5.6.0 + resolution: "pretty-bytes@npm:5.6.0" + checksum: 10c0/f69f494dcc1adda98dbe0e4a36d301e8be8ff99bfde7a637b2ee2820e7cb583b0fc0f3a63b0e3752c01501185a5cf38602c7be60da41bdf84ef5b70e89c370f3 + languageName: node + linkType: hard + +"pretty-format@npm:^27.0.2": + version: 27.5.1 + resolution: "pretty-format@npm:27.5.1" + dependencies: + ansi-regex: "npm:^5.0.1" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^17.0.1" + checksum: 10c0/0cbda1031aa30c659e10921fa94e0dd3f903ecbbbe7184a729ad66f2b6e7f17891e8c7d7654c458fa4ccb1a411ffb695b4f17bbcd3fe075fabe181027c4040ed + languageName: node + linkType: hard + +"pretty-format@npm:^29.0.0, pretty-format@npm:^29.7.0": + version: 29.7.0 + resolution: "pretty-format@npm:29.7.0" + dependencies: + "@jest/schemas": "npm:^29.6.3" + ansi-styles: "npm:^5.0.0" + react-is: "npm:^18.0.0" + checksum: 10c0/edc5ff89f51916f036c62ed433506b55446ff739358de77207e63e88a28ca2894caac6e73dcb68166a606e51c8087d32d400473e6a9fdd2dbe743f46c9c0276f + languageName: node + linkType: hard + +"pretty-format@npm:^3.8.0": + version: 3.8.0 + resolution: "pretty-format@npm:3.8.0" + checksum: 10c0/69f12937bfb7b2a537a7463b9f875a16322401f1e44d7702d643faa0d21991126c24c093217ef6da403b54c15942a834174fa1c016b72e2cb9edaae6bb3729b6 + languageName: node + linkType: hard + +"pretty-hrtime@npm:^1.0.3": + version: 1.0.3 + resolution: "pretty-hrtime@npm:1.0.3" + checksum: 10c0/67cb3fc283a72252b49ac488647e6a01b78b7aa1b8f2061834aa1650691229081518ef3ca940f77f41cc8a8f02ba9eeb74b843481596670209e493062f2e89e0 + languageName: node + linkType: hard + +"proc-log@npm:^5.0.0": + version: 5.0.0 + resolution: "proc-log@npm:5.0.0" + checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3 + languageName: node + linkType: hard + +"process-nextick-args@npm:~2.0.0": + version: 2.0.1 + resolution: "process-nextick-args@npm:2.0.1" + checksum: 10c0/bec089239487833d46b59d80327a1605e1c5287eaad770a291add7f45fda1bb5e28b38e0e061add0a1d0ee0984788ce74fa394d345eed1c420cacf392c554367 + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: 10c0/40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3 + languageName: node + linkType: hard + +"progress@npm:2.0.3, progress@npm:^2.0.3": + version: 2.0.3 + resolution: "progress@npm:2.0.3" + checksum: 10c0/1697e07cb1068055dbe9fe858d242368ff5d2073639e652b75a7eb1f2a1a8d4afd404d719de23c7b48481a6aa0040686310e2dac2f53d776daa2176d3f96369c + languageName: node + linkType: hard + +"promise-retry@npm:^2.0.1": + version: 2.0.1 + resolution: "promise-retry@npm:2.0.1" + dependencies: + err-code: "npm:^2.0.2" + retry: "npm:^0.12.0" + checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96 + languageName: node + linkType: hard + +"prompts@npm:^2.0.1": + version: 2.4.2 + resolution: "prompts@npm:2.4.2" + dependencies: + kleur: "npm:^3.0.3" + sisteransi: "npm:^1.0.5" + checksum: 10c0/16f1ac2977b19fe2cf53f8411cc98db7a3c8b115c479b2ca5c82b5527cd937aa405fa04f9a5960abeb9daef53191b53b4d13e35c1f5d50e8718c76917c5f1ea4 + languageName: node + linkType: hard + +"prop-types@npm:^15.7.2, prop-types@npm:^15.8.1": + version: 15.8.1 + resolution: "prop-types@npm:15.8.1" + dependencies: + loose-envify: "npm:^1.4.0" + object-assign: "npm:^4.1.1" + react-is: "npm:^16.13.1" + checksum: 10c0/59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077 + languageName: node + linkType: hard + +"property-expr@npm:^2.0.5": + version: 2.0.6 + resolution: "property-expr@npm:2.0.6" + checksum: 10c0/69b7da15038a1146d6447c69c445306f66a33c425271235bb20507f1846dbf9577a8f9dfafe8acbfcb66f924b270157f155248308f026a68758f35fc72265b3c + languageName: node + linkType: hard + +"proto-list@npm:~1.2.1": + version: 1.2.4 + resolution: "proto-list@npm:1.2.4" + checksum: 10c0/b9179f99394ec8a68b8afc817690185f3b03933f7b46ce2e22c1930dc84b60d09f5ad222beab4e59e58c6c039c7f7fcf620397235ef441a356f31f9744010e12 + languageName: node + linkType: hard + +"proxy-from-env@npm:1.0.0": + version: 1.0.0 + resolution: "proxy-from-env@npm:1.0.0" + checksum: 10c0/c64df9b21f7f820dc882cd6f7f81671840acd28b9688ee3e3e6af47a56ec7f0edcabe5bc96b32b26218b35eeff377bcc27ac27f89b6b21401003e187ff13256f + languageName: node + linkType: hard + +"proxy-from-env@npm:1.1.0, proxy-from-env@npm:^1.1.0": + version: 1.1.0 + resolution: "proxy-from-env@npm:1.1.0" + checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b + languageName: node + linkType: hard + +"prr@npm:~1.0.1": + version: 1.0.1 + resolution: "prr@npm:1.0.1" + checksum: 10c0/5b9272c602e4f4472a215e58daff88f802923b84bc39c8860376bb1c0e42aaf18c25d69ad974bd06ec6db6f544b783edecd5502cd3d184748d99080d68e4be5f + languageName: node + linkType: hard + +"ps-tree@npm:1.2.0": + version: 1.2.0 + resolution: "ps-tree@npm:1.2.0" + dependencies: + event-stream: "npm:=3.3.4" + bin: + ps-tree: ./bin/ps-tree.js + checksum: 10c0/9d1c159e0890db5aa05f84d125193c2190a6c4ecd457596fd25e7611f8f747292a846459dcc0244e27d45529d4cea6d1010c3a2a087fad02624d12fdb7d97c22 + languageName: node + linkType: hard + +"psl@npm:^1.1.33": + version: 1.15.0 + resolution: "psl@npm:1.15.0" + dependencies: + punycode: "npm:^2.3.1" + checksum: 10c0/d8d45a99e4ca62ca12ac3c373e63d80d2368d38892daa40cfddaa1eb908be98cd549ac059783ef3a56cfd96d57ae8e2fd9ae53d1378d90d42bc661ff924e102a + languageName: node + linkType: hard + +"pump@npm:^3.0.0": + version: 3.0.2 + resolution: "pump@npm:3.0.2" + dependencies: + end-of-stream: "npm:^1.1.0" + once: "npm:^1.3.1" + checksum: 10c0/5ad655cb2a7738b4bcf6406b24ad0970d680649d996b55ad20d1be8e0c02394034e4c45ff7cd105d87f1e9b96a0e3d06fd28e11fae8875da26e7f7a8e2c9726f + languageName: node + linkType: hard + +"punycode@npm:^2.1.0, punycode@npm:^2.1.1, punycode@npm:^2.3.1": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 + languageName: node + linkType: hard + +"pupa@npm:^3.1.0": + version: 3.1.0 + resolution: "pupa@npm:3.1.0" + dependencies: + escape-goat: "npm:^4.0.0" + checksum: 10c0/02afa6e4547a733484206aaa8f8eb3fbfb12d3dd17d7ca4fa1ea390a7da2cb8f381e38868bbf68009c4d372f8f6059f553171b6a712d8f2802c7cd43d513f06c + languageName: node + linkType: hard + +"puppeteer@npm:18.1.0": + version: 18.1.0 + resolution: "puppeteer@npm:18.1.0" + dependencies: + cross-fetch: "npm:3.1.5" + debug: "npm:4.3.4" + devtools-protocol: "npm:0.0.1045489" + extract-zip: "npm:2.0.1" + https-proxy-agent: "npm:5.0.1" + progress: "npm:2.0.3" + proxy-from-env: "npm:1.1.0" + rimraf: "npm:3.0.2" + tar-fs: "npm:2.1.1" + unbzip2-stream: "npm:1.4.3" + ws: "npm:8.9.0" + checksum: 10c0/01bac425cb945b996b2c879e77b9e5acbd382760f1f57da5e3737b8cb801a790caf370d0211f2bda4e1cd724dd36ca9aa1651f62a4a903103e35ff29fd01317b + languageName: node + linkType: hard + +"pure-rand@npm:^6.0.0": + version: 6.1.0 + resolution: "pure-rand@npm:6.1.0" + checksum: 10c0/1abe217897bf74dcb3a0c9aba3555fe975023147b48db540aa2faf507aee91c03bf54f6aef0eb2bf59cc259a16d06b28eca37f0dc426d94f4692aeff02fb0e65 + languageName: node + linkType: hard + +"qrcode-terminal@npm:^0.12.0": + version: 0.12.0 + resolution: "qrcode-terminal@npm:0.12.0" + bin: + qrcode-terminal: ./bin/qrcode-terminal.js + checksum: 10c0/1d8996a743d6c95e22056bd45fe958c306213adc97d7ef8cf1e03bc1aeeb6f27180a747ec3d761141921351eb1e3ca688f7b673ab54cdae9fa358dffaa49563c + languageName: node + linkType: hard + +"qs@npm:6.13.1": + version: 6.13.1 + resolution: "qs@npm:6.13.1" + dependencies: + side-channel: "npm:^1.0.6" + checksum: 10c0/5ef527c0d62ffca5501322f0832d800ddc78eeb00da3b906f1b260ca0492721f8cdc13ee4b8fd8ac314a6ec37b948798c7b603ccc167e954088df392092f160c + languageName: node + linkType: hard + +"qs@npm:^6.10.0, qs@npm:^6.14.0, qs@npm:^6.5.2": + version: 6.14.0 + resolution: "qs@npm:6.14.0" + dependencies: + side-channel: "npm:^1.1.0" + checksum: 10c0/8ea5d91bf34f440598ee389d4a7d95820e3b837d3fd9f433871f7924801becaa0cd3b3b4628d49a7784d06a8aea9bc4554d2b6d8d584e2d221dc06238a42909c + languageName: node + linkType: hard + +"querystringify@npm:^2.1.1": + version: 2.2.0 + resolution: "querystringify@npm:2.2.0" + checksum: 10c0/3258bc3dbdf322ff2663619afe5947c7926a6ef5fb78ad7d384602974c467fadfc8272af44f5eb8cddd0d011aae8fabf3a929a8eee4b86edcc0a21e6bd10f9aa + languageName: node + linkType: hard + +"queue-microtask@npm:^1.2.2": + version: 1.2.3 + resolution: "queue-microtask@npm:1.2.3" + checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102 + languageName: node + linkType: hard + +"ramda@npm:0.27.1": + version: 0.27.1 + resolution: "ramda@npm:0.27.1" + checksum: 10c0/84f717f285f2f9d850ff15850084bccb55fbf4b1985846d39b8d276fa146d9e23416c47583cf25b710d93257fd5a3240447fddc41a1fffcfed48bd5e10d5c97d + languageName: node + linkType: hard + +"ramda@npm:0.29.0": + version: 0.29.0 + resolution: "ramda@npm:0.29.0" + checksum: 10c0/b00eaaf1c62b06a99affa1d583e256bd65ad27ab9d0ef512f55d7d93b842e7cd244a4a09179f61fdd8548362e409323867a2b0477cbd0626b5644eb6ac7c53da + languageName: node + linkType: hard + +"raw-body@npm:^2.3.3": + version: 2.5.2 + resolution: "raw-body@npm:2.5.2" + dependencies: + bytes: "npm:3.1.2" + http-errors: "npm:2.0.0" + iconv-lite: "npm:0.4.24" + unpipe: "npm:1.0.0" + checksum: 10c0/b201c4b66049369a60e766318caff5cb3cc5a900efd89bdac431463822d976ad0670912c931fdbdcf5543207daf6f6833bca57aa116e1661d2ea91e12ca692c4 + languageName: node + linkType: hard + +"rc@npm:1.2.8": + version: 1.2.8 + resolution: "rc@npm:1.2.8" + dependencies: + deep-extend: "npm:^0.6.0" + ini: "npm:~1.3.0" + minimist: "npm:^1.2.0" + strip-json-comments: "npm:~2.0.1" + bin: + rc: ./cli.js + checksum: 10c0/24a07653150f0d9ac7168e52943cc3cb4b7a22c0e43c7dff3219977c2fdca5a2760a304a029c20811a0e79d351f57d46c9bde216193a0f73978496afc2b85b15 + languageName: node + linkType: hard + +"react-aria-components@npm:^1.0.1, react-aria-components@npm:^1.6.0": + version: 1.6.0 + resolution: "react-aria-components@npm:1.6.0" + dependencies: + "@internationalized/date": "npm:^3.7.0" + "@internationalized/string": "npm:^3.2.5" + "@react-aria/autocomplete": "npm:3.0.0-alpha.37" + "@react-aria/collections": "npm:3.0.0-alpha.7" + "@react-aria/color": "npm:^3.0.3" + "@react-aria/disclosure": "npm:^3.0.1" + "@react-aria/dnd": "npm:^3.8.1" + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/live-announcer": "npm:^3.4.1" + "@react-aria/menu": "npm:^3.17.0" + "@react-aria/toolbar": "npm:3.0.0-beta.12" + "@react-aria/tree": "npm:3.0.0-beta.3" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/virtualizer": "npm:^4.1.1" + "@react-stately/autocomplete": "npm:3.0.0-alpha.0" + "@react-stately/color": "npm:^3.8.2" + "@react-stately/disclosure": "npm:^3.0.1" + "@react-stately/layout": "npm:^4.1.1" + "@react-stately/menu": "npm:^3.9.1" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/table": "npm:^3.13.1" + "@react-stately/utils": "npm:^3.10.5" + "@react-stately/virtualizer": "npm:^4.2.1" + "@react-types/color": "npm:^3.0.2" + "@react-types/form": "npm:^3.7.9" + "@react-types/grid": "npm:^3.2.11" + "@react-types/shared": "npm:^3.27.0" + "@react-types/table": "npm:^3.10.4" + "@swc/helpers": "npm:^0.5.0" + client-only: "npm:^0.0.1" + react-aria: "npm:^3.37.0" + react-stately: "npm:^3.35.0" + use-sync-external-store: "npm:^1.2.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/fa6eb1a1acadeadd6de382dea9721ad420120b1736f22bf73b9eb4b310e61723e15b473508d4cf0986ea7ffb2dd0585dbf10f5381e992fad3e0b78d715318216 + languageName: node + linkType: hard + +"react-aria@npm:^3.37.0": + version: 3.37.0 + resolution: "react-aria@npm:3.37.0" + dependencies: + "@internationalized/string": "npm:^3.2.5" + "@react-aria/breadcrumbs": "npm:^3.5.20" + "@react-aria/button": "npm:^3.11.1" + "@react-aria/calendar": "npm:^3.7.0" + "@react-aria/checkbox": "npm:^3.15.1" + "@react-aria/color": "npm:^3.0.3" + "@react-aria/combobox": "npm:^3.11.1" + "@react-aria/datepicker": "npm:^3.13.0" + "@react-aria/dialog": "npm:^3.5.21" + "@react-aria/disclosure": "npm:^3.0.1" + "@react-aria/dnd": "npm:^3.8.1" + "@react-aria/focus": "npm:^3.19.1" + "@react-aria/gridlist": "npm:^3.10.1" + "@react-aria/i18n": "npm:^3.12.5" + "@react-aria/interactions": "npm:^3.23.0" + "@react-aria/label": "npm:^3.7.14" + "@react-aria/link": "npm:^3.7.8" + "@react-aria/listbox": "npm:^3.14.0" + "@react-aria/menu": "npm:^3.17.0" + "@react-aria/meter": "npm:^3.4.19" + "@react-aria/numberfield": "npm:^3.11.10" + "@react-aria/overlays": "npm:^3.25.0" + "@react-aria/progress": "npm:^3.4.19" + "@react-aria/radio": "npm:^3.10.11" + "@react-aria/searchfield": "npm:^3.8.0" + "@react-aria/select": "npm:^3.15.1" + "@react-aria/selection": "npm:^3.22.0" + "@react-aria/separator": "npm:^3.4.5" + "@react-aria/slider": "npm:^3.7.15" + "@react-aria/ssr": "npm:^3.9.7" + "@react-aria/switch": "npm:^3.6.11" + "@react-aria/table": "npm:^3.16.1" + "@react-aria/tabs": "npm:^3.9.9" + "@react-aria/tag": "npm:^3.4.9" + "@react-aria/textfield": "npm:^3.16.0" + "@react-aria/tooltip": "npm:^3.7.11" + "@react-aria/utils": "npm:^3.27.0" + "@react-aria/visually-hidden": "npm:^3.8.19" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/633810ff5658ff9fce0f06188caa70bbdfa4842d203bf6977a6c52688f92cf04efb80439f939ca3919056449643a6e7db20bd8d7164d94be26589008cc4cb3f6 + languageName: node + linkType: hard + +"react-confetti@npm:^6.1.0": + version: 6.2.3 + resolution: "react-confetti@npm:6.2.3" + dependencies: + tween-functions: "npm:^1.2.0" + peerDependencies: + react: ^16.3.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 + checksum: 10c0/44d286c6c3d553a9b6fd92e9bdb9b0e0d0e0663b1097a95c5d6931d93185912d4bc660f78cbe5be94f97855f6d78f3a533ad025ce578cd657f7256a264b28a8b + languageName: node + linkType: hard + +"react-day-picker@npm:^9.0.8": + version: 9.5.1 + resolution: "react-day-picker@npm:9.5.1" + dependencies: + "@date-fns/tz": "npm:^1.2.0" + date-fns: "npm:^4.1.0" + date-fns-jalali: "npm:^4.1.0-0" + peerDependencies: + react: ">=16.8.0" + checksum: 10c0/050309240cc4b00d2012a43ff7f0d22276072d90ff0d619a2f6accb34318b919e6c723080a43e6d34583e48c194cbffecd5881b7350fac09e0b47576ddc872cf + languageName: node + linkType: hard + +"react-docgen-typescript@npm:^2.2.2": + version: 2.2.2 + resolution: "react-docgen-typescript@npm:2.2.2" + peerDependencies: + typescript: ">= 4.3.x" + checksum: 10c0/d31a061a21b5d4b67d4af7bc742541fd9e16254bd32861cd29c52565bc2175f40421a3550d52b6a6b0d0478e7cc408558eb0060a0bdd2957b02cfceeb0ee1e88 + languageName: node + linkType: hard + +"react-docgen@npm:^7.0.0": + version: 7.1.1 + resolution: "react-docgen@npm:7.1.1" + dependencies: + "@babel/core": "npm:^7.18.9" + "@babel/traverse": "npm:^7.18.9" + "@babel/types": "npm:^7.18.9" + "@types/babel__core": "npm:^7.18.0" + "@types/babel__traverse": "npm:^7.18.0" + "@types/doctrine": "npm:^0.0.9" + "@types/resolve": "npm:^1.20.2" + doctrine: "npm:^3.0.0" + resolve: "npm:^1.22.1" + strip-indent: "npm:^4.0.0" + checksum: 10c0/961e69487f6acbd9110afbda31f5a0c7fa7ab8b1ebe09fc0138c17efd297fa0b69518df873e937cac108732cd8125433bf939115d23ff99c1c171844140705a7 + languageName: node + linkType: hard + +"react-dom@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": + version: 19.0.0 + resolution: "react-dom@npm:19.0.0" + dependencies: + scheduler: "npm:^0.25.0" + peerDependencies: + react: ^19.0.0 + checksum: 10c0/a36ce7ab507b237ae2759c984cdaad4af4096d8199fb65b3815c16825e5cfeb7293da790a3fc2184b52bfba7ba3ff31c058c01947aff6fd1a3701632aabaa6a9 + languageName: node + linkType: hard + +"react-dom@npm:^18, react-dom@npm:^18.2.0": + version: 18.3.1 + resolution: "react-dom@npm:18.3.1" + dependencies: + loose-envify: "npm:^1.1.0" + scheduler: "npm:^0.23.2" + peerDependencies: + react: ^18.3.1 + checksum: 10c0/a752496c1941f958f2e8ac56239172296fcddce1365ce45222d04a1947e0cc5547df3e8447f855a81d6d39f008d7c32eab43db3712077f09e3f67c4874973e85 + languageName: node + linkType: hard + +"react-feather@npm:^2.0.10": + version: 2.0.10 + resolution: "react-feather@npm:2.0.10" + dependencies: + prop-types: "npm:^15.7.2" + peerDependencies: + react: ">=16.8.6" + checksum: 10c0/bcc312ab39a710d8fa6fb611fde2affb38cf183fa5215d46c78577d88950ecb9181b59e4b57d7683f543d25725a39deb0c2ad9a9f29cab1a44bf4cbca46e6b8e + languageName: node + linkType: hard + +"react-hook-form@npm:^7.51.2": + version: 7.54.2 + resolution: "react-hook-form@npm:7.54.2" + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 + checksum: 10c0/6eebead2900e3d369a989e7a20429f390dc75b3897142aa3107f1f6dabb9ae64fed201ea98cdcd8676e40466c97748aeb0c0d83264f5bd3a84dbc0b8e4863415 + languageName: node + linkType: hard + +"react-international-phone@npm:^4.2.6": + version: 4.5.0 + resolution: "react-international-phone@npm:4.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + checksum: 10c0/d17f47c4e2befc4a6dbacf9dd40f630fc137a7f45c33ad7e9243693ab4b64ccaf27a847ab3fa713166e7b9197d8e180c60a940fde6ba6723fd1a41182960a350 + languageName: node + linkType: hard + +"react-intl@npm:^6.6.8": + version: 6.8.9 + resolution: "react-intl@npm:6.8.9" + dependencies: + "@formatjs/ecma402-abstract": "npm:2.2.4" + "@formatjs/icu-messageformat-parser": "npm:2.9.4" + "@formatjs/intl": "npm:2.10.15" + "@formatjs/intl-displaynames": "npm:6.8.5" + "@formatjs/intl-listformat": "npm:7.7.5" + "@types/hoist-non-react-statics": "npm:3" + "@types/react": "npm:16 || 17 || 18" + hoist-non-react-statics: "npm:3" + intl-messageformat: "npm:10.7.7" + tslib: "npm:2" + peerDependencies: + react: ^16.6.0 || 17 || 18 + typescript: ^4.7 || 5 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/d42a6252beac5448b4a248d84923b0f75dfbbee6208cd5c49ac2f525714ab94efe2a4933d464c64cb161ddccaa37b83dffb2dd0529428219b8a60ce548da3e57 + languageName: node + linkType: hard + +"react-is@npm:18.2.0": + version: 18.2.0 + resolution: "react-is@npm:18.2.0" + checksum: 10c0/6eb5e4b28028c23e2bfcf73371e72cd4162e4ac7ab445ddae2afe24e347a37d6dc22fae6e1748632cd43c6d4f9b8f86dcf26bf9275e1874f436d129952528ae0 + languageName: node + linkType: hard + +"react-is@npm:^16.13.1, react-is@npm:^16.7.0": + version: 16.13.1 + resolution: "react-is@npm:16.13.1" + checksum: 10c0/33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1 + languageName: node + linkType: hard + +"react-is@npm:^17.0.1": + version: 17.0.2 + resolution: "react-is@npm:17.0.2" + checksum: 10c0/2bdb6b93fbb1820b024b496042cce405c57e2f85e777c9aabd55f9b26d145408f9f74f5934676ffdc46f3dcff656d78413a6e43968e7b3f92eea35b3052e9053 + languageName: node + linkType: hard + +"react-is@npm:^18.0.0": + version: 18.3.1 + resolution: "react-is@npm:18.3.1" + checksum: 10c0/f2f1e60010c683479e74c63f96b09fb41603527cd131a9959e2aee1e5a8b0caf270b365e5ca77d4a6b18aae659b60a86150bb3979073528877029b35aecd2072 + languageName: node + linkType: hard + +"react-property@npm:2.0.2": + version: 2.0.2 + resolution: "react-property@npm:2.0.2" + checksum: 10c0/27a3dfa68d29d45fc3582552715203291d26c6f1b228fdb6775e7ca19b10753141dbe98a0aa3a4da745b39fcd7427dc2d623055e63742062231ee18692a6f0fa + languageName: node + linkType: hard + +"react-refresh@npm:^0.14.2": + version: 0.14.2 + resolution: "react-refresh@npm:0.14.2" + checksum: 10c0/875b72ef56b147a131e33f2abd6ec059d1989854b3ff438898e4f9310bfcc73acff709445b7ba843318a953cb9424bcc2c05af2b3d80011cee28f25aef3e2ebb + languageName: node + linkType: hard + +"react-remove-scroll-bar@npm:^2.3.7": + version: 2.3.8 + resolution: "react-remove-scroll-bar@npm:2.3.8" + dependencies: + react-style-singleton: "npm:^2.2.2" + tslib: "npm:^2.0.0" + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/9a0675c66cbb52c325bdbfaed80987a829c4504cefd8ff2dd3b6b3afc9a1500b8ec57b212e92c1fb654396d07bbe18830a8146fe77677d2a29ce40b5e1f78654 + languageName: node + linkType: hard + +"react-remove-scroll@npm:^2.6.3": + version: 2.6.3 + resolution: "react-remove-scroll@npm:2.6.3" + dependencies: + react-remove-scroll-bar: "npm:^2.3.7" + react-style-singleton: "npm:^2.2.3" + tslib: "npm:^2.1.0" + use-callback-ref: "npm:^1.3.3" + use-sidecar: "npm:^1.1.3" + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/068e9704ff26816fffc4c8903e2c6c8df7291ee08615d7c1ab0cf8751f7080e2c5a5d78ef5d908b11b9cfc189f176d312e44cb02ea291ca0466d8283b479b438 + languageName: node + linkType: hard + +"react-stately@npm:^3.35.0": + version: 3.35.0 + resolution: "react-stately@npm:3.35.0" + dependencies: + "@react-stately/calendar": "npm:^3.7.0" + "@react-stately/checkbox": "npm:^3.6.11" + "@react-stately/collections": "npm:^3.12.1" + "@react-stately/color": "npm:^3.8.2" + "@react-stately/combobox": "npm:^3.10.2" + "@react-stately/data": "npm:^3.12.1" + "@react-stately/datepicker": "npm:^3.12.0" + "@react-stately/disclosure": "npm:^3.0.1" + "@react-stately/dnd": "npm:^3.5.1" + "@react-stately/form": "npm:^3.1.1" + "@react-stately/list": "npm:^3.11.2" + "@react-stately/menu": "npm:^3.9.1" + "@react-stately/numberfield": "npm:^3.9.9" + "@react-stately/overlays": "npm:^3.6.13" + "@react-stately/radio": "npm:^3.10.10" + "@react-stately/searchfield": "npm:^3.5.9" + "@react-stately/select": "npm:^3.6.10" + "@react-stately/selection": "npm:^3.19.0" + "@react-stately/slider": "npm:^3.6.1" + "@react-stately/table": "npm:^3.13.1" + "@react-stately/tabs": "npm:^3.7.1" + "@react-stately/toggle": "npm:^3.8.1" + "@react-stately/tooltip": "npm:^3.5.1" + "@react-stately/tree": "npm:^3.8.7" + "@react-types/shared": "npm:^3.27.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + checksum: 10c0/0ee48730c431cd8cdd31b6fedb754356acf0d23db6ec89d5d87e4f1cfe337a54b2a1a9dd15556954ae5b43d30949734e910f4b5e55c6fdc04813bf510baea579 + languageName: node + linkType: hard + +"react-style-singleton@npm:^2.2.2, react-style-singleton@npm:^2.2.3": + version: 2.2.3 + resolution: "react-style-singleton@npm:2.2.3" + dependencies: + get-nonce: "npm:^1.0.0" + tslib: "npm:^2.0.0" + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/841938ff16d16a6b76895f4cb2e1fea957e5fe3b30febbf03a54892dae1c9153f2383e231dea0b3ba41192ad2f2849448fa859caccd288943bce32639e971bee + languageName: node + linkType: hard + +"react-to-print@npm:^3.0.2": + version: 3.0.5 + resolution: "react-to-print@npm:3.0.5" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ~19 + checksum: 10c0/6c8036ed53d35a2005b10a3fcf0054bc49c3e1cfe5a31ceb41ddcacfcf15a3d3e5f6478651cd0dabc03527bcd073bf59f04d3638d667169cac557a22ac803914 + languageName: node + linkType: hard + +"react@npm:^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0": + version: 19.0.0 + resolution: "react@npm:19.0.0" + checksum: 10c0/9cad8f103e8e3a16d15cb18a0d8115d8bd9f9e1ce3420310aea381eb42aa0a4f812cf047bb5441349257a05fba8a291515691e3cb51267279b2d2c3253f38471 + languageName: node + linkType: hard + +"react@npm:^18, react@npm:^18.2.0": + version: 18.3.1 + resolution: "react@npm:18.3.1" + dependencies: + loose-envify: "npm:^1.1.0" + checksum: 10c0/283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3 + languageName: node + linkType: hard + +"read-pkg-up@npm:^7.0.1": + version: 7.0.1 + resolution: "read-pkg-up@npm:7.0.1" + dependencies: + find-up: "npm:^4.1.0" + read-pkg: "npm:^5.2.0" + type-fest: "npm:^0.8.1" + checksum: 10c0/82b3ac9fd7c6ca1bdc1d7253eb1091a98ff3d195ee0a45386582ce3e69f90266163c34121e6a0a02f1630073a6c0585f7880b3865efcae9c452fa667f02ca385 + languageName: node + linkType: hard + +"read-pkg@npm:^5.2.0": + version: 5.2.0 + resolution: "read-pkg@npm:5.2.0" + dependencies: + "@types/normalize-package-data": "npm:^2.4.0" + normalize-package-data: "npm:^2.5.0" + parse-json: "npm:^5.0.0" + type-fest: "npm:^0.6.0" + checksum: 10c0/b51a17d4b51418e777029e3a7694c9bd6c578a5ab99db544764a0b0f2c7c0f58f8a6bc101f86a6fceb8ba6d237d67c89acf6170f6b98695d0420ddc86cf109fb + languageName: node + linkType: hard + +"readable-stream@npm:2": + version: 2.3.8 + resolution: "readable-stream@npm:2.3.8" + dependencies: + core-util-is: "npm:~1.0.0" + inherits: "npm:~2.0.3" + isarray: "npm:~1.0.0" + process-nextick-args: "npm:~2.0.0" + safe-buffer: "npm:~5.1.1" + string_decoder: "npm:~1.1.1" + util-deprecate: "npm:~1.0.1" + checksum: 10c0/7efdb01f3853bc35ac62ea25493567bf588773213f5f4a79f9c365e1ad13bab845ac0dae7bc946270dc40c3929483228415e92a3fc600cc7e4548992f41ee3fa + languageName: node + linkType: hard + +"readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0": + version: 3.6.2 + resolution: "readable-stream@npm:3.6.2" + dependencies: + inherits: "npm:^2.0.3" + string_decoder: "npm:^1.1.1" + util-deprecate: "npm:^1.0.1" + checksum: 10c0/e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7 + languageName: node + linkType: hard + +"readdirp@npm:^4.0.1": + version: 4.1.2 + resolution: "readdirp@npm:4.1.2" + checksum: 10c0/60a14f7619dec48c9c850255cd523e2717001b0e179dc7037cfa0895da7b9e9ab07532d324bfb118d73a710887d1e35f79c495fa91582784493e085d18c72c62 + languageName: node + linkType: hard + +"readdirp@npm:~3.6.0": + version: 3.6.0 + resolution: "readdirp@npm:3.6.0" + dependencies: + picomatch: "npm:^2.2.1" + checksum: 10c0/6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b + languageName: node + linkType: hard + +"recast@npm:^0.23.1, recast@npm:^0.23.5": + version: 0.23.9 + resolution: "recast@npm:0.23.9" + dependencies: + ast-types: "npm:^0.16.1" + esprima: "npm:~4.0.0" + source-map: "npm:~0.6.1" + tiny-invariant: "npm:^1.3.3" + tslib: "npm:^2.0.1" + checksum: 10c0/65d6e780351f0180ea4fe5c9593ac18805bf2b79977f5bedbbbf26f6d9b619ed0f6992c1bf9e06dd40fca1aea727ad6d62463cfb5d3a33342ee5a6e486305fe5 + languageName: node + linkType: hard + +"redent@npm:^3.0.0": + version: 3.0.0 + resolution: "redent@npm:3.0.0" + dependencies: + indent-string: "npm:^4.0.0" + strip-indent: "npm:^3.0.0" + checksum: 10c0/d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae + languageName: node + linkType: hard + +"reduce-flatten@npm:^2.0.0": + version: 2.0.0 + resolution: "reduce-flatten@npm:2.0.0" + checksum: 10c0/9275064535bc070a787824c835a4f18394942f8a78f08e69fb500920124ce1c46a287c8d9e565a7ffad8104875a6feda14efa8e951e8e4585370b8ff007b0abd + languageName: node + linkType: hard + +"reduce-flatten@npm:^3.0.0": + version: 3.0.1 + resolution: "reduce-flatten@npm:3.0.1" + checksum: 10c0/9b8019d7decca7320c728f542031e81d7d4c34b2d409bacaeee8b6fed641c91c9cbac8d8ef2d7f1e3ed408b6f8fd54fe42e86a8ec97cf0c3b3a4c0f229b79250 + languageName: node + linkType: hard + +"reflect.getprototypeof@npm:^1.0.6, reflect.getprototypeof@npm:^1.0.9": + version: 1.0.10 + resolution: "reflect.getprototypeof@npm:1.0.10" + dependencies: + call-bind: "npm:^1.0.8" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.9" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.7" + get-proto: "npm:^1.0.1" + which-builtin-type: "npm:^1.2.1" + checksum: 10c0/7facec28c8008876f8ab98e80b7b9cb4b1e9224353fd4756dda5f2a4ab0d30fa0a5074777c6df24e1e0af463a2697513b0a11e548d99cf52f21f7bc6ba48d3ac + languageName: node + linkType: hard + +"regenerate-unicode-properties@npm:^10.2.0": + version: 10.2.0 + resolution: "regenerate-unicode-properties@npm:10.2.0" + dependencies: + regenerate: "npm:^1.4.2" + checksum: 10c0/5510785eeaf56bbfdf4e663d6753f125c08d2a372d4107bc1b756b7bf142e2ed80c2733a8b54e68fb309ba37690e66a0362699b0e21d5c1f0255dea1b00e6460 + languageName: node + linkType: hard + +"regenerate@npm:^1.4.2": + version: 1.4.2 + resolution: "regenerate@npm:1.4.2" + checksum: 10c0/f73c9eba5d398c818edc71d1c6979eaa05af7a808682749dd079f8df2a6d91a9b913db216c2c9b03e0a8ba2bba8701244a93f45211afbff691c32c7b275db1b8 + languageName: node + linkType: hard + +"regenerator-runtime@npm:^0.14.0": + version: 0.14.1 + resolution: "regenerator-runtime@npm:0.14.1" + checksum: 10c0/1b16eb2c4bceb1665c89de70dcb64126a22bc8eb958feef3cd68fe11ac6d2a4899b5cd1b80b0774c7c03591dc57d16631a7f69d2daa2ec98100e2f29f7ec4cc4 + languageName: node + linkType: hard + +"regenerator-transform@npm:^0.15.2": + version: 0.15.2 + resolution: "regenerator-transform@npm:0.15.2" + dependencies: + "@babel/runtime": "npm:^7.8.4" + checksum: 10c0/7cfe6931ec793269701994a93bab89c0cc95379191fad866270a7fea2adfec67ea62bb5b374db77058b60ba4509319d9b608664d0d288bd9989ca8dbd08fae90 + languageName: node + linkType: hard + +"regexp.prototype.flags@npm:^1.5.3": + version: 1.5.4 + resolution: "regexp.prototype.flags@npm:1.5.4" + dependencies: + call-bind: "npm:^1.0.8" + define-properties: "npm:^1.2.1" + es-errors: "npm:^1.3.0" + get-proto: "npm:^1.0.1" + gopd: "npm:^1.2.0" + set-function-name: "npm:^2.0.2" + checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77 + languageName: node + linkType: hard + +"regexparam@npm:^3.0.0": + version: 3.0.0 + resolution: "regexparam@npm:3.0.0" + checksum: 10c0/a6430d7b97d5a7d5518f37a850b6b73aab479029d02f46af4fa0e8e4a1d7aad05b7a0d2d10c86ded21a14d5f0fa4c68525f873a5fca2efeefcccd93c36627459 + languageName: node + linkType: hard + +"regexpu-core@npm:^6.2.0": + version: 6.2.0 + resolution: "regexpu-core@npm:6.2.0" + dependencies: + regenerate: "npm:^1.4.2" + regenerate-unicode-properties: "npm:^10.2.0" + regjsgen: "npm:^0.8.0" + regjsparser: "npm:^0.12.0" + unicode-match-property-ecmascript: "npm:^2.0.0" + unicode-match-property-value-ecmascript: "npm:^2.1.0" + checksum: 10c0/bbcb83a854bf96ce4005ee4e4618b71c889cda72674ce6092432f0039b47890c2d0dfeb9057d08d440999d9ea03879ebbb7f26ca005ccf94390e55c348859b98 + languageName: node + linkType: hard + +"registry-auth-token@npm:^5.0.2": + version: 5.1.0 + resolution: "registry-auth-token@npm:5.1.0" + dependencies: + "@pnpm/npm-conf": "npm:^2.1.0" + checksum: 10c0/316229bd8a4acc29a362a7a3862ff809e608256f0fd9e0b133412b43d6a9ea18743756a0ec5ee1467a5384e1023602b85461b3d88d1336b11879e42f7cf02c12 + languageName: node + linkType: hard + +"registry-url@npm:^6.0.1": + version: 6.0.1 + resolution: "registry-url@npm:6.0.1" + dependencies: + rc: "npm:1.2.8" + checksum: 10c0/66e2221c8113fc35ee9d23fe58cb516fc8d556a189fb8d6f1011a02efccc846c4c9b5075b4027b99a5d5c9ad1345ac37f297bea3c0ca30d607ec8084bf561b90 + languageName: node + linkType: hard + +"regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "regjsgen@npm:0.8.0" + checksum: 10c0/44f526c4fdbf0b29286101a282189e4dbb303f4013cf3fea058668d96d113b9180d3d03d1e13f6d4cbde38b7728bf951aecd9dc199938c080093a9a6f0d7a6bd + languageName: node + linkType: hard + +"regjsparser@npm:^0.12.0": + version: 0.12.0 + resolution: "regjsparser@npm:0.12.0" + dependencies: + jsesc: "npm:~3.0.2" + bin: + regjsparser: bin/parser + checksum: 10c0/99d3e4e10c8c7732eb7aa843b8da2fd8b647fe144d3711b480e4647dc3bff4b1e96691ccf17f3ace24aa866a50b064236177cb25e6e4fbbb18285d99edaed83b + languageName: node + linkType: hard + +"request-progress@npm:^3.0.0": + version: 3.0.0 + resolution: "request-progress@npm:3.0.0" + dependencies: + throttleit: "npm:^1.0.0" + checksum: 10c0/d5dcb7155a738572c8781436f6b418e866066a30eea0f99a9ab26b6f0ed6c13637462bba736357de3899b8d30431ee9202ac956a5f8ccdd0d9d1ed0962000d14 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 + languageName: node + linkType: hard + +"require-in-the-middle@npm:^7.1.1": + version: 7.5.2 + resolution: "require-in-the-middle@npm:7.5.2" + dependencies: + debug: "npm:^4.3.5" + module-details-from-path: "npm:^1.0.3" + resolve: "npm:^1.22.8" + checksum: 10c0/43a2dac5520e39d13c413650895715e102d6802e6cc6ff322017bd948f12a9657fe28435f7cbbcba437b167f02e192ac7af29fa35cabd5d0c375d071c0605e01 + languageName: node + linkType: hard + +"requireindex@npm:^1.1.0": + version: 1.2.0 + resolution: "requireindex@npm:1.2.0" + checksum: 10c0/7fb42aed73bf8de9acc4d6716cf07acc7fbe180e58729433bafcf702e76e7bb10e54f8266c06bfec62d752e0ac14d50e8758833de539e6f4e2cd642077866153 + languageName: node + linkType: hard + +"requires-port@npm:^1.0.0": + version: 1.0.0 + resolution: "requires-port@npm:1.0.0" + checksum: 10c0/b2bfdd09db16c082c4326e573a82c0771daaf7b53b9ce8ad60ea46aa6e30aaf475fe9b164800b89f93b748d2c234d8abff945d2551ba47bf5698e04cd7713267 + languageName: node + linkType: hard + +"reserved-words@npm:^0.1.2": + version: 0.1.2 + resolution: "reserved-words@npm:0.1.2" + checksum: 10c0/88360388d88f4b36c1f5d47f8d596936dbf950bddd642c04ce940f1dab1fa58ef6fec23f5fab81a1bfe5cd0f223b2b635311496fcf0ef3db93ad4dfb6d7be186 + languageName: node + linkType: hard + +"resolve-cwd@npm:^3.0.0": + version: 3.0.0 + resolution: "resolve-cwd@npm:3.0.0" + dependencies: + resolve-from: "npm:^5.0.0" + checksum: 10c0/e608a3ebd15356264653c32d7ecbc8fd702f94c6703ea4ac2fb81d9c359180cba0ae2e6b71faa446631ed6145454d5a56b227efc33a2d40638ac13f8beb20ee4 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 + languageName: node + linkType: hard + +"resolve-from@npm:^5.0.0": + version: 5.0.0 + resolution: "resolve-from@npm:5.0.0" + checksum: 10c0/b21cb7f1fb746de8107b9febab60095187781137fd803e6a59a76d421444b1531b641bba5857f5dc011974d8a5c635d61cec49e6bd3b7fc20e01f0fafc4efbf2 + languageName: node + linkType: hard + +"resolve-path@npm:^1.4.0": + version: 1.4.0 + resolution: "resolve-path@npm:1.4.0" + dependencies: + http-errors: "npm:~1.6.2" + path-is-absolute: "npm:1.0.1" + checksum: 10c0/7405c01e02c7c71c62f89e42eac1b876e5a1bb9c3b85e07ce674646841dd177571bca5639ff6780528bec9ff58be7b44845e69eced1d8c5d519f4c1d72c30907 + languageName: node + linkType: hard + +"resolve-pkg-maps@npm:^1.0.0": + version: 1.0.0 + resolution: "resolve-pkg-maps@npm:1.0.0" + checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab + languageName: node + linkType: hard + +"resolve.exports@npm:^2.0.0": + version: 2.0.3 + resolution: "resolve.exports@npm:2.0.3" + checksum: 10c0/1ade1493f4642a6267d0a5e68faeac20b3d220f18c28b140343feb83694d8fed7a286852aef43689d16042c61e2ddb270be6578ad4a13990769e12065191200d + languageName: node + linkType: hard + +"resolve@npm:1.22.8": + version: 1.22.8 + resolution: "resolve@npm:1.22.8" + dependencies: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/07e179f4375e1fd072cfb72ad66d78547f86e6196c4014b31cb0b8bb1db5f7ca871f922d08da0fbc05b94e9fd42206f819648fa3b5b873ebbc8e1dc68fec433a + languageName: node + linkType: hard + +"resolve@npm:^1.10.0, resolve@npm:^1.14.2, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.4, resolve@npm:^1.22.8, resolve@npm:~1.22.1": + version: 1.22.10 + resolution: "resolve@npm:1.22.10" + dependencies: + is-core-module: "npm:^2.16.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203 + languageName: node + linkType: hard + +"resolve@npm:^2.0.0-next.5": + version: 2.0.0-next.5 + resolution: "resolve@npm:2.0.0-next.5" + dependencies: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/a6c33555e3482ea2ec4c6e3d3bf0d78128abf69dca99ae468e64f1e30acaa318fd267fb66c8836b04d558d3e2d6ed875fe388067e7d8e0de647d3c21af21c43a + languageName: node + linkType: hard + +"resolve@npm:~1.19.0": + version: 1.19.0 + resolution: "resolve@npm:1.19.0" + dependencies: + is-core-module: "npm:^2.1.0" + path-parse: "npm:^1.0.6" + checksum: 10c0/1c8afdfb88c9adab0a19b6f16756d47f5917f64047bf5a38c17aa543aae5ccca2a0631671b19ce8460a7a3e65ead98ee70e046d3056ec173d3377a27487848a8 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A1.22.8#optional!builtin": + version: 1.22.8 + resolution: "resolve@patch:resolve@npm%3A1.22.8#optional!builtin::version=1.22.8&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/0446f024439cd2e50c6c8fa8ba77eaa8370b4180f401a96abf3d1ebc770ac51c1955e12764cde449fde3fff480a61f84388e3505ecdbab778f4bef5f8212c729 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.14.2#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin, resolve@patch:resolve@npm%3A~1.22.1#optional!builtin": + version: 1.22.10 + resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.16.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A^2.0.0-next.5#optional!builtin": + version: 2.0.0-next.5 + resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#optional!builtin::version=2.0.0-next.5&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.13.0" + path-parse: "npm:^1.0.7" + supports-preserve-symlinks-flag: "npm:^1.0.0" + bin: + resolve: bin/resolve + checksum: 10c0/78ad6edb8309a2bfb720c2c1898f7907a37f858866ce11a5974643af1203a6a6e05b2fa9c53d8064a673a447b83d42569260c306d43628bff5bb101969708355 + languageName: node + linkType: hard + +"resolve@patch:resolve@npm%3A~1.19.0#optional!builtin": + version: 1.19.0 + resolution: "resolve@patch:resolve@npm%3A1.19.0#optional!builtin::version=1.19.0&hash=c3c19d" + dependencies: + is-core-module: "npm:^2.1.0" + path-parse: "npm:^1.0.6" + checksum: 10c0/254980f60dd9fdb28b34a511e70df6e3027d9627efce86a40757eea9b87252d172829c84517554560c4541ebfe207868270c19a0f086997b41209367aa8ef74f + languageName: node + linkType: hard + +"responselike@npm:^2.0.0": + version: 2.0.1 + resolution: "responselike@npm:2.0.1" + dependencies: + lowercase-keys: "npm:^2.0.0" + checksum: 10c0/360b6deb5f101a9f8a4174f7837c523c3ec78b7ca8a7c1d45a1062b303659308a23757e318b1e91ed8684ad1205721142dd664d94771cd63499353fd4ee732b5 + languageName: node + linkType: hard + +"restore-cursor@npm:^3.1.0": + version: 3.1.0 + resolution: "restore-cursor@npm:3.1.0" + dependencies: + onetime: "npm:^5.1.0" + signal-exit: "npm:^3.0.2" + checksum: 10c0/8051a371d6aa67ff21625fa94e2357bd81ffdc96267f3fb0fc4aaf4534028343836548ef34c240ffa8c25b280ca35eb36be00b3cb2133fa4f51896d7e73c6b4f + languageName: node + linkType: hard + +"restore-cursor@npm:^5.0.0": + version: 5.1.0 + resolution: "restore-cursor@npm:5.1.0" + dependencies: + onetime: "npm:^7.0.0" + signal-exit: "npm:^4.1.0" + checksum: 10c0/c2ba89131eea791d1b25205bdfdc86699767e2b88dee2a590b1a6caa51737deac8bad0260a5ded2f7c074b7db2f3a626bcf1fcf3cdf35974cbeea5e2e6764f60 + languageName: node + linkType: hard + +"retry@npm:^0.12.0": + version: 0.12.0 + resolution: "retry@npm:0.12.0" + checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe + languageName: node + linkType: hard + +"reusify@npm:^1.0.4": + version: 1.0.4 + resolution: "reusify@npm:1.0.4" + checksum: 10c0/c19ef26e4e188f408922c46f7ff480d38e8dfc55d448310dfb518736b23ed2c4f547fb64a6ed5bdba92cd7e7ddc889d36ff78f794816d5e71498d645ef476107 + languageName: node + linkType: hard + +"rfdc@npm:^1.3.0, rfdc@npm:^1.3.1, rfdc@npm:^1.4.1": + version: 1.4.1 + resolution: "rfdc@npm:1.4.1" + checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7 + languageName: node + linkType: hard + +"rimraf@npm:3.0.2, rimraf@npm:^3.0.2": + version: 3.0.2 + resolution: "rimraf@npm:3.0.2" + dependencies: + glob: "npm:^7.1.3" + bin: + rimraf: bin.js + checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 + languageName: node + linkType: hard + +"rimraf@npm:^2.6.3": + version: 2.7.1 + resolution: "rimraf@npm:2.7.1" + dependencies: + glob: "npm:^7.1.3" + bin: + rimraf: ./bin.js + checksum: 10c0/4eef73d406c6940927479a3a9dee551e14a54faf54b31ef861250ac815172bade86cc6f7d64a4dc5e98b65e4b18a2e1c9ff3b68d296be0c748413f092bb0dd40 + languageName: node + linkType: hard + +"rimraf@npm:^5.0.5": + version: 5.0.10 + resolution: "rimraf@npm:5.0.10" + dependencies: + glob: "npm:^10.3.7" + bin: + rimraf: dist/esm/bin.mjs + checksum: 10c0/7da4fd0e15118ee05b918359462cfa1e7fe4b1228c7765195a45b55576e8c15b95db513b8466ec89129666f4af45ad978a3057a02139afba1a63512a2d9644cc + languageName: node + linkType: hard + +"rollup@npm:3.29.5": + version: 3.29.5 + resolution: "rollup@npm:3.29.5" + dependencies: + fsevents: "npm:~2.3.2" + dependenciesMeta: + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: 10c0/a1fa26f21f0d6cf93b6d05ea284ad5854905b585f28a14c27d439b0f9b859cba13ea25f376303d86770e59b4686bedc52b4706e57442514f0414c6fd3c5b8e71 + languageName: node + linkType: hard + +"rollup@npm:^4.20.0": + version: 4.34.8 + resolution: "rollup@npm:4.34.8" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.34.8" + "@rollup/rollup-android-arm64": "npm:4.34.8" + "@rollup/rollup-darwin-arm64": "npm:4.34.8" + "@rollup/rollup-darwin-x64": "npm:4.34.8" + "@rollup/rollup-freebsd-arm64": "npm:4.34.8" + "@rollup/rollup-freebsd-x64": "npm:4.34.8" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.8" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.34.8" + "@rollup/rollup-linux-arm64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-arm64-musl": "npm:4.34.8" + "@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.8" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-s390x-gnu": "npm:4.34.8" + "@rollup/rollup-linux-x64-gnu": "npm:4.34.8" + "@rollup/rollup-linux-x64-musl": "npm:4.34.8" + "@rollup/rollup-win32-arm64-msvc": "npm:4.34.8" + "@rollup/rollup-win32-ia32-msvc": "npm:4.34.8" + "@rollup/rollup-win32-x64-msvc": "npm:4.34.8" + "@types/estree": "npm:1.0.6" + fsevents: "npm:~2.3.2" + dependenciesMeta: + "@rollup/rollup-android-arm-eabi": + optional: true + "@rollup/rollup-android-arm64": + optional: true + "@rollup/rollup-darwin-arm64": + optional: true + "@rollup/rollup-darwin-x64": + optional: true + "@rollup/rollup-freebsd-arm64": + optional: true + "@rollup/rollup-freebsd-x64": + optional: true + "@rollup/rollup-linux-arm-gnueabihf": + optional: true + "@rollup/rollup-linux-arm-musleabihf": + optional: true + "@rollup/rollup-linux-arm64-gnu": + optional: true + "@rollup/rollup-linux-arm64-musl": + optional: true + "@rollup/rollup-linux-loongarch64-gnu": + optional: true + "@rollup/rollup-linux-powerpc64le-gnu": + optional: true + "@rollup/rollup-linux-riscv64-gnu": + optional: true + "@rollup/rollup-linux-s390x-gnu": + optional: true + "@rollup/rollup-linux-x64-gnu": + optional: true + "@rollup/rollup-linux-x64-musl": + optional: true + "@rollup/rollup-win32-arm64-msvc": + optional: true + "@rollup/rollup-win32-ia32-msvc": + optional: true + "@rollup/rollup-win32-x64-msvc": + optional: true + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: 10c0/b9e711e33413112fbb761107c3fddc4561dfc74335c393542a829a85ccfb2763bfd17bf2422d84a2e9bee7646e5367018973e97005fdf64e49c2e209612f0eb6 + languageName: node + linkType: hard + +"run-parallel@npm:^1.1.9": + version: 1.2.0 + resolution: "run-parallel@npm:1.2.0" + dependencies: + queue-microtask: "npm:^1.2.2" + checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39 + languageName: node + linkType: hard + +"runes2@npm:^1.1.2": + version: 1.1.4 + resolution: "runes2@npm:1.1.4" + checksum: 10c0/306e5ffe2acfe59ec82108d5a6f2ae367c669e63a89372f9f328d5fd2f18ac6f832eeae84c263addef9c24938246f7216df1a7dcd7ae7bb60c223f4edf56f0b7 + languageName: node + linkType: hard + +"rxjs@npm:^7.5.1, rxjs@npm:^7.8.1": + version: 7.8.2 + resolution: "rxjs@npm:7.8.2" + dependencies: + tslib: "npm:^2.1.0" + checksum: 10c0/1fcd33d2066ada98ba8f21fcbbcaee9f0b271de1d38dc7f4e256bfbc6ffcdde68c8bfb69093de7eeb46f24b1fb820620bf0223706cff26b4ab99a7ff7b2e2c45 + languageName: node + linkType: hard + +"safe-array-concat@npm:^1.1.3": + version: 1.1.3 + resolution: "safe-array-concat@npm:1.1.3" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.6" + has-symbols: "npm:^1.1.0" + isarray: "npm:^2.0.5" + checksum: 10c0/43c86ffdddc461fb17ff8a17c5324f392f4868f3c7dd2c6a5d9f5971713bc5fd755667212c80eab9567595f9a7509cc2f83e590ddaebd1bd19b780f9c79f9a8d + languageName: node + linkType: hard + +"safe-buffer@npm:5.1.2, safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": + version: 5.1.2 + resolution: "safe-buffer@npm:5.1.2" + checksum: 10c0/780ba6b5d99cc9a40f7b951d47152297d0e260f0df01472a1b99d4889679a4b94a13d644f7dbc4f022572f09ae9005fa2fbb93bbbd83643316f365a3e9a45b21 + languageName: node + linkType: hard + +"safe-buffer@npm:5.2.1, safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:~5.2.0": + version: 5.2.1 + resolution: "safe-buffer@npm:5.2.1" + checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3 + languageName: node + linkType: hard + +"safe-push-apply@npm:^1.0.0": + version: 1.0.0 + resolution: "safe-push-apply@npm:1.0.0" + dependencies: + es-errors: "npm:^1.3.0" + isarray: "npm:^2.0.5" + checksum: 10c0/831f1c9aae7436429e7862c7e46f847dfe490afac20d0ee61bae06108dbf5c745a0de3568ada30ccdd3eeb0864ca8331b2eef703abd69bfea0745b21fd320750 + languageName: node + linkType: hard + +"safe-regex-test@npm:^1.0.3, safe-regex-test@npm:^1.1.0": + version: 1.1.0 + resolution: "safe-regex-test@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.2" + es-errors: "npm:^1.3.0" + is-regex: "npm:^1.2.1" + checksum: 10c0/f2c25281bbe5d39cddbbce7f86fca5ea9b3ce3354ea6cd7c81c31b006a5a9fff4286acc5450a3b9122c56c33eba69c56b9131ad751457b2b4a585825e6a10665 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0, safer-buffer@npm:^2.0.2, safer-buffer@npm:^2.1.0, safer-buffer@npm:~2.1.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 + languageName: node + linkType: hard + +"sass@npm:^1.70.0": + version: 1.85.0 + resolution: "sass@npm:1.85.0" + dependencies: + "@parcel/watcher": "npm:^2.4.1" + chokidar: "npm:^4.0.0" + immutable: "npm:^5.0.2" + source-map-js: "npm:>=0.6.2 <2.0.0" + dependenciesMeta: + "@parcel/watcher": + optional: true + bin: + sass: sass.js + checksum: 10c0/a1af0c0596ae1904f66337d0c70a684db6e12210f97be4326cc3dcf18b0f956d7bc45ab2bcc7a8422d433d3eb3c9cb2cc8e60b2dafbdd01fb1ae5a23f5424690 + languageName: node + linkType: hard + +"sax@npm:^1.2.4": + version: 1.4.1 + resolution: "sax@npm:1.4.1" + checksum: 10c0/6bf86318a254c5d898ede6bd3ded15daf68ae08a5495a2739564eb265cd13bcc64a07ab466fb204f67ce472bb534eb8612dac587435515169593f4fffa11de7c + languageName: node + linkType: hard + +"sax@npm:~1.3.0": + version: 1.3.0 + resolution: "sax@npm:1.3.0" + checksum: 10c0/599dbe0ba9d8bd55e92d920239b21d101823a6cedff71e542589303fa0fa8f3ece6cf608baca0c51be846a2e88365fac94a9101a9c341d94b98e30c4deea5bea + languageName: node + linkType: hard + +"saxes@npm:^6.0.0": + version: 6.0.0 + resolution: "saxes@npm:6.0.0" + dependencies: + xmlchars: "npm:^2.2.0" + checksum: 10c0/3847b839f060ef3476eb8623d099aa502ad658f5c40fd60c105ebce86d244389b0d76fcae30f4d0c728d7705ceb2f7e9b34bb54717b6a7dbedaf5dad2d9a4b74 + languageName: node + linkType: hard + +"scandic@workspace:.": + version: 0.0.0-use.local + resolution: "scandic@workspace:." + dependencies: + "@types/react": "npm:^18" + "@types/react-dom": "npm:^18" + husky: "npm:^9.1.7" + lint-staged: "npm:^15.2.2" + languageName: unknown + linkType: soft + +"scheduler@npm:^0.23.2": + version: 0.23.2 + resolution: "scheduler@npm:0.23.2" + dependencies: + loose-envify: "npm:^1.1.0" + checksum: 10c0/26383305e249651d4c58e6705d5f8425f153211aef95f15161c151f7b8de885f24751b377e4a0b3dd42cce09aad3f87a61dab7636859c0d89b7daf1a1e2a5c78 + languageName: node + linkType: hard + +"scheduler@npm:^0.25.0": + version: 0.25.0 + resolution: "scheduler@npm:0.25.0" + checksum: 10c0/a4bb1da406b613ce72c1299db43759526058fdcc413999c3c3e0db8956df7633acf395cb20eb2303b6a65d658d66b6585d344460abaee8080b4aa931f10eaafe + languageName: node + linkType: hard + +"schema-dts@npm:^1.1.2": + version: 1.1.2 + resolution: "schema-dts@npm:1.1.2" + peerDependencies: + typescript: ">=4.1.0" + checksum: 10c0/bcca8719b1bb1cd71ba2b01a5126b3579e917a2f193e10fcffe020fa42fef911776ed9d2197c9f376780e703994b3ab854db3f962c47064f7282f41eff0f1d24 + languageName: node + linkType: hard + +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.6.0": + version: 5.7.2 + resolution: "semver@npm:5.7.2" + bin: + semver: bin/semver + checksum: 10c0/e4cf10f86f168db772ae95d86ba65b3fd6c5967c94d97c708ccb463b778c2ee53b914cd7167620950fc07faf5a564e6efe903836639e512a1aa15fbc9667fa25 + languageName: node + linkType: hard + +"semver@npm:^6.0.0, semver@npm:^6.3.0, semver@npm:^6.3.1": + version: 6.3.1 + resolution: "semver@npm:6.3.1" + bin: + semver: bin/semver.js + checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d + languageName: node + linkType: hard + +"semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.2, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.2, semver@npm:^7.6.3": + version: 7.7.1 + resolution: "semver@npm:7.7.1" + bin: + semver: bin/semver.js + checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958 + languageName: node + linkType: hard + +"semver@npm:~7.5.4": + version: 7.5.4 + resolution: "semver@npm:7.5.4" + dependencies: + lru-cache: "npm:^6.0.0" + bin: + semver: bin/semver.js + checksum: 10c0/5160b06975a38b11c1ab55950cb5b8a23db78df88275d3d8a42ccf1f29e55112ac995b3a26a522c36e3b5f76b0445f1eef70d696b8c7862a2b4303d7b0e7609e + languageName: node + linkType: hard + +"serve-index-75lb@npm:^2.0.1": + version: 2.0.1 + resolution: "serve-index-75lb@npm:2.0.1" + dependencies: + accepts: "npm:~1.3.4" + batch: "npm:0.6.1" + debug: "npm:2.6.9" + escape-html: "npm:~1.0.3" + http-errors: "npm:~1.6.2" + mime-types: "npm:~2.1.18" + parseurl: "npm:~1.3.2" + checksum: 10c0/7e0eb2dc4da6f362aecc49db2c0b2a12bf1d3e7d118eb97a7e91787c44ce0d572976b64b5b3af23c50072812d6f743b3fdc49cd51d74ec2d67d700d26e854c3d + languageName: node + linkType: hard + +"server-only@npm:^0.0.1": + version: 0.0.1 + resolution: "server-only@npm:0.0.1" + checksum: 10c0/4704f0ef85da0be981af6d4ed8e739d39bcfd265b9c246a684060acda5642d0fdc6daffc2308e71e2682c5f508090978802eae0a77623c9b90a49f9ae68048d6 + languageName: node + linkType: hard + +"set-function-length@npm:^1.2.2": + version: 1.2.2 + resolution: "set-function-length@npm:1.2.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c + languageName: node + linkType: hard + +"set-function-name@npm:^2.0.2": + version: 2.0.2 + resolution: "set-function-name@npm:2.0.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + functions-have-names: "npm:^1.2.3" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 + languageName: node + linkType: hard + +"set-proto@npm:^1.0.0": + version: 1.0.0 + resolution: "set-proto@npm:1.0.0" + dependencies: + dunder-proto: "npm:^1.0.1" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/ca5c3ccbba479d07c30460e367e66337cec825560b11e8ba9c5ebe13a2a0d6021ae34eddf94ff3dfe17a3104dc1f191519cb6c48378b503e5c3f36393938776a + languageName: node + linkType: hard + +"setprototypeof@npm:1.1.0": + version: 1.1.0 + resolution: "setprototypeof@npm:1.1.0" + checksum: 10c0/a77b20876689c6a89c3b42f0c3596a9cae02f90fc902570cbd97198e9e8240382086c9303ad043e88cee10f61eae19f1004e51d885395a1e9bf49f9ebed12872 + languageName: node + linkType: hard + +"setprototypeof@npm:1.2.0": + version: 1.2.0 + resolution: "setprototypeof@npm:1.2.0" + checksum: 10c0/68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc + languageName: node + linkType: hard + +"sharp@npm:^0.33.5": + version: 0.33.5 + resolution: "sharp@npm:0.33.5" + dependencies: + "@img/sharp-darwin-arm64": "npm:0.33.5" + "@img/sharp-darwin-x64": "npm:0.33.5" + "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" + "@img/sharp-libvips-darwin-x64": "npm:1.0.4" + "@img/sharp-libvips-linux-arm": "npm:1.0.5" + "@img/sharp-libvips-linux-arm64": "npm:1.0.4" + "@img/sharp-libvips-linux-s390x": "npm:1.0.4" + "@img/sharp-libvips-linux-x64": "npm:1.0.4" + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" + "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" + "@img/sharp-linux-arm": "npm:0.33.5" + "@img/sharp-linux-arm64": "npm:0.33.5" + "@img/sharp-linux-s390x": "npm:0.33.5" + "@img/sharp-linux-x64": "npm:0.33.5" + "@img/sharp-linuxmusl-arm64": "npm:0.33.5" + "@img/sharp-linuxmusl-x64": "npm:0.33.5" + "@img/sharp-wasm32": "npm:0.33.5" + "@img/sharp-win32-ia32": "npm:0.33.5" + "@img/sharp-win32-x64": "npm:0.33.5" + color: "npm:^4.2.3" + detect-libc: "npm:^2.0.3" + semver: "npm:^7.6.3" + dependenciesMeta: + "@img/sharp-darwin-arm64": + optional: true + "@img/sharp-darwin-x64": + optional: true + "@img/sharp-libvips-darwin-arm64": + optional: true + "@img/sharp-libvips-darwin-x64": + optional: true + "@img/sharp-libvips-linux-arm": + optional: true + "@img/sharp-libvips-linux-arm64": + optional: true + "@img/sharp-libvips-linux-s390x": + optional: true + "@img/sharp-libvips-linux-x64": + optional: true + "@img/sharp-libvips-linuxmusl-arm64": + optional: true + "@img/sharp-libvips-linuxmusl-x64": + optional: true + "@img/sharp-linux-arm": + optional: true + "@img/sharp-linux-arm64": + optional: true + "@img/sharp-linux-s390x": + optional: true + "@img/sharp-linux-x64": + optional: true + "@img/sharp-linuxmusl-arm64": + optional: true + "@img/sharp-linuxmusl-x64": + optional: true + "@img/sharp-wasm32": + optional: true + "@img/sharp-win32-ia32": + optional: true + "@img/sharp-win32-x64": + optional: true + checksum: 10c0/6b81421ddfe6ee524d8d77e325c5e147fef22884e1c7b1656dfd89a88d7025894115da02d5f984261bf2e6daa16f98cadd1721c4ba408b4212b1d2a60f233484 + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: "npm:^3.0.0" + checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 + languageName: node + linkType: hard + +"shimmer@npm:^1.2.1": + version: 1.2.1 + resolution: "shimmer@npm:1.2.1" + checksum: 10c0/ae8b27c389db2a00acfc8da90240f11577685a8f3e40008f826a3bea8b4f3b3ecd305c26be024b4a0fd3b123d132c1569d6e238097960a9a543b6c60760fb46a + languageName: node + linkType: hard + +"side-channel-list@npm:^1.0.0": + version: 1.0.0 + resolution: "side-channel-list@npm:1.0.0" + dependencies: + es-errors: "npm:^1.3.0" + object-inspect: "npm:^1.13.3" + checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d + languageName: node + linkType: hard + +"side-channel-map@npm:^1.0.1": + version: 1.0.1 + resolution: "side-channel-map@npm:1.0.1" + dependencies: + call-bound: "npm:^1.0.2" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.5" + object-inspect: "npm:^1.13.3" + checksum: 10c0/010584e6444dd8a20b85bc926d934424bd809e1a3af941cace229f7fdcb751aada0fb7164f60c2e22292b7fa3c0ff0bce237081fd4cdbc80de1dc68e95430672 + languageName: node + linkType: hard + +"side-channel-weakmap@npm:^1.0.2": + version: 1.0.2 + resolution: "side-channel-weakmap@npm:1.0.2" + dependencies: + call-bound: "npm:^1.0.2" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.5" + object-inspect: "npm:^1.13.3" + side-channel-map: "npm:^1.0.1" + checksum: 10c0/71362709ac233e08807ccd980101c3e2d7efe849edc51455030327b059f6c4d292c237f94dc0685031dd11c07dd17a68afde235d6cf2102d949567f98ab58185 + languageName: node + linkType: hard + +"side-channel@npm:^1.0.6, side-channel@npm:^1.1.0": + version: 1.1.0 + resolution: "side-channel@npm:1.1.0" + dependencies: + es-errors: "npm:^1.3.0" + object-inspect: "npm:^1.13.3" + side-channel-list: "npm:^1.0.0" + side-channel-map: "npm:^1.0.1" + side-channel-weakmap: "npm:^1.0.2" + checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6 + languageName: node + linkType: hard + +"siginfo@npm:^2.0.0": + version: 2.0.0 + resolution: "siginfo@npm:2.0.0" + checksum: 10c0/3def8f8e516fbb34cb6ae415b07ccc5d9c018d85b4b8611e3dc6f8be6d1899f693a4382913c9ed51a06babb5201639d76453ab297d1c54a456544acf5c892e34 + languageName: node + linkType: hard + +"signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": + version: 3.0.7 + resolution: "signal-exit@npm:3.0.7" + checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 + languageName: node + linkType: hard + +"simple-swizzle@npm:^0.2.2": + version: 0.2.2 + resolution: "simple-swizzle@npm:0.2.2" + dependencies: + is-arrayish: "npm:^0.3.1" + checksum: 10c0/df5e4662a8c750bdba69af4e8263c5d96fe4cd0f9fe4bdfa3cbdeb45d2e869dff640beaaeb1ef0e99db4d8d2ec92f85508c269f50c972174851bc1ae5bd64308 + languageName: node + linkType: hard + +"sisteransi@npm:^1.0.5": + version: 1.0.5 + resolution: "sisteransi@npm:1.0.5" + checksum: 10c0/230ac975cca485b7f6fe2b96a711aa62a6a26ead3e6fb8ba17c5a00d61b8bed0d7adc21f5626b70d7c33c62ff4e63933017a6462942c719d1980bb0b1207ad46 + languageName: node + linkType: hard + +"slash@npm:^2.0.0": + version: 2.0.0 + resolution: "slash@npm:2.0.0" + checksum: 10c0/f83dbd3cb62c41bb8fcbbc6bf5473f3234b97fa1d008f571710a9d3757a28c7169e1811cad1554ccb1cc531460b3d221c9a7b37f549398d9a30707f0a5af9193 + languageName: node + linkType: hard + +"slash@npm:^3.0.0": + version: 3.0.0 + resolution: "slash@npm:3.0.0" + checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b + languageName: node + linkType: hard + +"slash@npm:^5.1.0": + version: 5.1.0 + resolution: "slash@npm:5.1.0" + checksum: 10c0/eb48b815caf0bdc390d0519d41b9e0556a14380f6799c72ba35caf03544d501d18befdeeef074bc9c052acf69654bc9e0d79d7f1de0866284137a40805299eb3 + languageName: node + linkType: hard + +"slice-ansi@npm:^3.0.0": + version: 3.0.0 + resolution: "slice-ansi@npm:3.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + astral-regex: "npm:^2.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + checksum: 10c0/88083c9d0ca67d09f8b4c78f68833d69cabbb7236b74df5d741ad572bbf022deaf243fa54009cd434350622a1174ab267710fcc80a214ecc7689797fe00cb27c + languageName: node + linkType: hard + +"slice-ansi@npm:^4.0.0": + version: 4.0.0 + resolution: "slice-ansi@npm:4.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + astral-regex: "npm:^2.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + checksum: 10c0/6c25678db1270d4793e0327620f1e0f9f5bea4630123f51e9e399191bc52c87d6e6de53ed33538609e5eacbd1fab769fae00f3705d08d029f02102a540648918 + languageName: node + linkType: hard + +"slice-ansi@npm:^5.0.0": + version: 5.0.0 + resolution: "slice-ansi@npm:5.0.0" + dependencies: + ansi-styles: "npm:^6.0.0" + is-fullwidth-code-point: "npm:^4.0.0" + checksum: 10c0/2d4d40b2a9d5cf4e8caae3f698fe24ae31a4d778701724f578e984dcb485ec8c49f0c04dab59c401821e80fcdfe89cace9c66693b0244e40ec485d72e543914f + languageName: node + linkType: hard + +"slice-ansi@npm:^7.1.0": + version: 7.1.0 + resolution: "slice-ansi@npm:7.1.0" + dependencies: + ansi-styles: "npm:^6.2.1" + is-fullwidth-code-point: "npm:^5.0.0" + checksum: 10c0/631c971d4abf56cf880f034d43fcc44ff883624867bf11ecbd538c47343911d734a4656d7bc02362b40b89d765652a7f935595441e519b59e2ad3f4d5d6fe7ca + languageName: node + linkType: hard + +"slugify@npm:^1.6.6": + version: 1.6.6 + resolution: "slugify@npm:1.6.6" + checksum: 10c0/e7e63f08f389a371d6228bc19d64ec84360bf0a538333446cc49dbbf3971751a6d180d2f31551188dd007a65ca771e69f574e0283290a7825a818e90b75ef44d + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 + languageName: node + linkType: hard + +"snake-case@npm:^3.0.4": + version: 3.0.4 + resolution: "snake-case@npm:3.0.4" + dependencies: + dot-case: "npm:^3.0.4" + tslib: "npm:^2.0.3" + checksum: 10c0/ab19a913969f58f4474fe9f6e8a026c8a2142a01f40b52b79368068343177f818cdfef0b0c6b9558f298782441d5ca8ed5932eb57822439fad791d866e62cecd + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.3": + version: 8.0.5 + resolution: "socks-proxy-agent@npm:8.0.5" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:^4.3.4" + socks: "npm:^2.8.3" + checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 + languageName: node + linkType: hard + +"socks@npm:^2.8.3": + version: 2.8.4 + resolution: "socks@npm:2.8.4" + dependencies: + ip-address: "npm:^9.0.5" + smart-buffer: "npm:^4.2.0" + checksum: 10c0/00c3271e233ccf1fb83a3dd2060b94cc37817e0f797a93c560b9a7a86c4a0ec2961fb31263bdd24a3c28945e24868b5f063cd98744171d9e942c513454b50ae5 + languageName: node + linkType: hard + +"sonner@npm:^1.7.0": + version: 1.7.4 + resolution: "sonner@npm:1.7.4" + peerDependencies: + react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc + react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc + checksum: 10c0/2856a43c1afaacec5ca74c7f6bb8eb439edf1fdadb045bd201590f809e6e9b711eabcf7d1e8f3448cf414e1333d97e3e16372a989011a3190f20952947b1f60a + languageName: node + linkType: hard + +"sort-object-keys@npm:^1.1.3": + version: 1.1.3 + resolution: "sort-object-keys@npm:1.1.3" + checksum: 10c0/3bf62398658d3ff4bbca0db4ed8f42f98abc41433859f63d02fb0ab953fbe5526be240ec7e5d85aa50fcab6c937f3fa7015abf1ecdeb3045a2281c53953886bf + languageName: node + linkType: hard + +"sort-package-json@npm:^2.10.0": + version: 2.14.0 + resolution: "sort-package-json@npm:2.14.0" + dependencies: + detect-indent: "npm:^7.0.1" + detect-newline: "npm:^4.0.0" + get-stdin: "npm:^9.0.0" + git-hooks-list: "npm:^3.0.0" + is-plain-obj: "npm:^4.1.0" + semver: "npm:^7.6.0" + sort-object-keys: "npm:^1.1.3" + tinyglobby: "npm:^0.2.9" + bin: + sort-package-json: cli.js + checksum: 10c0/bcc114a3b5e11d4539ba46dd4eeda6d6909202cb1a9526c230850f1edfdfcf8712e9479b71f98d8f6cb8554740294acdfcaae84461dcecd90592867e1ba90924 + languageName: node + linkType: hard + +"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf + languageName: node + linkType: hard + +"source-map-support@npm:0.5.13": + version: 0.5.13 + resolution: "source-map-support@npm:0.5.13" + dependencies: + buffer-from: "npm:^1.0.0" + source-map: "npm:^0.6.0" + checksum: 10c0/137539f8c453fa0f496ea42049ab5da4569f96781f6ac8e5bfda26937be9494f4e8891f523c5f98f0e85f71b35d74127a00c46f83f6a4f54672b58d53202565e + languageName: node + linkType: hard + +"source-map@npm:^0.6.0, source-map@npm:^0.6.1, source-map@npm:~0.6.0, source-map@npm:~0.6.1": + version: 0.6.1 + resolution: "source-map@npm:0.6.1" + checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011 + languageName: node + linkType: hard + +"source-map@npm:^0.7.3": + version: 0.7.4 + resolution: "source-map@npm:0.7.4" + checksum: 10c0/dc0cf3768fe23c345ea8760487f8c97ef6fca8a73c83cd7c9bf2fde8bc2c34adb9c0824d6feb14bc4f9e37fb522e18af621543f1289038a66ac7586da29aa7dc + languageName: node + linkType: hard + +"spdx-correct@npm:^3.0.0": + version: 3.2.0 + resolution: "spdx-correct@npm:3.2.0" + dependencies: + spdx-expression-parse: "npm:^3.0.0" + spdx-license-ids: "npm:^3.0.0" + checksum: 10c0/49208f008618b9119208b0dadc9208a3a55053f4fd6a0ae8116861bd22696fc50f4142a35ebfdb389e05ccf2de8ad142573fefc9e26f670522d899f7b2fe7386 + languageName: node + linkType: hard + +"spdx-exceptions@npm:^2.1.0": + version: 2.5.0 + resolution: "spdx-exceptions@npm:2.5.0" + checksum: 10c0/37217b7762ee0ea0d8b7d0c29fd48b7e4dfb94096b109d6255b589c561f57da93bf4e328c0290046115961b9209a8051ad9f525e48d433082fc79f496a4ea940 + languageName: node + linkType: hard + +"spdx-expression-parse@npm:^3.0.0": + version: 3.0.1 + resolution: "spdx-expression-parse@npm:3.0.1" + dependencies: + spdx-exceptions: "npm:^2.1.0" + spdx-license-ids: "npm:^3.0.0" + checksum: 10c0/6f8a41c87759fa184a58713b86c6a8b028250f158159f1d03ed9d1b6ee4d9eefdc74181c8ddc581a341aa971c3e7b79e30b59c23b05d2436d5de1c30bdef7171 + languageName: node + linkType: hard + +"spdx-license-ids@npm:^3.0.0": + version: 3.0.21 + resolution: "spdx-license-ids@npm:3.0.21" + checksum: 10c0/ecb24c698d8496aa9efe23e0b1f751f8a7a89faedcdfcbfabae772b546c2db46ccde8f3bc447a238eb86bbcd4f73fea88720ef3b8394f7896381bec3d7736411 + languageName: node + linkType: hard + +"split@npm:0.3": + version: 0.3.3 + resolution: "split@npm:0.3.3" + dependencies: + through: "npm:2" + checksum: 10c0/88c09b1b4de84953bf5d6c153123a1fbb20addfea9381f70d27b4eb6b2bfbadf25d313f8f5d3fd727d5679b97bfe54da04766b91010f131635bf49e51d5db3fc + languageName: node + linkType: hard + +"sprintf-js@npm:^1.1.3": + version: 1.1.3 + resolution: "sprintf-js@npm:1.1.3" + checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb + languageName: node + linkType: hard + +"sshpk@npm:^1.18.0": + version: 1.18.0 + resolution: "sshpk@npm:1.18.0" + dependencies: + asn1: "npm:~0.2.3" + assert-plus: "npm:^1.0.0" + bcrypt-pbkdf: "npm:^1.0.0" + dashdash: "npm:^1.12.0" + ecc-jsbn: "npm:~0.1.1" + getpass: "npm:^0.1.1" + jsbn: "npm:~0.1.0" + safer-buffer: "npm:^2.0.2" + tweetnacl: "npm:~0.14.0" + bin: + sshpk-conv: bin/sshpk-conv + sshpk-sign: bin/sshpk-sign + sshpk-verify: bin/sshpk-verify + checksum: 10c0/e516e34fa981cfceef45fd2e947772cc70dbd57523e5c608e2cd73752ba7f8a99a04df7c3ed751588e8d91956b6f16531590b35d3489980d1c54c38bebcd41b1 + languageName: node + linkType: hard + +"ssri@npm:^12.0.0": + version: 12.0.0 + resolution: "ssri@npm:12.0.0" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d + languageName: node + linkType: hard + +"stable-hash@npm:^0.0.4": + version: 0.0.4 + resolution: "stable-hash@npm:0.0.4" + checksum: 10c0/53d010d2a1b014fb60d398c095f43912c353b7b44774e55222bb26fd428bc75b73d7bdfcae509ce927c23ca9c5aff2dc1bc82f191d30e57a879550bc2952bdb0 + languageName: node + linkType: hard + +"stack-utils@npm:^2.0.3": + version: 2.0.6 + resolution: "stack-utils@npm:2.0.6" + dependencies: + escape-string-regexp: "npm:^2.0.0" + checksum: 10c0/651c9f87667e077584bbe848acaecc6049bc71979f1e9a46c7b920cad4431c388df0f51b8ad7cfd6eed3db97a2878d0fc8b3122979439ea8bac29c61c95eec8a + languageName: node + linkType: hard + +"stackback@npm:0.0.2": + version: 0.0.2 + resolution: "stackback@npm:0.0.2" + checksum: 10c0/89a1416668f950236dd5ac9f9a6b2588e1b9b62b1b6ad8dff1bfc5d1a15dbf0aafc9b52d2226d00c28dffff212da464eaeebfc6b7578b9d180cef3e3782c5983 + languageName: node + linkType: hard + +"stacktrace-parser@npm:^0.1.10": + version: 0.1.11 + resolution: "stacktrace-parser@npm:0.1.11" + dependencies: + type-fest: "npm:^0.7.1" + checksum: 10c0/4633d9afe8cd2f6c7fb2cebdee3cc8de7fd5f6f9736645fd08c0f66872a303061ce9cc0ccf46f4216dc94a7941b56e331012398dc0024dc25e46b5eb5d4ff018 + languageName: node + linkType: hard + +"start-server-and-test@npm:^2.0.3": + version: 2.0.10 + resolution: "start-server-and-test@npm:2.0.10" + dependencies: + arg: "npm:^5.0.2" + bluebird: "npm:3.7.2" + check-more-types: "npm:2.24.0" + debug: "npm:4.4.0" + execa: "npm:5.1.1" + lazy-ass: "npm:1.6.0" + ps-tree: "npm:1.2.0" + wait-on: "npm:8.0.2" + bin: + server-test: src/bin/start.js + start-server-and-test: src/bin/start.js + start-test: src/bin/start.js + checksum: 10c0/a36cb142060aabee07e2f5de5344a20af15b44b77b4d15d054300e0a86bf2c245239b6c1d0508c8a827903d8b362b489a8cc2bfb5ba9ab41e2bf0ca01878c12b + languageName: node + linkType: hard + +"statuses@npm:2.0.1": + version: 2.0.1 + resolution: "statuses@npm:2.0.1" + checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 + languageName: node + linkType: hard + +"statuses@npm:>= 1.4.0 < 2, statuses@npm:>= 1.5.0 < 2, statuses@npm:^1.0.0, statuses@npm:^1.5.0": + version: 1.5.0 + resolution: "statuses@npm:1.5.0" + checksum: 10c0/e433900956357b3efd79b1c547da4d291799ac836960c016d10a98f6a810b1b5c0dcc13b5a7aa609a58239b5190e1ea176ad9221c2157d2fd1c747393e6b2940 + languageName: node + linkType: hard + +"std-env@npm:^3.5.0": + version: 3.8.0 + resolution: "std-env@npm:3.8.0" + checksum: 10c0/f560a2902fd0fa3d648d7d0acecbd19d664006f7372c1fba197ed4c216b4c9e48db6e2769b5fe1616d42a9333c9f066c5011935035e85c59f45dc4f796272040 + languageName: node + linkType: hard + +"storybook@npm:^8.0.0-beta.0": + version: 8.5.8 + resolution: "storybook@npm:8.5.8" + dependencies: + "@storybook/core": "npm:8.5.8" + peerDependencies: + prettier: ^2 || ^3 + peerDependenciesMeta: + prettier: + optional: true + bin: + getstorybook: ./bin/index.cjs + sb: ./bin/index.cjs + storybook: ./bin/index.cjs + checksum: 10c0/a02ccf3132c05341139deb23dd7731191b4542b80d0d4ed772d06f483373be5713e3db1003fddb8823da417c5c9353273032d30d61cfa6084a04b9b33dc764cc + languageName: node + linkType: hard + +"stream-combiner@npm:~0.0.4": + version: 0.0.4 + resolution: "stream-combiner@npm:0.0.4" + dependencies: + duplexer: "npm:~0.1.1" + checksum: 10c0/8075a94c0eb0f20450a8236cb99d4ce3ea6e6a4b36d8baa7440b1a08cde6ffd227debadffaecd80993bd334282875d0e927ab5b88484625e01970dd251004ff5 + languageName: node + linkType: hard + +"stream-log-stats@npm:^3.0.2": + version: 3.0.2 + resolution: "stream-log-stats@npm:3.0.2" + dependencies: + JSONStream: "npm:^1.3.5" + ansi-escape-sequences: "npm:^5.1.2" + byte-size: "npm:^6.2.0" + common-log-format: "npm:^1.0.0" + lodash.throttle: "npm:^4.1.1" + stream-via: "npm:^1.0.4" + table-layout: "npm:~1.0.0" + bin: + log-stats: bin/cli.js + checksum: 10c0/4d0d6af7bce8939733f2efae8b971d665ca3e41ab0c8236afc99be70e91a7200ba328fb6d92f60c9c759bb63243e506ef72ccf4ea6333353581c365b29f916b4 + languageName: node + linkType: hard + +"stream-slice@npm:^0.1.2": + version: 0.1.2 + resolution: "stream-slice@npm:0.1.2" + checksum: 10c0/fe9ccd8adfff2e2754617d3fd4afe9aa677c69d51ccd94b34909ae669d5882ed4b2753893c4dbd4100495c0deda51adbaa7bfe340e6b340e52211b32faa0e835 + languageName: node + linkType: hard + +"stream-via@npm:^1.0.4": + version: 1.0.4 + resolution: "stream-via@npm:1.0.4" + checksum: 10c0/fde9a4873b5963bf99d55b66d57b57e1511753c38d7194c50c90db833e440e5f968871cdac35046ea5985580fa0de970fbcd53fe5fe86e8d57ae472d1cd41abd + languageName: node + linkType: hard + +"streaming-json-stringify@npm:3": + version: 3.1.0 + resolution: "streaming-json-stringify@npm:3.1.0" + dependencies: + json-stringify-safe: "npm:5" + readable-stream: "npm:2" + checksum: 10c0/cd9d2c6b93066415e0599e1e07695143732661ffd29be2110ded2eaaf08e664522f32a737d024c847ccda5325be0931ec47f5d0c6a3384deb8f6956541aa9efa + languageName: node + linkType: hard + +"streamsearch@npm:^1.1.0": + version: 1.1.0 + resolution: "streamsearch@npm:1.1.0" + checksum: 10c0/fbd9aecc2621364384d157f7e59426f4bfd385e8b424b5aaa79c83a6f5a1c8fd2e4e3289e95de1eb3511cb96bb333d6281a9919fafce760e4edb35b2cd2facab + languageName: node + linkType: hard + +"string-argv@npm:^0.3.2, string-argv@npm:~0.3.1": + version: 0.3.2 + resolution: "string-argv@npm:0.3.2" + checksum: 10c0/75c02a83759ad1722e040b86823909d9a2fc75d15dd71ec4b537c3560746e33b5f5a07f7332d1e3f88319909f82190843aa2f0a0d8c8d591ec08e93d5b8dec82 + languageName: node + linkType: hard + +"string-length@npm:^4.0.1": + version: 4.0.2 + resolution: "string-length@npm:4.0.2" + dependencies: + char-regex: "npm:^1.0.2" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/1cd77409c3d7db7bc59406f6bcc9ef0783671dcbabb23597a1177c166906ef2ee7c8290f78cae73a8aec858768f189d2cb417797df5e15ec4eb5e16b3346340c + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: "npm:^8.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + strip-ansi: "npm:^6.0.1" + checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^9.2.2" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca + languageName: node + linkType: hard + +"string-width@npm:^7.0.0, string-width@npm:^7.2.0": + version: 7.2.0 + resolution: "string-width@npm:7.2.0" + dependencies: + emoji-regex: "npm:^10.3.0" + get-east-asian-width: "npm:^1.0.0" + strip-ansi: "npm:^7.1.0" + checksum: 10c0/eb0430dd43f3199c7a46dcbf7a0b34539c76fe3aa62763d0b0655acdcbdf360b3f66f3d58ca25ba0205f42ea3491fa00f09426d3b7d3040e506878fc7664c9b9 + languageName: node + linkType: hard + +"string.prototype.includes@npm:^2.0.1": + version: 2.0.1 + resolution: "string.prototype.includes@npm:2.0.1" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.3" + checksum: 10c0/25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5 + languageName: node + linkType: hard + +"string.prototype.matchall@npm:^4.0.12": + version: 4.0.12 + resolution: "string.prototype.matchall@npm:4.0.12" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.6" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.6" + gopd: "npm:^1.2.0" + has-symbols: "npm:^1.1.0" + internal-slot: "npm:^1.1.0" + regexp.prototype.flags: "npm:^1.5.3" + set-function-name: "npm:^2.0.2" + side-channel: "npm:^1.1.0" + checksum: 10c0/1a53328ada73f4a77f1fdf1c79414700cf718d0a8ef6672af5603e709d26a24f2181208144aed7e858b1bcc1a0d08567a570abfb45567db4ae47637ed2c2f85c + languageName: node + linkType: hard + +"string.prototype.repeat@npm:^1.0.0": + version: 1.0.0 + resolution: "string.prototype.repeat@npm:1.0.0" + dependencies: + define-properties: "npm:^1.1.3" + es-abstract: "npm:^1.17.5" + checksum: 10c0/94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40 + languageName: node + linkType: hard + +"string.prototype.trim@npm:^1.2.10": + version: 1.2.10 + resolution: "string.prototype.trim@npm:1.2.10" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.2" + define-data-property: "npm:^1.1.4" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.5" + es-object-atoms: "npm:^1.0.0" + has-property-descriptors: "npm:^1.0.2" + checksum: 10c0/8a8854241c4b54a948e992eb7dd6b8b3a97185112deb0037a134f5ba57541d8248dd610c966311887b6c2fd1181a3877bffb14d873ce937a344535dabcc648f8 + languageName: node + linkType: hard + +"string.prototype.trimend@npm:^1.0.8, string.prototype.trimend@npm:^1.0.9": + version: 1.0.9 + resolution: "string.prototype.trimend@npm:1.0.9" + dependencies: + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.2" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/59e1a70bf9414cb4c536a6e31bef5553c8ceb0cf44d8b4d0ed65c9653358d1c64dd0ec203b100df83d0413bbcde38b8c5d49e14bc4b86737d74adc593a0d35b6 + languageName: node + linkType: hard + +"string.prototype.trimstart@npm:^1.0.8": + version: 1.0.8 + resolution: "string.prototype.trimstart@npm:1.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 + languageName: node + linkType: hard + +"string_decoder@npm:^1.1.1": + version: 1.3.0 + resolution: "string_decoder@npm:1.3.0" + dependencies: + safe-buffer: "npm:~5.2.0" + checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d + languageName: node + linkType: hard + +"string_decoder@npm:~1.1.1": + version: 1.1.1 + resolution: "string_decoder@npm:1.1.1" + dependencies: + safe-buffer: "npm:~5.1.0" + checksum: 10c0/b4f89f3a92fd101b5653ca3c99550e07bdf9e13b35037e9e2a1c7b47cec4e55e06ff3fc468e314a0b5e80bfbaf65c1ca5a84978764884ae9413bec1fc6ca924e + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: "npm:^5.0.1" + checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": + version: 7.1.0 + resolution: "strip-ansi@npm:7.1.0" + dependencies: + ansi-regex: "npm:^6.0.1" + checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 + languageName: node + linkType: hard + +"strip-bom@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-bom@npm:3.0.0" + checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1 + languageName: node + linkType: hard + +"strip-bom@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-bom@npm:4.0.0" + checksum: 10c0/26abad1172d6bc48985ab9a5f96c21e440f6e7e476686de49be813b5a59b3566dccb5c525b831ec54fe348283b47f3ffb8e080bc3f965fde12e84df23f6bb7ef + languageName: node + linkType: hard + +"strip-final-newline@npm:^2.0.0": + version: 2.0.0 + resolution: "strip-final-newline@npm:2.0.0" + checksum: 10c0/bddf8ccd47acd85c0e09ad7375409d81653f645fda13227a9d459642277c253d877b68f2e5e4d819fe75733b0e626bac7e954c04f3236f6d196f79c94fa4a96f + languageName: node + linkType: hard + +"strip-final-newline@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-final-newline@npm:3.0.0" + checksum: 10c0/a771a17901427bac6293fd416db7577e2bc1c34a19d38351e9d5478c3c415f523f391003b42ed475f27e33a78233035df183525395f731d3bfb8cdcbd4da08ce + languageName: node + linkType: hard + +"strip-indent@npm:^3.0.0": + version: 3.0.0 + resolution: "strip-indent@npm:3.0.0" + dependencies: + min-indent: "npm:^1.0.0" + checksum: 10c0/ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679 + languageName: node + linkType: hard + +"strip-indent@npm:^4.0.0": + version: 4.0.0 + resolution: "strip-indent@npm:4.0.0" + dependencies: + min-indent: "npm:^1.0.1" + checksum: 10c0/6b1fb4e22056867f5c9e7a6f3f45922d9a2436cac758607d58aeaac0d3b16ec40b1c43317de7900f1b8dd7a4107352fa47fb960f2c23566538c51e8585c8870e + languageName: node + linkType: hard + +"strip-json-comments@npm:^3.1.1, strip-json-comments@npm:~3.1.1": + version: 3.1.1 + resolution: "strip-json-comments@npm:3.1.1" + checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd + languageName: node + linkType: hard + +"strip-json-comments@npm:~2.0.1": + version: 2.0.1 + resolution: "strip-json-comments@npm:2.0.1" + checksum: 10c0/b509231cbdee45064ff4f9fd73609e2bcc4e84a4d508e9dd0f31f70356473fde18abfb5838c17d56fb236f5a06b102ef115438de0600b749e818a35fbbc48c43 + languageName: node + linkType: hard + +"strip-literal@npm:^2.0.0": + version: 2.1.1 + resolution: "strip-literal@npm:2.1.1" + dependencies: + js-tokens: "npm:^9.0.1" + checksum: 10c0/66a7353f5ba1ae6a4fb2805b4aba228171847200640083117c41512692e6b2c020e18580402984f55c0ae69c30f857f9a55abd672863e4ca8fdb463fdf93ba19 + languageName: node + linkType: hard + +"stubborn-fs@npm:^1.2.5": + version: 1.2.5 + resolution: "stubborn-fs@npm:1.2.5" + checksum: 10c0/0676befd9901d4dd4e162700fa0396f11d523998589cd6b61b06d1021db811dc4c1e6713869748c6cfa49d58beb9b6f0dc5b6aca6b075811b949e1602ce1e26f + languageName: node + linkType: hard + +"style-to-js@npm:1.1.16": + version: 1.1.16 + resolution: "style-to-js@npm:1.1.16" + dependencies: + style-to-object: "npm:1.0.8" + checksum: 10c0/578a4dff804539ec7e64d3cc8d327540befb9ad30e3cd0b6b0392f93f793f3a028f90084a9aaff088bffb87818fa2c6c153f0df576f61f9ab0b0938b582bcac7 + languageName: node + linkType: hard + +"style-to-object@npm:1.0.8": + version: 1.0.8 + resolution: "style-to-object@npm:1.0.8" + dependencies: + inline-style-parser: "npm:0.2.4" + checksum: 10c0/daa6646b1ff18258c0ca33ed281fbe73485c8391192db1b56ce89d40c93ea64507a41e8701d0dadfe771bc2f540c46c9b295135f71584c8e5cb23d6a19be9430 + languageName: node + linkType: hard + +"styled-jsx@npm:5.1.1": + version: 5.1.1 + resolution: "styled-jsx@npm:5.1.1" + dependencies: + client-only: "npm:0.0.1" + peerDependencies: + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + peerDependenciesMeta: + "@babel/core": + optional: true + babel-plugin-macros: + optional: true + checksum: 10c0/42655cdadfa5388f8a48bb282d6b450df7d7b8cf066ac37038bd0499d3c9f084815ebd9ff9dfa12a218fd4441338851db79603498d7557207009c1cf4d609835 + languageName: node + linkType: hard + +"styled-jsx@npm:5.1.6": + version: 5.1.6 + resolution: "styled-jsx@npm:5.1.6" + dependencies: + client-only: "npm:0.0.1" + peerDependencies: + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + peerDependenciesMeta: + "@babel/core": + optional: true + babel-plugin-macros: + optional: true + checksum: 10c0/ace50e7ea5ae5ae6a3b65a50994c51fca6ae7df9c7ecfd0104c36be0b4b3a9c5c1a2374d16e2a11e256d0b20be6d47256d768ecb4f91ab390f60752a075780f5 + languageName: node + linkType: hard + +"stylus@npm:^0.62.0": + version: 0.62.0 + resolution: "stylus@npm:0.62.0" + dependencies: + "@adobe/css-tools": "npm:~4.3.1" + debug: "npm:^4.3.2" + glob: "npm:^7.1.6" + sax: "npm:~1.3.0" + source-map: "npm:^0.7.3" + bin: + stylus: bin/stylus + checksum: 10c0/62afe3a6d781f66d7d283e8218dc1a15530d7d89fc2f09457a723975b2073e96e0d32c61d7f0dd1bd2686aae4ab6cc6933dc85e1b72eebab8aa30167bd16962b + languageName: node + linkType: hard + +"supercluster@npm:^8.0.1": + version: 8.0.1 + resolution: "supercluster@npm:8.0.1" + dependencies: + kdbush: "npm:^4.0.2" + checksum: 10c0/79121e6dbff67b3036ea6651f3baddb942478830ba3ecbc27455715ab5bd269de8381dc04618c0c15963346ea2ed0f81cd5f767c2978a63e2841807c73445d57 + languageName: node + linkType: hard + +"superjson@npm:^2.2.1": + version: 2.2.2 + resolution: "superjson@npm:2.2.2" + dependencies: + copy-anything: "npm:^3.0.2" + checksum: 10c0/aa49ebe6653e963020bc6a1ed416d267dfda84cfcc3cbd3beffd75b72e44eb9df7327215f3e3e77528f6e19ad8895b16a4964fdcd56d1799d14350db8c92afbc + languageName: node + linkType: hard + +"supports-color@npm:^5.3.0": + version: 5.5.0 + resolution: "supports-color@npm:5.5.0" + dependencies: + has-flag: "npm:^3.0.0" + checksum: 10c0/6ae5ff319bfbb021f8a86da8ea1f8db52fac8bd4d499492e30ec17095b58af11f0c55f8577390a749b1c4dde691b6a0315dab78f5f54c9b3d83f8fb5905c1c05 + languageName: node + linkType: hard + +"supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 + languageName: node + linkType: hard + +"supports-color@npm:^8.0.0, supports-color@npm:^8.1.1, supports-color@npm:~8.1.1": + version: 8.1.1 + resolution: "supports-color@npm:8.1.1" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/ea1d3c275dd604c974670f63943ed9bd83623edc102430c05adb8efc56ba492746b6e95386e7831b872ec3807fd89dd8eb43f735195f37b5ec343e4234cc7e89 + languageName: node + linkType: hard + +"supports-preserve-symlinks-flag@npm:^1.0.0": + version: 1.0.0 + resolution: "supports-preserve-symlinks-flag@npm:1.0.0" + checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39 + languageName: node + linkType: hard + +"svg-parser@npm:^2.0.4": + version: 2.0.4 + resolution: "svg-parser@npm:2.0.4" + checksum: 10c0/02f6cb155dd7b63ebc2f44f36365bc294543bebb81b614b7628f1af3c54ab64f7e1cec20f06e252bf95bdde78441ae295a412c68ad1678f16a6907d924512b7a + languageName: node + linkType: hard + +"svgo@npm:^3.0.2": + version: 3.3.2 + resolution: "svgo@npm:3.3.2" + dependencies: + "@trysound/sax": "npm:0.2.0" + commander: "npm:^7.2.0" + css-select: "npm:^5.1.0" + css-tree: "npm:^2.3.1" + css-what: "npm:^6.1.0" + csso: "npm:^5.0.5" + picocolors: "npm:^1.0.0" + bin: + svgo: ./bin/svgo + checksum: 10c0/a6badbd3d1d6dbb177f872787699ab34320b990d12e20798ecae915f0008796a0f3c69164f1485c9def399e0ce0a5683eb4a8045e51a5e1c364bb13a0d9f79e1 + languageName: node + linkType: hard + +"symbol-tree@npm:^3.2.4": + version: 3.2.4 + resolution: "symbol-tree@npm:3.2.4" + checksum: 10c0/dfbe201ae09ac6053d163578778c53aa860a784147ecf95705de0cd23f42c851e1be7889241495e95c37cabb058edb1052f141387bef68f705afc8f9dd358509 + languageName: node + linkType: hard + +"table-layout@npm:^1.0.2, table-layout@npm:~1.0.0": + version: 1.0.2 + resolution: "table-layout@npm:1.0.2" + dependencies: + array-back: "npm:^4.0.1" + deep-extend: "npm:~0.6.0" + typical: "npm:^5.2.0" + wordwrapjs: "npm:^4.0.0" + checksum: 10c0/c1d16d5ba2199571606ff574a5c91cff77f14e8477746e191e7dfd294da03e61af4e8004f1f6f783da9582e1365f38d3c469980428998750d558bf29462cc6c3 + languageName: node + linkType: hard + +"tapable@npm:^2.2.0": + version: 2.2.1 + resolution: "tapable@npm:2.2.1" + checksum: 10c0/bc40e6efe1e554d075469cedaba69a30eeb373552aaf41caeaaa45bf56ffacc2674261b106245bd566b35d8f3329b52d838e851ee0a852120acae26e622925c9 + languageName: node + linkType: hard + +"tar-fs@npm:2.1.1": + version: 2.1.1 + resolution: "tar-fs@npm:2.1.1" + dependencies: + chownr: "npm:^1.1.1" + mkdirp-classic: "npm:^0.5.2" + pump: "npm:^3.0.0" + tar-stream: "npm:^2.1.4" + checksum: 10c0/871d26a934bfb7beeae4c4d8a09689f530b565f79bd0cf489823ff0efa3705da01278160da10bb006d1a793fa0425cf316cec029b32a9159eacbeaff4965fb6d + languageName: node + linkType: hard + +"tar-stream@npm:^2.1.4": + version: 2.2.0 + resolution: "tar-stream@npm:2.2.0" + dependencies: + bl: "npm:^4.0.3" + end-of-stream: "npm:^1.4.1" + fs-constants: "npm:^1.0.0" + inherits: "npm:^2.0.3" + readable-stream: "npm:^3.1.1" + checksum: 10c0/2f4c910b3ee7196502e1ff015a7ba321ec6ea837667220d7bcb8d0852d51cb04b87f7ae471008a6fb8f5b1a1b5078f62f3a82d30c706f20ada1238ac797e7692 + languageName: node + linkType: hard + +"tar@npm:^7.4.3": + version: 7.4.3 + resolution: "tar@npm:7.4.3" + dependencies: + "@isaacs/fs-minipass": "npm:^4.0.0" + chownr: "npm:^3.0.0" + minipass: "npm:^7.1.2" + minizlib: "npm:^3.0.1" + mkdirp: "npm:^3.0.1" + yallist: "npm:^5.0.0" + checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d + languageName: node + linkType: hard + +"telejson@npm:^7.2.0": + version: 7.2.0 + resolution: "telejson@npm:7.2.0" + dependencies: + memoizerific: "npm:^1.11.3" + checksum: 10c0/d26e6cc93e54bfdcdb207b49905508c5db45862e811a2e2193a735409e47b14530e1c19351618a3e03ad2fd4ffc3759364fcd72851aba2df0300fab574b6151c + languageName: node + linkType: hard + +"test-exclude@npm:^6.0.0": + version: 6.0.0 + resolution: "test-exclude@npm:6.0.0" + dependencies: + "@istanbuljs/schema": "npm:^0.1.2" + glob: "npm:^7.1.4" + minimatch: "npm:^3.0.4" + checksum: 10c0/019d33d81adff3f9f1bfcff18125fb2d3c65564f437d9be539270ee74b994986abb8260c7c2ce90e8f30162178b09dbbce33c6389273afac4f36069c48521f57 + languageName: node + linkType: hard + +"text-table@npm:^0.2.0": + version: 0.2.0 + resolution: "text-table@npm:0.2.0" + checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c + languageName: node + linkType: hard + +"thenify-all@npm:^1.0.0": + version: 1.6.0 + resolution: "thenify-all@npm:1.6.0" + dependencies: + thenify: "npm:>= 3.1.0 < 4" + checksum: 10c0/9b896a22735e8122754fe70f1d65f7ee691c1d70b1f116fda04fea103d0f9b356e3676cb789506e3909ae0486a79a476e4914b0f92472c2e093d206aed4b7d6b + languageName: node + linkType: hard + +"thenify@npm:>= 3.1.0 < 4": + version: 3.3.1 + resolution: "thenify@npm:3.3.1" + dependencies: + any-promise: "npm:^1.0.0" + checksum: 10c0/f375aeb2b05c100a456a30bc3ed07ef03a39cbdefe02e0403fb714b8c7e57eeaad1a2f5c4ecfb9ce554ce3db9c2b024eba144843cd9e344566d9fcee73b04767 + languageName: node + linkType: hard + +"throttleit@npm:^1.0.0": + version: 1.0.1 + resolution: "throttleit@npm:1.0.1" + checksum: 10c0/4d41a1bf467646b1aa7bec0123b78452a0e302d7344f6a67e43e68434f0a02ea3ba44df050a40c69adeb9cae3cbf6b36b38cfe94bcc3c4a8243c9b63e38e059b + languageName: node + linkType: hard + +"through@npm:2, through@npm:>=2.2.7 <3, through@npm:^2.3.8, through@npm:~2.3, through@npm:~2.3.1": + version: 2.3.8 + resolution: "through@npm:2.3.8" + checksum: 10c0/4b09f3774099de0d4df26d95c5821a62faee32c7e96fb1f4ebd54a2d7c11c57fe88b0a0d49cf375de5fee5ae6bf4eb56dbbf29d07366864e2ee805349970d3cc + languageName: node + linkType: hard + +"tiny-case@npm:^1.0.3": + version: 1.0.3 + resolution: "tiny-case@npm:1.0.3" + checksum: 10c0/c0cbed35884a322265e2cd61ff435168d1ea523f88bf3864ce14a238ae9169e732649776964283a66e4eb882e655992081d4daf8c865042e2233425866111b35 + languageName: node + linkType: hard + +"tiny-invariant@npm:^1.3.1, tiny-invariant@npm:^1.3.3": + version: 1.3.3 + resolution: "tiny-invariant@npm:1.3.3" + checksum: 10c0/65af4a07324b591a059b35269cd696aba21bef2107f29b9f5894d83cc143159a204b299553435b03874ebb5b94d019afa8b8eff241c8a4cfee95872c2e1c1c4a + languageName: node + linkType: hard + +"tinybench@npm:^2.5.1": + version: 2.9.0 + resolution: "tinybench@npm:2.9.0" + checksum: 10c0/c3500b0f60d2eb8db65250afe750b66d51623057ee88720b7f064894a6cb7eb93360ca824a60a31ab16dab30c7b1f06efe0795b352e37914a9d4bad86386a20c + languageName: node + linkType: hard + +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.9": + version: 0.2.12 + resolution: "tinyglobby@npm:0.2.12" + dependencies: + fdir: "npm:^6.4.3" + picomatch: "npm:^4.0.2" + checksum: 10c0/7c9be4fd3625630e262dcb19015302aad3b4ba7fc620f269313e688f2161ea8724d6cb4444baab5ef2826eb6bed72647b169a33ec8eea37501832a2526ff540f + languageName: node + linkType: hard + +"tinypool@npm:^0.8.3": + version: 0.8.4 + resolution: "tinypool@npm:0.8.4" + checksum: 10c0/779c790adcb0316a45359652f4b025958c1dff5a82460fe49f553c864309b12ad732c8288be52f852973bc76317f5e7b3598878aee0beb8a33322c0e72c4a66c + languageName: node + linkType: hard + +"tinyrainbow@npm:^1.2.0": + version: 1.2.0 + resolution: "tinyrainbow@npm:1.2.0" + checksum: 10c0/7f78a4b997e5ba0f5ecb75e7ed786f30bab9063716e7dff24dd84013fb338802e43d176cb21ed12480561f5649a82184cf31efb296601a29d38145b1cdb4c192 + languageName: node + linkType: hard + +"tinyspy@npm:^2.2.0": + version: 2.2.1 + resolution: "tinyspy@npm:2.2.1" + checksum: 10c0/0b4cfd07c09871e12c592dfa7b91528124dc49a4766a0b23350638c62e6a483d5a2a667de7e6282246c0d4f09996482ddaacbd01f0c05b7ed7e0f79d32409bdc + languageName: node + linkType: hard + +"tinyspy@npm:^3.0.0": + version: 3.0.2 + resolution: "tinyspy@npm:3.0.2" + checksum: 10c0/55ffad24e346622b59292e097c2ee30a63919d5acb7ceca87fc0d1c223090089890587b426e20054733f97a58f20af2c349fb7cc193697203868ab7ba00bcea0 + languageName: node + linkType: hard + +"tldts-core@npm:^6.1.78": + version: 6.1.78 + resolution: "tldts-core@npm:6.1.78" + checksum: 10c0/aea5e664da879cd862ccf5df9286531ddf4c34a9ca832480188bf6cd165cd45654f5b0a0f0f5315e16203ebfb87d52f8630b9419e729b3cfe5eff073c398693e + languageName: node + linkType: hard + +"tldts@npm:^6.1.32": + version: 6.1.78 + resolution: "tldts@npm:6.1.78" + dependencies: + tldts-core: "npm:^6.1.78" + bin: + tldts: bin/cli.js + checksum: 10c0/966f3f5a63405db6abb49b479784baa677510993f21ffbd67571f3d819451d70a603f1246b13f1c309a7573c4d9fbe0241aca6ff6e8399cbe7d2dd70b7ee4052 + languageName: node + linkType: hard + +"tmp@npm:^0.0.33": + version: 0.0.33 + resolution: "tmp@npm:0.0.33" + dependencies: + os-tmpdir: "npm:~1.0.2" + checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408 + languageName: node + linkType: hard + +"tmp@npm:~0.2.3": + version: 0.2.3 + resolution: "tmp@npm:0.2.3" + checksum: 10c0/3e809d9c2f46817475b452725c2aaa5d11985cf18d32a7a970ff25b568438e2c076c2e8609224feef3b7923fa9749b74428e3e634f6b8e520c534eef2fd24125 + languageName: node + linkType: hard + +"tmpl@npm:1.0.5": + version: 1.0.5 + resolution: "tmpl@npm:1.0.5" + checksum: 10c0/f935537799c2d1922cb5d6d3805f594388f75338fe7a4a9dac41504dd539704ca4db45b883b52e7b0aa5b2fd5ddadb1452bf95cd23a69da2f793a843f9451cc9 + languageName: node + linkType: hard + +"to-readable-stream@npm:^2.0.0": + version: 2.1.0 + resolution: "to-readable-stream@npm:2.1.0" + checksum: 10c0/c0d7269a5232a4c4d254073478a7bfdc302f955999d3afbd417af15cbdf98aeacbc66318957426bbe5b84b681e4d0eba4be640bed6c1ee8cf705f500d4521289 + languageName: node + linkType: hard + +"to-regex-range@npm:^5.0.1": + version: 5.0.1 + resolution: "to-regex-range@npm:5.0.1" + dependencies: + is-number: "npm:^7.0.0" + checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892 + languageName: node + linkType: hard + +"toidentifier@npm:1.0.1": + version: 1.0.1 + resolution: "toidentifier@npm:1.0.1" + checksum: 10c0/93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 + languageName: node + linkType: hard + +"toposort@npm:^2.0.2": + version: 2.0.2 + resolution: "toposort@npm:2.0.2" + checksum: 10c0/ab9ca91fce4b972ccae9e2f539d755bf799a0c7eb60da07fd985fce0f14c159ed1e92305ff55697693b5bc13e300f5417db90e2593b127d421c9f6c440950222 + languageName: node + linkType: hard + +"tough-cookie@npm:^4.1.2": + version: 4.1.4 + resolution: "tough-cookie@npm:4.1.4" + dependencies: + psl: "npm:^1.1.33" + punycode: "npm:^2.1.1" + universalify: "npm:^0.2.0" + url-parse: "npm:^1.5.3" + checksum: 10c0/aca7ff96054f367d53d1e813e62ceb7dd2eda25d7752058a74d64b7266fd07be75908f3753a32ccf866a2f997604b414cfb1916d6e7f69bc64d9d9939b0d6c45 + languageName: node + linkType: hard + +"tough-cookie@npm:^5.0.0": + version: 5.1.1 + resolution: "tough-cookie@npm:5.1.1" + dependencies: + tldts: "npm:^6.1.32" + checksum: 10c0/84fe18b7c28ce273c916d95028c00ffff58c285d58e90fbd44eb9380dd1bc21892c675cd1bbd4bfbc95108fe833c406b285844757d41636248bfe264655a6ef8 + languageName: node + linkType: hard + +"tr46@npm:^3.0.0": + version: 3.0.0 + resolution: "tr46@npm:3.0.0" + dependencies: + punycode: "npm:^2.1.1" + checksum: 10c0/cdc47cad3a9d0b6cb293e39ccb1066695ae6fdd39b9e4f351b010835a1f8b4f3a6dc3a55e896b421371187f22b48d7dac1b693de4f6551bdef7b6ab6735dfe3b + languageName: node + linkType: hard + +"tr46@npm:~0.0.3": + version: 0.0.3 + resolution: "tr46@npm:0.0.3" + checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11 + languageName: node + linkType: hard + +"tree-kill@npm:1.2.2": + version: 1.2.2 + resolution: "tree-kill@npm:1.2.2" + bin: + tree-kill: cli.js + checksum: 10c0/7b1b7c7f17608a8f8d20a162e7957ac1ef6cd1636db1aba92f4e072dc31818c2ff0efac1e3d91064ede67ed5dc57c565420531a8134090a12ac10cf792ab14d2 + languageName: node + linkType: hard + +"ts-api-utils@npm:^1.0.1": + version: 1.4.3 + resolution: "ts-api-utils@npm:1.4.3" + peerDependencies: + typescript: ">=4.2.0" + checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a + languageName: node + linkType: hard + +"ts-api-utils@npm:^2.0.1": + version: 2.0.1 + resolution: "ts-api-utils@npm:2.0.1" + peerDependencies: + typescript: ">=4.8.4" + checksum: 10c0/23fd56a958b332cac00150a652e4c84730df30571bd2faa1ba6d7b511356d1a61656621492bb6c7f15dd6e18847a1408357a0e406671d358115369a17f5bfedd + languageName: node + linkType: hard + +"ts-dedent@npm:^2.0.0, ts-dedent@npm:^2.2.0": + version: 2.2.0 + resolution: "ts-dedent@npm:2.2.0" + checksum: 10c0/175adea838468cc2ff7d5e97f970dcb798bbcb623f29c6088cb21aa2880d207c5784be81ab1741f56b9ac37840cbaba0c0d79f7f8b67ffe61c02634cafa5c303 + languageName: node + linkType: hard + +"ts-node@npm:^10.9.2": + version: 10.9.2 + resolution: "ts-node@npm:10.9.2" + dependencies: + "@cspotcode/source-map-support": "npm:^0.8.0" + "@tsconfig/node10": "npm:^1.0.7" + "@tsconfig/node12": "npm:^1.0.7" + "@tsconfig/node14": "npm:^1.0.0" + "@tsconfig/node16": "npm:^1.0.2" + acorn: "npm:^8.4.1" + acorn-walk: "npm:^8.1.1" + arg: "npm:^4.1.0" + create-require: "npm:^1.1.0" + diff: "npm:^4.0.1" + make-error: "npm:^1.1.1" + v8-compile-cache-lib: "npm:^3.0.1" + yn: "npm:3.1.1" + peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true + bin: + ts-node: dist/bin.js + ts-node-cwd: dist/bin-cwd.js + ts-node-esm: dist/bin-esm.js + ts-node-script: dist/bin-script.js + ts-node-transpile-only: dist/bin-transpile.js + ts-script: dist/bin-script-deprecated.js + checksum: 10c0/5f29938489f96982a25ba650b64218e83a3357d76f7bede80195c65ab44ad279c8357264639b7abdd5d7e75fc269a83daa0e9c62fd8637a3def67254ecc9ddc2 + languageName: node + linkType: hard + +"tsconfig-paths@npm:^3.15.0": + version: 3.15.0 + resolution: "tsconfig-paths@npm:3.15.0" + dependencies: + "@types/json5": "npm:^0.0.29" + json5: "npm:^1.0.2" + minimist: "npm:^1.2.6" + strip-bom: "npm:^3.0.0" + checksum: 10c0/5b4f301a2b7a3766a986baf8fc0e177eb80bdba6e396792ff92dc23b5bca8bb279fc96517dcaaef63a3b49bebc6c4c833653ec58155780bc906bdbcf7dda0ef5 + languageName: node + linkType: hard + +"tsconfig-paths@npm:^4.2.0": + version: 4.2.0 + resolution: "tsconfig-paths@npm:4.2.0" + dependencies: + json5: "npm:^2.2.2" + minimist: "npm:^1.2.6" + strip-bom: "npm:^3.0.0" + checksum: 10c0/09a5877402d082bb1134930c10249edeebc0211f36150c35e1c542e5b91f1047b1ccf7da1e59babca1ef1f014c525510f4f870de7c9bda470c73bb4e2721b3ea + languageName: node + linkType: hard + +"tslib@npm:2, tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.8.0, tslib@npm:^2.8.1": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 + languageName: node + linkType: hard + +"tslib@npm:^1.8.1": + version: 1.14.1 + resolution: "tslib@npm:1.14.1" + checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 + languageName: node + linkType: hard + +"tsscmp@npm:1.0.6": + version: 1.0.6 + resolution: "tsscmp@npm:1.0.6" + checksum: 10c0/2f79a9455e7e3e8071995f98cdf3487ccfc91b760bec21a9abb4d90519557eafaa37246e87c92fa8bf3fef8fd30cfd0cc3c4212bb929baa9fb62494bfa4d24b2 + languageName: node + linkType: hard + +"tsutils@npm:^3.21.0": + version: 3.21.0 + resolution: "tsutils@npm:3.21.0" + dependencies: + tslib: "npm:^1.8.1" + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + checksum: 10c0/02f19e458ec78ead8fffbf711f834ad8ecd2cc6ade4ec0320790713dccc0a412b99e7fd907c4cda2a1dc602c75db6f12e0108e87a5afad4b2f9e90a24cabd5a2 + languageName: node + linkType: hard + +"tunnel-agent@npm:^0.6.0": + version: 0.6.0 + resolution: "tunnel-agent@npm:0.6.0" + dependencies: + safe-buffer: "npm:^5.0.1" + checksum: 10c0/4c7a1b813e7beae66fdbf567a65ec6d46313643753d0beefb3c7973d66fcec3a1e7f39759f0a0b4465883499c6dc8b0750ab8b287399af2e583823e40410a17a + languageName: node + linkType: hard + +"tween-functions@npm:^1.2.0": + version: 1.2.0 + resolution: "tween-functions@npm:1.2.0" + checksum: 10c0/7e59295b8b0ee4132ed2fe335f56a9db5c87056dad6b6fd3011be72239fd20398003ddb4403bc98ad9f5c94468890830f64016edbbde35581faf95b32cda8305 + languageName: node + linkType: hard + +"tweetnacl@npm:^0.14.3, tweetnacl@npm:~0.14.0": + version: 0.14.5 + resolution: "tweetnacl@npm:0.14.5" + checksum: 10c0/4612772653512c7bc19e61923fbf42903f5e0389ec76a4a1f17195859d114671ea4aa3b734c2029ce7e1fa7e5cc8b80580f67b071ecf0b46b5636d030a0102a2 + languageName: node + linkType: hard + +"type-check@npm:^0.4.0, type-check@npm:~0.4.0": + version: 0.4.0 + resolution: "type-check@npm:0.4.0" + dependencies: + prelude-ls: "npm:^1.2.1" + checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 + languageName: node + linkType: hard + +"type-detect@npm:4.0.8": + version: 4.0.8 + resolution: "type-detect@npm:4.0.8" + checksum: 10c0/8fb9a51d3f365a7de84ab7f73b653534b61b622aa6800aecdb0f1095a4a646d3f5eb295322127b6573db7982afcd40ab492d038cf825a42093a58b1e1353e0bd + languageName: node + linkType: hard + +"type-detect@npm:^4.0.0, type-detect@npm:^4.1.0": + version: 4.1.0 + resolution: "type-detect@npm:4.1.0" + checksum: 10c0/df8157ca3f5d311edc22885abc134e18ff8ffbc93d6a9848af5b682730ca6a5a44499259750197250479c5331a8a75b5537529df5ec410622041650a7f293e2a + languageName: node + linkType: hard + +"type-fest@npm:^0.10.0": + version: 0.10.0 + resolution: "type-fest@npm:0.10.0" + checksum: 10c0/6c079d80dce172b4c182238c46add55e77549b9e2a360f08d291f64c2eb5bc72aa955a10389cd55bac0da9464044c9f7317069c8b9ce7557c18b5007874fd5fb + languageName: node + linkType: hard + +"type-fest@npm:^0.20.2": + version: 0.20.2 + resolution: "type-fest@npm:0.20.2" + checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 + languageName: node + linkType: hard + +"type-fest@npm:^0.21.3": + version: 0.21.3 + resolution: "type-fest@npm:0.21.3" + checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 + languageName: node + linkType: hard + +"type-fest@npm:^0.6.0": + version: 0.6.0 + resolution: "type-fest@npm:0.6.0" + checksum: 10c0/0c585c26416fce9ecb5691873a1301b5aff54673c7999b6f925691ed01f5b9232db408cdbb0bd003d19f5ae284322523f44092d1f81ca0a48f11f7cf0be8cd38 + languageName: node + linkType: hard + +"type-fest@npm:^0.7.1": + version: 0.7.1 + resolution: "type-fest@npm:0.7.1" + checksum: 10c0/ce6b5ef806a76bf08d0daa78d65e61f24d9a0380bd1f1df36ffb61f84d14a0985c3a921923cf4b97831278cb6fa9bf1b89c751df09407e0510b14e8c081e4e0f + languageName: node + linkType: hard + +"type-fest@npm:^0.8.1": + version: 0.8.1 + resolution: "type-fest@npm:0.8.1" + checksum: 10c0/dffbb99329da2aa840f506d376c863bd55f5636f4741ad6e65e82f5ce47e6914108f44f340a0b74009b0cb5d09d6752ae83203e53e98b1192cf80ecee5651636 + languageName: node + linkType: hard + +"type-fest@npm:^2.19.0": + version: 2.19.0 + resolution: "type-fest@npm:2.19.0" + checksum: 10c0/a5a7ecf2e654251613218c215c7493574594951c08e52ab9881c9df6a6da0aeca7528c213c622bc374b4e0cb5c443aa3ab758da4e3c959783ce884c3194e12cb + languageName: node + linkType: hard + +"type-fest@npm:^4.18.2, type-fest@npm:^4.21.0": + version: 4.35.0 + resolution: "type-fest@npm:4.35.0" + checksum: 10c0/7032a8a940c33d45947a4ff0f74e3aa43b6fd8bb4745b32bba8e61ee47c0dd088cacd102f8377e9e889362e1ae8e0292b64a4c0698c1e42fd297bf6f8899d220 + languageName: node + linkType: hard + +"type-is@npm:^1.6.16, type-is@npm:^1.6.18": + version: 1.6.18 + resolution: "type-is@npm:1.6.18" + dependencies: + media-typer: "npm:0.3.0" + mime-types: "npm:~2.1.24" + checksum: 10c0/a23daeb538591b7efbd61ecf06b6feb2501b683ffdc9a19c74ef5baba362b4347e42f1b4ed81f5882a8c96a3bfff7f93ce3ffaf0cbbc879b532b04c97a55db9d + languageName: node + linkType: hard + +"typed-array-buffer@npm:^1.0.3": + version: 1.0.3 + resolution: "typed-array-buffer@npm:1.0.3" + dependencies: + call-bound: "npm:^1.0.3" + es-errors: "npm:^1.3.0" + is-typed-array: "npm:^1.1.14" + checksum: 10c0/1105071756eb248774bc71646bfe45b682efcad93b55532c6ffa4518969fb6241354e4aa62af679ae83899ec296d69ef88f1f3763657cdb3a4d29321f7b83079 + languageName: node + linkType: hard + +"typed-array-byte-length@npm:^1.0.3": + version: 1.0.3 + resolution: "typed-array-byte-length@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.8" + for-each: "npm:^0.3.3" + gopd: "npm:^1.2.0" + has-proto: "npm:^1.2.0" + is-typed-array: "npm:^1.1.14" + checksum: 10c0/6ae083c6f0354f1fce18b90b243343b9982affd8d839c57bbd2c174a5d5dc71be9eb7019ffd12628a96a4815e7afa85d718d6f1e758615151d5f35df841ffb3e + languageName: node + linkType: hard + +"typed-array-byte-offset@npm:^1.0.4": + version: 1.0.4 + resolution: "typed-array-byte-offset@npm:1.0.4" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.8" + for-each: "npm:^0.3.3" + gopd: "npm:^1.2.0" + has-proto: "npm:^1.2.0" + is-typed-array: "npm:^1.1.15" + reflect.getprototypeof: "npm:^1.0.9" + checksum: 10c0/3d805b050c0c33b51719ee52de17c1cd8e6a571abdf0fffb110e45e8dd87a657e8b56eee94b776b13006d3d347a0c18a730b903cf05293ab6d92e99ff8f77e53 + languageName: node + linkType: hard + +"typed-array-length@npm:^1.0.7": + version: 1.0.7 + resolution: "typed-array-length@npm:1.0.7" + dependencies: + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + is-typed-array: "npm:^1.1.13" + possible-typed-array-names: "npm:^1.0.0" + reflect.getprototypeof: "npm:^1.0.6" + checksum: 10c0/e38f2ae3779584c138a2d8adfa8ecf749f494af3cd3cdafe4e688ce51418c7d2c5c88df1bd6be2bbea099c3f7cea58c02ca02ed438119e91f162a9de23f61295 + languageName: node + linkType: hard + +"typedescriptor@npm:3.0.2": + version: 3.0.2 + resolution: "typedescriptor@npm:3.0.2" + checksum: 10c0/7e3daf4857ad2f03e8fbbe3683b219c80183637d3f849a52ff8246f0b6e852ca46f9f6d6c2c05c7fa8fe895afc7c07c2a071a25049a4ce26bd2eed1e00935465 + languageName: node + linkType: hard + +"typescript-plugin-css-modules@npm:^5.1.0": + version: 5.1.0 + resolution: "typescript-plugin-css-modules@npm:5.1.0" + dependencies: + "@types/postcss-modules-local-by-default": "npm:^4.0.2" + "@types/postcss-modules-scope": "npm:^3.0.4" + dotenv: "npm:^16.4.2" + icss-utils: "npm:^5.1.0" + less: "npm:^4.2.0" + lodash.camelcase: "npm:^4.3.0" + postcss: "npm:^8.4.35" + postcss-load-config: "npm:^3.1.4" + postcss-modules-extract-imports: "npm:^3.0.0" + postcss-modules-local-by-default: "npm:^4.0.4" + postcss-modules-scope: "npm:^3.1.1" + reserved-words: "npm:^0.1.2" + sass: "npm:^1.70.0" + source-map-js: "npm:^1.0.2" + stylus: "npm:^0.62.0" + tsconfig-paths: "npm:^4.2.0" + peerDependencies: + typescript: ">=4.0.0" + checksum: 10c0/a578e9055d015e932e1d42c5329d80d44d7dcaca5990c1d32aed62ea3d7ba49424f18c60cc654e96d1865e509f929359a9e571330ea2f5a7be7c1dd79e25ead3 + languageName: node + linkType: hard + +"typescript@npm:5.4.2": + version: 5.4.2 + resolution: "typescript@npm:5.4.2" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/583ff68cafb0c076695f72d61df6feee71689568179fb0d3a4834dac343df6b6ed7cf7b6f6c801fa52d43cd1d324e2f2d8ae4497b09f9e6cfe3d80a6d6c9ca52 + languageName: node + linkType: hard + +"typescript@npm:5.4.5": + version: 5.4.5 + resolution: "typescript@npm:5.4.5" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/2954022ada340fd3d6a9e2b8e534f65d57c92d5f3989a263754a78aba549f7e6529acc1921913560a4b816c46dce7df4a4d29f9f11a3dc0d4213bb76d043251e + languageName: node + linkType: hard + +"typescript@npm:^5.2.2": + version: 5.7.3 + resolution: "typescript@npm:5.7.3" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/b7580d716cf1824736cc6e628ab4cd8b51877408ba2be0869d2866da35ef8366dd6ae9eb9d0851470a39be17cbd61df1126f9e211d8799d764ea7431d5435afa + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A5.4.2#optional!builtin": + version: 5.4.2 + resolution: "typescript@patch:typescript@npm%3A5.4.2#optional!builtin::version=5.4.2&hash=5adc0c" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/fcf6658073d07283910d9a0e04b1d5d0ebc822c04dbb7abdd74c3151c7aa92fcddbac7d799404e358197222006ccdc4c0db219d223d2ee4ccd9e2b01333b49be + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A5.4.5#optional!builtin": + version: 5.4.5 + resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin::version=5.4.5&hash=5adc0c" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/db2ad2a16ca829f50427eeb1da155e7a45e598eec7b086d8b4e8ba44e5a235f758e606d681c66992230d3fc3b8995865e5fd0b22a2c95486d0b3200f83072ec9 + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A^5.2.2#optional!builtin": + version: 5.7.3 + resolution: "typescript@patch:typescript@npm%3A5.7.3#optional!builtin::version=5.7.3&hash=cef18b" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/3b56d6afa03d9f6172d0b9cdb10e6b1efc9abc1608efd7a3d2f38773d5d8cfb9bbc68dfb72f0a7de5e8db04fc847f4e4baeddcd5ad9c9feda072234f0d788896 + languageName: node + linkType: hard + +"typical@npm:^4.0.0": + version: 4.0.0 + resolution: "typical@npm:4.0.0" + checksum: 10c0/f300b198fb9fe743859b75ec761d53c382723dc178bbce4957d9cb754f2878a44ce17dc0b6a5156c52be1065449271f63754ba594dac225b80ce3aa39f9241ed + languageName: node + linkType: hard + +"typical@npm:^5.2.0": + version: 5.2.0 + resolution: "typical@npm:5.2.0" + checksum: 10c0/1cceaa20d4b77a02ab8eccfe4a20500729431aecc1e1b7dc70c0e726e7966efdca3bf0b4bee285555b751647e37818fd99154ea73f74b5c29adc95d3c13f5973 + languageName: node + linkType: hard + +"typical@npm:^6.0.0": + version: 6.0.1 + resolution: "typical@npm:6.0.1" + checksum: 10c0/a04004a2153108703cae64e634bb2a868d3990451b98e330d67a0f039718d992d5921ff6ca2cd066a2f27e2fb964e361e90d4206fa76f667fc158b2158a3d5a5 + languageName: node + linkType: hard + +"ufo@npm:^1.5.4": + version: 1.5.4 + resolution: "ufo@npm:1.5.4" + checksum: 10c0/b5dc4dc435c49c9ef8890f1b280a19ee4d0954d1d6f9ab66ce62ce64dd04c7be476781531f952a07c678d51638d02ad4b98e16237be29149295b0f7c09cda765 + languageName: node + linkType: hard + +"uglify-js@npm:^3.1.4": + version: 3.19.3 + resolution: "uglify-js@npm:3.19.3" + bin: + uglifyjs: bin/uglifyjs + checksum: 10c0/83b0a90eca35f778e07cad9622b80c448b6aad457c9ff8e568afed978212b42930a95f9e1be943a1ffa4258a3340fbb899f41461131c05bb1d0a9c303aed8479 + languageName: node + linkType: hard + +"unbox-primitive@npm:^1.1.0": + version: 1.1.0 + resolution: "unbox-primitive@npm:1.1.0" + dependencies: + call-bound: "npm:^1.0.3" + has-bigints: "npm:^1.0.2" + has-symbols: "npm:^1.1.0" + which-boxed-primitive: "npm:^1.1.1" + checksum: 10c0/7dbd35ab02b0e05fe07136c72cb9355091242455473ec15057c11430129bab38b7b3624019b8778d02a881c13de44d63cd02d122ee782fb519e1de7775b5b982 + languageName: node + linkType: hard + +"unbzip2-stream@npm:1.4.3": + version: 1.4.3 + resolution: "unbzip2-stream@npm:1.4.3" + dependencies: + buffer: "npm:^5.2.1" + through: "npm:^2.3.8" + checksum: 10c0/2ea2048f3c9db3499316ccc1d95ff757017ccb6f46c812d7c42466247e3b863fb178864267482f7f178254214247779daf68e85f50bd7736c3c97ba2d58b910a + languageName: node + linkType: hard + +"undici-types@npm:~5.26.4": + version: 5.26.5 + resolution: "undici-types@npm:5.26.5" + checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501 + languageName: node + linkType: hard + +"undici-types@npm:~6.19.2": + version: 6.19.8 + resolution: "undici-types@npm:6.19.8" + checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344 + languageName: node + linkType: hard + +"undici-types@npm:~6.20.0": + version: 6.20.0 + resolution: "undici-types@npm:6.20.0" + checksum: 10c0/68e659a98898d6a836a9a59e6adf14a5d799707f5ea629433e025ac90d239f75e408e2e5ff086afc3cace26f8b26ee52155293564593fbb4a2f666af57fc59bf + languageName: node + linkType: hard + +"unicode-canonical-property-names-ecmascript@npm:^2.0.0": + version: 2.0.1 + resolution: "unicode-canonical-property-names-ecmascript@npm:2.0.1" + checksum: 10c0/f83bc492fdbe662860795ef37a85910944df7310cac91bd778f1c19ebc911e8b9cde84e703de631e5a2fcca3905e39896f8fc5fc6a44ddaf7f4aff1cda24f381 + languageName: node + linkType: hard + +"unicode-match-property-ecmascript@npm:^2.0.0": + version: 2.0.0 + resolution: "unicode-match-property-ecmascript@npm:2.0.0" + dependencies: + unicode-canonical-property-names-ecmascript: "npm:^2.0.0" + unicode-property-aliases-ecmascript: "npm:^2.0.0" + checksum: 10c0/4d05252cecaf5c8e36d78dc5332e03b334c6242faf7cf16b3658525441386c0a03b5f603d42cbec0f09bb63b9fd25c9b3b09667aee75463cac3efadae2cd17ec + languageName: node + linkType: hard + +"unicode-match-property-value-ecmascript@npm:^2.1.0": + version: 2.2.0 + resolution: "unicode-match-property-value-ecmascript@npm:2.2.0" + checksum: 10c0/1d0a2deefd97974ddff5b7cb84f9884177f4489928dfcebb4b2b091d6124f2739df51fc6ea15958e1b5637ac2a24cff9bf21ea81e45335086ac52c0b4c717d6d + languageName: node + linkType: hard + +"unicode-property-aliases-ecmascript@npm:^2.0.0": + version: 2.1.0 + resolution: "unicode-property-aliases-ecmascript@npm:2.1.0" + checksum: 10c0/50ded3f8c963c7785e48c510a3b7c6bc4e08a579551489aa0349680a35b1ceceec122e33b2b6c1b579d0be2250f34bb163ac35f5f8695fe10bbc67fb757f0af8 + languageName: node + linkType: hard + +"unicorn-magic@npm:^0.3.0": + version: 0.3.0 + resolution: "unicorn-magic@npm:0.3.0" + checksum: 10c0/0a32a997d6c15f1c2a077a15b1c4ca6f268d574cf5b8975e778bb98e6f8db4ef4e86dfcae4e158cd4c7e38fb4dd383b93b13eefddc7f178dea13d3ac8a603271 + languageName: node + linkType: hard + +"unique-filename@npm:^4.0.0": + version: 4.0.0 + resolution: "unique-filename@npm:4.0.0" + dependencies: + unique-slug: "npm:^5.0.0" + checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc + languageName: node + linkType: hard + +"unique-slug@npm:^5.0.0": + version: 5.0.0 + resolution: "unique-slug@npm:5.0.0" + dependencies: + imurmurhash: "npm:^0.1.4" + checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293 + languageName: node + linkType: hard + +"universalify@npm:^0.1.0": + version: 0.1.2 + resolution: "universalify@npm:0.1.2" + checksum: 10c0/e70e0339f6b36f34c9816f6bf9662372bd241714dc77508d231d08386d94f2c4aa1ba1318614f92015f40d45aae1b9075cd30bd490efbe39387b60a76ca3f045 + languageName: node + linkType: hard + +"universalify@npm:^0.2.0": + version: 0.2.0 + resolution: "universalify@npm:0.2.0" + checksum: 10c0/cedbe4d4ca3967edf24c0800cfc161c5a15e240dac28e3ce575c689abc11f2c81ccc6532c8752af3b40f9120fb5e454abecd359e164f4f6aa44c29cd37e194fe + languageName: node + linkType: hard + +"universalify@npm:^2.0.0": + version: 2.0.1 + resolution: "universalify@npm:2.0.1" + checksum: 10c0/73e8ee3809041ca8b818efb141801a1004e3fc0002727f1531f4de613ea281b494a40909596dae4a042a4fb6cd385af5d4db2e137b1362e0e91384b828effd3a + languageName: node + linkType: hard + +"unpipe@npm:1.0.0": + version: 1.0.0 + resolution: "unpipe@npm:1.0.0" + checksum: 10c0/193400255bd48968e5c5383730344fbb4fa114cdedfab26e329e50dd2d81b134244bb8a72c6ac1b10ab0281a58b363d06405632c9d49ca9dfd5e90cbd7d0f32c + languageName: node + linkType: hard + +"unplugin@npm:1.0.1": + version: 1.0.1 + resolution: "unplugin@npm:1.0.1" + dependencies: + acorn: "npm:^8.8.1" + chokidar: "npm:^3.5.3" + webpack-sources: "npm:^3.2.3" + webpack-virtual-modules: "npm:^0.5.0" + checksum: 10c0/7d59b5a28abc1cdbd6356a10f273d1266f59c3be083ab0e659a37d02d047d5df1b435e0f40f5ec97517e8fc910d314592f0d197ccceb75ef47c71c1898ec7a05 + languageName: node + linkType: hard + +"unplugin@npm:^1.3.1": + version: 1.16.1 + resolution: "unplugin@npm:1.16.1" + dependencies: + acorn: "npm:^8.14.0" + webpack-virtual-modules: "npm:^0.6.2" + checksum: 10c0/dd5f8c5727d0135847da73cf03fb199107f1acf458167034886fda3405737dab871ad3926431b4f70e1e82cdac482ac1383cea4019d782a68515c8e3e611b6cc + languageName: node + linkType: hard + +"untildify@npm:^4.0.0": + version: 4.0.0 + resolution: "untildify@npm:4.0.0" + checksum: 10c0/d758e624c707d49f76f7511d75d09a8eda7f2020d231ec52b67ff4896bcf7013be3f9522d8375f57e586e9a2e827f5641c7e06ee46ab9c435fc2b2b2e9de517a + languageName: node + linkType: hard + +"update-browserslist-db@npm:^1.1.1": + version: 1.1.2 + resolution: "update-browserslist-db@npm:1.1.2" + dependencies: + escalade: "npm:^3.2.0" + picocolors: "npm:^1.1.1" + peerDependencies: + browserslist: ">= 4.21.0" + bin: + update-browserslist-db: cli.js + checksum: 10c0/9cb353998d6d7d6ba1e46b8fa3db888822dd972212da4eda609d185eb5c3557a93fd59780ceb757afd4d84240518df08542736969e6a5d6d6ce2d58e9363aac6 + languageName: node + linkType: hard + +"update-notifier@npm:^7.0.0": + version: 7.3.1 + resolution: "update-notifier@npm:7.3.1" + dependencies: + boxen: "npm:^8.0.1" + chalk: "npm:^5.3.0" + configstore: "npm:^7.0.0" + is-in-ci: "npm:^1.0.0" + is-installed-globally: "npm:^1.0.0" + is-npm: "npm:^6.0.0" + latest-version: "npm:^9.0.0" + pupa: "npm:^3.1.0" + semver: "npm:^7.6.3" + xdg-basedir: "npm:^5.1.0" + checksum: 10c0/678839453840f46bb75e8cfebc0ff522262d2d3ece343fca722dd506039832e2a952d14ae39153f05f684467c8293ebc4c6479c9652c1bf97908fcaf300c2b31 + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c + languageName: node + linkType: hard + +"url-parse@npm:^1.5.3": + version: 1.5.10 + resolution: "url-parse@npm:1.5.10" + dependencies: + querystringify: "npm:^2.1.1" + requires-port: "npm:^1.0.0" + checksum: 10c0/bd5aa9389f896974beb851c112f63b466505a04b4807cea2e5a3b7092f6fbb75316f0491ea84e44f66fed55f1b440df5195d7e3a8203f64fcefa19d182f5be87 + languageName: node + linkType: hard + +"urlpattern-polyfill@npm:8.0.2": + version: 8.0.2 + resolution: "urlpattern-polyfill@npm:8.0.2" + checksum: 10c0/5388bbe8459dbd8861ee7cb97904be915dd863a9789c2191c528056f16adad7836ec22762ed002fed44e8995d0f98bdfb75a606466b77233e70d0f61b969aaf9 + languageName: node + linkType: hard + +"use-callback-ref@npm:^1.3.3": + version: 1.3.3 + resolution: "use-callback-ref@npm:1.3.3" + dependencies: + tslib: "npm:^2.0.0" + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/f887488c6e6075cdad4962979da1714b217bcb1ee009a9e57ce9a844bcfc4c3a99e93983dfc2e5af9e0913824d24e730090ff255e902c516dcb58d2d3837e01c + languageName: node + linkType: hard + +"use-sidecar@npm:^1.1.3": + version: 1.1.3 + resolution: "use-sidecar@npm:1.1.3" + dependencies: + detect-node-es: "npm:^1.1.0" + tslib: "npm:^2.0.0" + peerDependencies: + "@types/react": "*" + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc + peerDependenciesMeta: + "@types/react": + optional: true + checksum: 10c0/161599bf921cfaa41c85d2b01c871975ee99260f3e874c2d41c05890d41170297bdcf314bc5185e7a700de2034ac5b888e3efc8e9f35724f4918f53538d717c9 + languageName: node + linkType: hard + +"use-sync-external-store@npm:^1.2.0, use-sync-external-store@npm:^1.2.2": + version: 1.4.0 + resolution: "use-sync-external-store@npm:1.4.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + checksum: 10c0/ec011a5055962c0f6b509d6e78c0b143f8cd069890ae370528753053c55e3b360d3648e76cfaa854faa7a59eb08d6c5fb1015e60ffde9046d32f5b2a295acea5 + languageName: node + linkType: hard + +"usehooks-ts@npm:3.1.0": + version: 3.1.0 + resolution: "usehooks-ts@npm:3.1.0" + dependencies: + lodash.debounce: "npm:^4.0.8" + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + checksum: 10c0/2204d8c95109302bdaaa51a66bf216f3dba750f1d2795c20ecba75ba1c44a070a253935d537ef536514ab6e363bcc02ccc78b5ad63576ff8d880d577cf3fc48f + languageName: node + linkType: hard + +"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2, util-deprecate@npm:~1.0.1": + version: 1.0.2 + resolution: "util-deprecate@npm:1.0.2" + checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942 + languageName: node + linkType: hard + +"util@npm:^0.12.5": + version: 0.12.5 + resolution: "util@npm:0.12.5" + dependencies: + inherits: "npm:^2.0.3" + is-arguments: "npm:^1.0.4" + is-generator-function: "npm:^1.0.7" + is-typed-array: "npm:^1.1.3" + which-typed-array: "npm:^1.1.2" + checksum: 10c0/c27054de2cea2229a66c09522d0fa1415fb12d861d08523a8846bf2e4cbf0079d4c3f725f09dcb87493549bcbf05f5798dce1688b53c6c17201a45759e7253f3 + languageName: node + linkType: hard + +"uuid@npm:^11.0.5": + version: 11.1.0 + resolution: "uuid@npm:11.1.0" + bin: + uuid: dist/esm/bin/uuid + checksum: 10c0/34aa51b9874ae398c2b799c88a127701408cd581ee89ec3baa53509dd8728cbb25826f2a038f9465f8b7be446f0fbf11558862965b18d21c993684297628d4d3 + languageName: node + linkType: hard + +"uuid@npm:^8.3.2": + version: 8.3.2 + resolution: "uuid@npm:8.3.2" + bin: + uuid: dist/bin/uuid + checksum: 10c0/bcbb807a917d374a49f475fae2e87fdca7da5e5530820ef53f65ba1d12131bd81a92ecf259cc7ce317cbe0f289e7d79fdfebcef9bfa3087c8c8a2fa304c9be54 + languageName: node + linkType: hard + +"uuid@npm:^9.0.0": + version: 9.0.1 + resolution: "uuid@npm:9.0.1" + bin: + uuid: dist/bin/uuid + checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b + languageName: node + linkType: hard + +"v8-compile-cache-lib@npm:^3.0.1": + version: 3.0.1 + resolution: "v8-compile-cache-lib@npm:3.0.1" + checksum: 10c0/bdc36fb8095d3b41df197f5fb6f11e3a26adf4059df3213e3baa93810d8f0cc76f9a74aaefc18b73e91fe7e19154ed6f134eda6fded2e0f1c8d2272ed2d2d391 + languageName: node + linkType: hard + +"v8-to-istanbul@npm:^9.0.1": + version: 9.3.0 + resolution: "v8-to-istanbul@npm:9.3.0" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.12" + "@types/istanbul-lib-coverage": "npm:^2.0.1" + convert-source-map: "npm:^2.0.0" + checksum: 10c0/968bcf1c7c88c04df1ffb463c179558a2ec17aa49e49376120504958239d9e9dad5281aa05f2a78542b8557f2be0b0b4c325710262f3b838b40d703d5ed30c23 + languageName: node + linkType: hard + +"validate-npm-package-license@npm:^3.0.1": + version: 3.0.4 + resolution: "validate-npm-package-license@npm:3.0.4" + dependencies: + spdx-correct: "npm:^3.0.0" + spdx-expression-parse: "npm:^3.0.0" + checksum: 10c0/7b91e455a8de9a0beaa9fe961e536b677da7f48c9a493edf4d4d4a87fd80a7a10267d438723364e432c2fcd00b5650b5378275cded362383ef570276e6312f4f + languageName: node + linkType: hard + +"validator@npm:^13.7.0": + version: 13.12.0 + resolution: "validator@npm:13.12.0" + checksum: 10c0/21d48a7947c9e8498790550f56cd7971e0e3d724c73388226b109c1bac2728f4f88caddfc2f7ed4b076f9b0d004316263ac786a17e9c4edf075741200718cd32 + languageName: node + linkType: hard + +"vary@npm:^1.1.2": + version: 1.1.2 + resolution: "vary@npm:1.1.2" + checksum: 10c0/f15d588d79f3675135ba783c91a4083dcd290a2a5be9fcb6514220a1634e23df116847b1cc51f66bfb0644cf9353b2abb7815ae499bab06e46dd33c1a6bf1f4f + languageName: node + linkType: hard + +"verror@npm:1.10.0": + version: 1.10.0 + resolution: "verror@npm:1.10.0" + dependencies: + assert-plus: "npm:^1.0.0" + core-util-is: "npm:1.0.2" + extsprintf: "npm:^1.2.0" + checksum: 10c0/37ccdf8542b5863c525128908ac80f2b476eed36a32cb944de930ca1e2e78584cc435c4b9b4c68d0fc13a47b45ff364b4be43aa74f8804f9050140f660fb660d + languageName: node + linkType: hard + +"vite-node@npm:1.6.1": + version: 1.6.1 + resolution: "vite-node@npm:1.6.1" + dependencies: + cac: "npm:^6.7.14" + debug: "npm:^4.3.4" + pathe: "npm:^1.1.1" + picocolors: "npm:^1.0.0" + vite: "npm:^5.0.0" + bin: + vite-node: vite-node.mjs + checksum: 10c0/4d96da9f11bd0df8b60c46e65a740edaad7dd2d1aff3cdb3da5714ea8c10b5f2683111b60bfe45545c7e8c1f33e7e8a5095573d5e9ba55f50a845233292c2e02 + languageName: node + linkType: hard + +"vite-plugin-dts@npm:^3.7.2": + version: 3.9.1 + resolution: "vite-plugin-dts@npm:3.9.1" + dependencies: + "@microsoft/api-extractor": "npm:7.43.0" + "@rollup/pluginutils": "npm:^5.1.0" + "@vue/language-core": "npm:^1.8.27" + debug: "npm:^4.3.4" + kolorist: "npm:^1.8.0" + magic-string: "npm:^0.30.8" + vue-tsc: "npm:^1.8.27" + peerDependencies: + typescript: "*" + vite: "*" + peerDependenciesMeta: + vite: + optional: true + checksum: 10c0/a38e02f2383df9db4b0b35bece0c2f96fc3f4bf695dd6cf717caadb4be457c1fdb4a87ed77b61a7beec494c730ea4c0656c9f968ecefbe42435f765c3b887996 + languageName: node + linkType: hard + +"vite-plugin-lib-inject-css@npm:^1.3.0": + version: 1.3.0 + resolution: "vite-plugin-lib-inject-css@npm:1.3.0" + dependencies: + magic-string: "npm:^0.30.2" + picocolors: "npm:^1.0.0" + peerDependencies: + vite: "*" + checksum: 10c0/0af1fc7c6767041dec721deea4dbdf0c86699ffeaac046a00c10b5789139fe458f2e5ce9b0036de80e3ebcef724d13a3167911fb10583affa290ed3f2a1316db + languageName: node + linkType: hard + +"vite@npm:^5.0.0, vite@npm:^5.0.8": + version: 5.4.14 + resolution: "vite@npm:5.4.14" + dependencies: + esbuild: "npm:^0.21.3" + fsevents: "npm:~2.3.3" + postcss: "npm:^8.4.43" + rollup: "npm:^4.20.0" + peerDependencies: + "@types/node": ^18.0.0 || >=20.0.0 + less: "*" + lightningcss: ^1.21.0 + sass: "*" + sass-embedded: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + bin: + vite: bin/vite.js + checksum: 10c0/8842933bd70ca6a98489a0bb9c8464bec373de00f9a97c8c7a4e64b24d15c88bfaa8c1acb38a68c3e5eb49072ffbccb146842c2d4edcdd036a9802964cffe3d1 + languageName: node + linkType: hard + +"vitest@npm:^1.2.2": + version: 1.6.1 + resolution: "vitest@npm:1.6.1" + dependencies: + "@vitest/expect": "npm:1.6.1" + "@vitest/runner": "npm:1.6.1" + "@vitest/snapshot": "npm:1.6.1" + "@vitest/spy": "npm:1.6.1" + "@vitest/utils": "npm:1.6.1" + acorn-walk: "npm:^8.3.2" + chai: "npm:^4.3.10" + debug: "npm:^4.3.4" + execa: "npm:^8.0.1" + local-pkg: "npm:^0.5.0" + magic-string: "npm:^0.30.5" + pathe: "npm:^1.1.1" + picocolors: "npm:^1.0.0" + std-env: "npm:^3.5.0" + strip-literal: "npm:^2.0.0" + tinybench: "npm:^2.5.1" + tinypool: "npm:^0.8.3" + vite: "npm:^5.0.0" + vite-node: "npm:1.6.1" + why-is-node-running: "npm:^2.2.2" + peerDependencies: + "@edge-runtime/vm": "*" + "@types/node": ^18.0.0 || >=20.0.0 + "@vitest/browser": 1.6.1 + "@vitest/ui": 1.6.1 + happy-dom: "*" + jsdom: "*" + peerDependenciesMeta: + "@edge-runtime/vm": + optional: true + "@types/node": + optional: true + "@vitest/browser": + optional: true + "@vitest/ui": + optional: true + happy-dom: + optional: true + jsdom: + optional: true + bin: + vitest: vitest.mjs + checksum: 10c0/511d27d7f697683964826db2fad7ac303f9bc7eeb59d9422111dc488371ccf1f9eed47ac3a80eb47ca86b7242228ba5ca9cc3613290830d0e916973768cac215 + languageName: node + linkType: hard + +"vue-template-compiler@npm:^2.7.14": + version: 2.7.16 + resolution: "vue-template-compiler@npm:2.7.16" + dependencies: + de-indent: "npm:^1.0.2" + he: "npm:^1.2.0" + checksum: 10c0/66667ffd5095b707f169c902c4f1a011e9d5ab99fc228e4dac14eb5ca7f107ed99bff261b21578a4b391d2f3d320a8050e754404443472acad13ddaa4bd7bae2 + languageName: node + linkType: hard + +"vue-tsc@npm:^1.8.27": + version: 1.8.27 + resolution: "vue-tsc@npm:1.8.27" + dependencies: + "@volar/typescript": "npm:~1.11.1" + "@vue/language-core": "npm:1.8.27" + semver: "npm:^7.5.4" + peerDependencies: + typescript: "*" + bin: + vue-tsc: bin/vue-tsc.js + checksum: 10c0/6e6ba37eb7a0c8b9cc613225729c74edf8bd0632d265e62aca28b1969b5615b9dbe2de03aefb8aed2e26fdbd4b93f134785c8ab0095f92c2469192e2db5d09fd + languageName: node + linkType: hard + +"w3c-xmlserializer@npm:^4.0.0": + version: 4.0.0 + resolution: "w3c-xmlserializer@npm:4.0.0" + dependencies: + xml-name-validator: "npm:^4.0.0" + checksum: 10c0/02cc66d6efc590bd630086cd88252444120f5feec5c4043932b0d0f74f8b060512f79dc77eb093a7ad04b4f02f39da79ce4af47ceb600f2bf9eacdc83204b1a8 + languageName: node + linkType: hard + +"wait-on@npm:8.0.2": + version: 8.0.2 + resolution: "wait-on@npm:8.0.2" + dependencies: + axios: "npm:^1.7.9" + joi: "npm:^17.13.3" + lodash: "npm:^4.17.21" + minimist: "npm:^1.2.8" + rxjs: "npm:^7.8.1" + bin: + wait-on: bin/wait-on + checksum: 10c0/7a2a2193f601eb30d3125595fbed1abeb3ce0c9e164146aed27d12469d9b665273dc8e508a3a869c997f37b92d93478c202b38253a95c5c29e6fc64d0a317f5b + languageName: node + linkType: hard + +"walk-back@npm:^4.0.0": + version: 4.0.0 + resolution: "walk-back@npm:4.0.0" + checksum: 10c0/b8ec4a3f739ff1d6a16043df16834d498a6e812da370d3e2c9d1a77bf6702c0809a5342f7b3b7b35aa17dfcd8733521891d8ed0f4526d4a3eec5811f7b2335b0 + languageName: node + linkType: hard + +"walker@npm:^1.0.8": + version: 1.0.8 + resolution: "walker@npm:1.0.8" + dependencies: + makeerror: "npm:1.0.12" + checksum: 10c0/a17e037bccd3ca8a25a80cb850903facdfed0de4864bd8728f1782370715d679fa72e0a0f5da7c1c1379365159901e5935f35be531229da53bbfc0efdabdb48e + languageName: node + linkType: hard + +"webidl-conversions@npm:^3.0.0": + version: 3.0.1 + resolution: "webidl-conversions@npm:3.0.1" + checksum: 10c0/5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db + languageName: node + linkType: hard + +"webidl-conversions@npm:^7.0.0": + version: 7.0.0 + resolution: "webidl-conversions@npm:7.0.0" + checksum: 10c0/228d8cb6d270c23b0720cb2d95c579202db3aaf8f633b4e9dd94ec2000a04e7e6e43b76a94509cdb30479bd00ae253ab2371a2da9f81446cc313f89a4213a2c4 + languageName: node + linkType: hard + +"webpack-sources@npm:^3.2.3": + version: 3.2.3 + resolution: "webpack-sources@npm:3.2.3" + checksum: 10c0/2ef63d77c4fad39de4a6db17323d75eb92897b32674e97d76f0a1e87c003882fc038571266ad0ef581ac734cbe20952912aaa26155f1905e96ce251adbb1eb4e + languageName: node + linkType: hard + +"webpack-virtual-modules@npm:^0.5.0": + version: 0.5.0 + resolution: "webpack-virtual-modules@npm:0.5.0" + checksum: 10c0/0742e069cd49d91ccd0b59431b3666903d321582c1b1062fa6bdae005c3538af55ff8787ea5eafbf72662f3496d3a879e2c705d55ca0af8283548a925be18484 + languageName: node + linkType: hard + +"webpack-virtual-modules@npm:^0.6.2": + version: 0.6.2 + resolution: "webpack-virtual-modules@npm:0.6.2" + checksum: 10c0/5ffbddf0e84bf1562ff86cf6fcf039c74edf09d78358a6904a09bbd4484e8bb6812dc385fe14330b715031892dcd8423f7a88278b57c9f5002c84c2860179add + languageName: node + linkType: hard + +"whatwg-encoding@npm:^2.0.0": + version: 2.0.0 + resolution: "whatwg-encoding@npm:2.0.0" + dependencies: + iconv-lite: "npm:0.6.3" + checksum: 10c0/91b90a49f312dc751496fd23a7e68981e62f33afe938b97281ad766235c4872fc4e66319f925c5e9001502b3040dd25a33b02a9c693b73a4cbbfdc4ad10c3e3e + languageName: node + linkType: hard + +"whatwg-mimetype@npm:^3.0.0": + version: 3.0.0 + resolution: "whatwg-mimetype@npm:3.0.0" + checksum: 10c0/323895a1cda29a5fb0b9ca82831d2c316309fede0365047c4c323073e3239067a304a09a1f4b123b9532641ab604203f33a1403b5ca6a62ef405bcd7a204080f + languageName: node + linkType: hard + +"whatwg-url@npm:^11.0.0": + version: 11.0.0 + resolution: "whatwg-url@npm:11.0.0" + dependencies: + tr46: "npm:^3.0.0" + webidl-conversions: "npm:^7.0.0" + checksum: 10c0/f7ec264976d7c725e0696fcaf9ebe056e14422eacbf92fdbb4462034609cba7d0c85ffa1aab05e9309d42969bcf04632ba5ed3f3882c516d7b093053315bf4c1 + languageName: node + linkType: hard + +"whatwg-url@npm:^5.0.0": + version: 5.0.0 + resolution: "whatwg-url@npm:5.0.0" + dependencies: + tr46: "npm:~0.0.3" + webidl-conversions: "npm:^3.0.0" + checksum: 10c0/1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5 + languageName: node + linkType: hard + +"when-exit@npm:^2.1.1": + version: 2.1.4 + resolution: "when-exit@npm:2.1.4" + checksum: 10c0/d8ffba54afca880de6f366ab06a32e8fab99fa298a3f79b2d5304bab19d290f55c5f081336cdaa65d0b6e9a842b46a46bab0800e94e755ea599a2082224a8cc0 + languageName: node + linkType: hard + +"which-boxed-primitive@npm:^1.1.0, which-boxed-primitive@npm:^1.1.1": + version: 1.1.1 + resolution: "which-boxed-primitive@npm:1.1.1" + dependencies: + is-bigint: "npm:^1.1.0" + is-boolean-object: "npm:^1.2.1" + is-number-object: "npm:^1.1.1" + is-string: "npm:^1.1.1" + is-symbol: "npm:^1.1.1" + checksum: 10c0/aceea8ede3b08dede7dce168f3883323f7c62272b49801716e8332ff750e7ae59a511ae088840bc6874f16c1b7fd296c05c949b0e5b357bfe3c431b98c417abe + languageName: node + linkType: hard + +"which-builtin-type@npm:^1.2.1": + version: 1.2.1 + resolution: "which-builtin-type@npm:1.2.1" + dependencies: + call-bound: "npm:^1.0.2" + function.prototype.name: "npm:^1.1.6" + has-tostringtag: "npm:^1.0.2" + is-async-function: "npm:^2.0.0" + is-date-object: "npm:^1.1.0" + is-finalizationregistry: "npm:^1.1.0" + is-generator-function: "npm:^1.0.10" + is-regex: "npm:^1.2.1" + is-weakref: "npm:^1.0.2" + isarray: "npm:^2.0.5" + which-boxed-primitive: "npm:^1.1.0" + which-collection: "npm:^1.0.2" + which-typed-array: "npm:^1.1.16" + checksum: 10c0/8dcf323c45e5c27887800df42fbe0431d0b66b1163849bb7d46b5a730ad6a96ee8bfe827d078303f825537844ebf20c02459de41239a0a9805e2fcb3cae0d471 + languageName: node + linkType: hard + +"which-collection@npm:^1.0.2": + version: 1.0.2 + resolution: "which-collection@npm:1.0.2" + dependencies: + is-map: "npm:^2.0.3" + is-set: "npm:^2.0.3" + is-weakmap: "npm:^2.0.2" + is-weakset: "npm:^2.0.3" + checksum: 10c0/3345fde20964525a04cdf7c4a96821f85f0cc198f1b2ecb4576e08096746d129eb133571998fe121c77782ac8f21cbd67745a3d35ce100d26d4e684c142ea1f2 + languageName: node + linkType: hard + +"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18, which-typed-array@npm:^1.1.2": + version: 1.1.18 + resolution: "which-typed-array@npm:1.1.18" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.8" + call-bound: "npm:^1.0.3" + for-each: "npm:^0.3.3" + gopd: "npm:^1.2.0" + has-tostringtag: "npm:^1.0.2" + checksum: 10c0/0412f4a91880ca1a2a63056187c2e3de6b129b2b5b6c17bc3729f0f7041047ae48fb7424813e51506addb2c97320003ee18b8c57469d2cde37983ef62126143c + languageName: node + linkType: hard + +"which@npm:^2.0.1, which@npm:^2.0.2": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: "npm:^2.0.0" + bin: + node-which: ./bin/node-which + checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f + languageName: node + linkType: hard + +"which@npm:^5.0.0": + version: 5.0.0 + resolution: "which@npm:5.0.0" + dependencies: + isexe: "npm:^3.1.1" + bin: + node-which: bin/which.js + checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b + languageName: node + linkType: hard + +"why-is-node-running@npm:^2.2.2": + version: 2.3.0 + resolution: "why-is-node-running@npm:2.3.0" + dependencies: + siginfo: "npm:^2.0.0" + stackback: "npm:0.0.2" + bin: + why-is-node-running: cli.js + checksum: 10c0/1cde0b01b827d2cf4cb11db962f3958b9175d5d9e7ac7361d1a7b0e2dc6069a263e69118bd974c4f6d0a890ef4eedfe34cf3d5167ec14203dbc9a18620537054 + languageName: node + linkType: hard + +"widest-line@npm:^5.0.0": + version: 5.0.0 + resolution: "widest-line@npm:5.0.0" + dependencies: + string-width: "npm:^7.0.0" + checksum: 10c0/6bd6cca8cda502ef50e05353fd25de0df8c704ffc43ada7e0a9cf9a5d4f4e12520485d80e0b77cec8a21f6c3909042fcf732aa9281e5dbb98cc9384a138b2578 + languageName: node + linkType: hard + +"word-wrap@npm:^1.2.5": + version: 1.2.5 + resolution: "word-wrap@npm:1.2.5" + checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 + languageName: node + linkType: hard + +"wordwrap@npm:^1.0.0": + version: 1.0.0 + resolution: "wordwrap@npm:1.0.0" + checksum: 10c0/7ed2e44f3c33c5c3e3771134d2b0aee4314c9e49c749e37f464bf69f2bcdf0cbf9419ca638098e2717cff4875c47f56a007532f6111c3319f557a2ca91278e92 + languageName: node + linkType: hard + +"wordwrapjs@npm:^4.0.0": + version: 4.0.1 + resolution: "wordwrapjs@npm:4.0.1" + dependencies: + reduce-flatten: "npm:^2.0.0" + typical: "npm:^5.2.0" + checksum: 10c0/4cc43eb0f6adb7214d427e68918357a9df483815efbb4c59beb30972714b1804ede2a551b1dfd2234c0bd413c6f07d6daa6522d1c53f43f89a376d815fbf3c43 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da + languageName: node + linkType: hard + +"wrap-ansi@npm:^6.2.0": + version: 6.2.0 + resolution: "wrap-ansi@npm:6.2.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/baad244e6e33335ea24e86e51868fe6823626e3a3c88d9a6674642afff1d34d9a154c917e74af8d845fd25d170c4ea9cf69a47133c3f3656e1252b3d462d9f6c + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 + languageName: node + linkType: hard + +"wrap-ansi@npm:^9.0.0": + version: 9.0.0 + resolution: "wrap-ansi@npm:9.0.0" + dependencies: + ansi-styles: "npm:^6.2.1" + string-width: "npm:^7.0.0" + strip-ansi: "npm:^7.1.0" + checksum: 10c0/a139b818da9573677548dd463bd626a5a5286271211eb6e4e82f34a4f643191d74e6d4a9bb0a3c26ec90e6f904f679e0569674ac099ea12378a8b98e20706066 + languageName: node + linkType: hard + +"wrappy@npm:1": + version: 1.0.2 + resolution: "wrappy@npm:1.0.2" + checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0 + languageName: node + linkType: hard + +"write-file-atomic@npm:^4.0.2": + version: 4.0.2 + resolution: "write-file-atomic@npm:4.0.2" + dependencies: + imurmurhash: "npm:^0.1.4" + signal-exit: "npm:^3.0.7" + checksum: 10c0/a2c282c95ef5d8e1c27b335ae897b5eca00e85590d92a3fd69a437919b7b93ff36a69ea04145da55829d2164e724bc62202cdb5f4b208b425aba0807889375c7 + languageName: node + linkType: hard + +"ws@npm:8.9.0": + version: 8.9.0 + resolution: "ws@npm:8.9.0" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 10c0/0a1e9868f2e527e33419ddf874027742acc62cdc7541d4a09a28ea7d0d860856fb09712ec6d85d4a64dc1f0fb512c3e107469ddf99a8a44f5944d5733a72099a + languageName: node + linkType: hard + +"ws@npm:^8.11.0, ws@npm:^8.2.3": + version: 8.18.1 + resolution: "ws@npm:8.18.1" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 10c0/e498965d6938c63058c4310ffb6967f07d4fa06789d3364829028af380d299fe05762961742971c764973dce3d1f6a2633fe8b2d9410c9b52e534b4b882a99fa + languageName: node + linkType: hard + +"xdg-basedir@npm:^5.1.0": + version: 5.1.0 + resolution: "xdg-basedir@npm:5.1.0" + checksum: 10c0/c88efabc71ffd996ba9ad8923a8cc1c7c020a03e2c59f0ffa72e06be9e724ad2a0fccef488757bc6ed3d8849d753dd25082d1035d95cb179e79eae4d034d0b80 + languageName: node + linkType: hard + +"xml-name-validator@npm:^4.0.0": + version: 4.0.0 + resolution: "xml-name-validator@npm:4.0.0" + checksum: 10c0/c1bfa219d64e56fee265b2bd31b2fcecefc063ee802da1e73bad1f21d7afd89b943c9e2c97af2942f60b1ad46f915a4c81e00039c7d398b53cf410e29d3c30bd + languageName: node + linkType: hard + +"xmlchars@npm:^2.2.0": + version: 2.2.0 + resolution: "xmlchars@npm:2.2.0" + checksum: 10c0/b64b535861a6f310c5d9bfa10834cf49127c71922c297da9d4d1b45eeaae40bf9b4363275876088fbe2667e5db028d2cd4f8ee72eed9bede840a67d57dab7593 + languageName: node + linkType: hard + +"xtend@npm:^4.0.0": + version: 4.0.2 + resolution: "xtend@npm:4.0.2" + checksum: 10c0/366ae4783eec6100f8a02dff02ac907bf29f9a00b82ac0264b4d8b832ead18306797e283cf19de776538babfdcb2101375ec5646b59f08c52128ac4ab812ed0e + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 + languageName: node + linkType: hard + +"yallist@npm:^3.0.2": + version: 3.1.1 + resolution: "yallist@npm:3.1.1" + checksum: 10c0/c66a5c46bc89af1625476f7f0f2ec3653c1a1791d2f9407cfb4c2ba812a1e1c9941416d71ba9719876530e3340a99925f697142989371b72d93b9ee628afd8c1 + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a + languageName: node + linkType: hard + +"yallist@npm:^5.0.0": + version: 5.0.0 + resolution: "yallist@npm:5.0.0" + checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 + languageName: node + linkType: hard + +"yaml@npm:^1.10.2": + version: 1.10.2 + resolution: "yaml@npm:1.10.2" + checksum: 10c0/5c28b9eb7adc46544f28d9a8d20c5b3cb1215a886609a2fd41f51628d8aaa5878ccd628b755dbcd29f6bb4921bd04ffbc6dcc370689bb96e594e2f9813d2605f + languageName: node + linkType: hard + +"yaml@npm:^2.2.2, yaml@npm:^2.7.0": + version: 2.7.0 + resolution: "yaml@npm:2.7.0" + bin: + yaml: bin.mjs + checksum: 10c0/886a7d2abbd70704b79f1d2d05fe9fb0aa63aefb86e1cb9991837dced65193d300f5554747a872b4b10ae9a12bc5d5327e4d04205f70336e863e35e89d8f4ea9 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 + languageName: node + linkType: hard + +"yargs@npm:^17.3.1": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 + languageName: node + linkType: hard + +"yauzl@npm:^2.10.0": + version: 2.10.0 + resolution: "yauzl@npm:2.10.0" + dependencies: + buffer-crc32: "npm:~0.2.3" + fd-slicer: "npm:~1.1.0" + checksum: 10c0/f265002af7541b9ec3589a27f5fb8f11cf348b53cc15e2751272e3c062cd73f3e715bc72d43257de71bbaecae446c3f1b14af7559e8ab0261625375541816422 + languageName: node + linkType: hard + +"ylru@npm:^1.2.0": + version: 1.4.0 + resolution: "ylru@npm:1.4.0" + checksum: 10c0/eaadc38ed6d78d4fda49abed45cfdaf149bd334df761dbeadd3cff62936d25ffa94571f84c25b64a9a4b5efd8f489ee6fee3eaaf8e7b2886418a3bcb9ec84b84 + languageName: node + linkType: hard + +"yn@npm:3.1.1": + version: 3.1.1 + resolution: "yn@npm:3.1.1" + checksum: 10c0/0732468dd7622ed8a274f640f191f3eaf1f39d5349a1b72836df484998d7d9807fbea094e2f5486d6b0cd2414aad5775972df0e68f8604db89a239f0f4bf7443 + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f + languageName: node + linkType: hard + +"yocto-queue@npm:^1.0.0": + version: 1.1.1 + resolution: "yocto-queue@npm:1.1.1" + checksum: 10c0/cb287fe5e6acfa82690acb43c283de34e945c571a78a939774f6eaba7c285bacdf6c90fbc16ce530060863984c906d2b4c6ceb069c94d1e0a06d5f2b458e2a92 + languageName: node + linkType: hard + +"yup@npm:^1.2.0": + version: 1.6.1 + resolution: "yup@npm:1.6.1" + dependencies: + property-expr: "npm:^2.0.5" + tiny-case: "npm:^1.0.3" + toposort: "npm:^2.0.2" + type-fest: "npm:^2.19.0" + checksum: 10c0/84c2b53996e8001041239cf2719851719f67063ec7cd843067df73562353216f5ad4f8a222319696882d5a6058e528fade1e463c59d70cbffb41b99cd0d7571b + languageName: node + linkType: hard + +"z-schema@npm:~5.0.2": + version: 5.0.5 + resolution: "z-schema@npm:5.0.5" + dependencies: + commander: "npm:^9.4.1" + lodash.get: "npm:^4.4.2" + lodash.isequal: "npm:^4.5.0" + validator: "npm:^13.7.0" + dependenciesMeta: + commander: + optional: true + bin: + z-schema: bin/z-schema + checksum: 10c0/e4c812cfe6468c19b2a21d07d4ff8fb70359062d33400b45f89017eaa3efe9d51e85963f2b115eaaa99a16b451782249bf9b1fa8b31d35cc473e7becb3e44264 + languageName: node + linkType: hard + +"zod@npm:3.22.4": + version: 3.22.4 + resolution: "zod@npm:3.22.4" + checksum: 10c0/7578ab283dac0eee66a0ad0fc4a7f28c43e6745aadb3a529f59a4b851aa10872b3890398b3160f257f4b6817b4ce643debdda4fb21a2c040adda7862cab0a587 + languageName: node + linkType: hard + +"zustand@npm:^4.5.2": + version: 4.5.6 + resolution: "zustand@npm:4.5.6" + dependencies: + use-sync-external-store: "npm:^1.2.2" + peerDependencies: + "@types/react": ">=16.8" + immer: ">=9.0.6" + react: ">=16.8" + peerDependenciesMeta: + "@types/react": + optional: true + immer: + optional: true + react: + optional: true + checksum: 10c0/5b39aff2ef57e5a8ada647261ec1115697d397be311c51461d9ea81b5b63c6d2c498b960477ad2db72dc21db6aa229a92bdf644f6a8ecf7b1d71df5b4a5e95d3 + languageName: node + linkType: hard