diff --git a/.dockerignore b/.dockerignore index 30aebcb54..9a969b188 100644 --- a/.dockerignore +++ b/.dockerignore @@ -64,9 +64,6 @@ typings/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file -.env - # parcel-bundler cache (https://parceljs.org/) .cache diff --git a/.env.example b/.env.example index d0204e134..1c2b35a7e 100644 --- a/.env.example +++ b/.env.example @@ -1,32 +1,57 @@ -# Google Analytics ID -VITE_GA_ID=UA-61422507-4 +#-----------------------Backend Config------------------------------# +# Prisma Config +DATABASE_URL=postgresql://postgres:testpass@hoppscotch-db:5432/hoppscotch -# Google Tag Manager ID -VITE_GTM_ID=GTM-NMKVBMV +# Auth Tokens Config +SIGNED_COOKIE_SECRET = "supersecretcode" +JWT_SECRET="secret1233" +TOKEN_SALT_COMPLEXITY=10 +MAGIC_LINK_TOKEN_VALIDITY= 3 +REFRESH_TOKEN_VALIDITY="604800000" # Default validity is 7 days (604800000 ms) in ms +ACCESS_TOKEN_VALIDITY="86400000" # Default validity is 1 day (86400000 ms) in ms +SESSION_SECRET='add some secret here' + +# Hoppscotch App Domain Config +APP_DOMAIN="http://localhost:3170" +REDIRECT_URL="http://localhost:3170/graphql" +WHITELISTED_ORIGINS = "http://localhost:3170,http://localhost:3000" + +# Google Auth Config +GOOGLE_CLIENT_ID="************************************************" +GOOGLE_CLIENT_SECRET="************************************************" +GOOGLE_CALLBACK_URL="************************************************" +GOOGLE_SCOPE="['email', 'profile']," + +# Github Auth Config +GITHUB_CLIENT_ID="************************************************" +GITHUB_CLIENT_SECRET="************************************************" +GITHUB_CALLBACK_URL="************************************************" +GITHUB_SCOPE="user:email" + +# Microsoft Auth Config +MICROSOFT_CLIENT_ID="************************************************" +MICROSOFT_CLIENT_SECRET="************************************************" +MICROSOFT_CALLBACK_URL="************************************************" +MICROSOFT_SCOPE="user.read" + +# Mailer config +MAILER_SMTP_URL="smtps://user@domain.com:pass@smtp.domain.com" +MAILER_ADDRESS_FROM='"From Name Here" ' + +# Rate Limit Config +RATE_LIMIT_TTL=60 # In seconds +RATE_LIMIT_MAX=100 # Max requests per IP + + +#-----------------------Frontend Config------------------------------# -# Firebase config -VITE_API_KEY=AIzaSyCMsFreESs58-hRxTtiqQrIcimh4i1wbsM -VITE_AUTH_DOMAIN=postwoman-api.firebaseapp.com -VITE_DATABASE_URL=https://postwoman-api.firebaseio.com -VITE_PROJECT_ID=postwoman-api -VITE_STORAGE_BUCKET=postwoman-api.appspot.com -VITE_MESSAGING_SENDER_ID=421993993223 -VITE_APP_ID=1:421993993223:web:ec0baa8ee8c02ffa1fc6a2 -VITE_MEASUREMENT_ID=G-BBJ3R80PJT # Base URLs -VITE_BASE_URL=https://hoppscotch.io -VITE_SHORTCODE_BASE_URL=https://hopp.sh +VITE_BASE_URL=http://localhost:3000 +VITE_SHORTCODE_BASE_URL=http://localhost:3000 # Backend URLs -VITE_BACKEND_GQL_URL=https://api.hoppscotch.io/graphql -VITE_BACKEND_WS_URL=wss://api.hoppscotch.io/graphql -VITE_BACKEND_API_URL=https://api.hoppscotch.io/v1 +VITE_BACKEND_GQL_URL=http://localhost:3170/graphql +VITE_BACKEND_WS_URL=wss://localhost:3170/graphql +VITE_BACKEND_API_URL=http://localhost:3170/v1 -# Sentry (Optional) -# VITE_SENTRY_DSN: -# VITE_SENTRY_ENVIRONMENT: -# VITE_SENTRY_RELEASE_TAG: - -# Proxyscotch Access Token (Optional) -# VITE_PROXYSCOTCH_ACCESS_TOKEN: diff --git a/docker-compose.yml b/docker-compose.yml index cd63442d4..417b15002 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,23 +1,71 @@ +# To make it easier to self-host, we have a preset docker compose config that also +# has a container with a Postgres instance running. +# You can tweak around this file to match your instances version: "3.7" services: - web: + # This service runs the backend app in the port 3170 + hoppscotch-backend: + container_name: hoppscotch-backend build: + dockerfile: packages/hoppscotch-backend/Dockerfile context: . - volumes: - - "./.hoppscotch:/app/.hoppscotch" - - "./assets:/app/assets" - - "./directives:/app/directives" - - "./layouts:/app/layouts" - - "./middleware:/app/middleware" - - "./pages:/app/pages" - - "./plugins:/app/plugins" - - "./static:/app/static" - - "./store:/app/store" - - "./components:/app/components" - - "./helpers:/app/helpers" - ports: - - "3000:3000" + target: prod + env_file: + - ./.env + restart: always environment: - HOST: 0.0.0.0 - command: "pnpm run dev" + # Edit the below line to match your PostgresDB URL if you have an outside DB (make sure to update the .env file as well) + - DATABASE_URL=postgresql://postgres:testpass@hoppscotch-db:5432/hoppscotch?connect_timeout=300 + - PORT=3000 + volumes: + - ./packages/hoppscotch-backend/:/usr/src/app + - /usr/src/app/node_modules/ + depends_on: + - hoppscotch-db + ports: + - "3170:3000" + + # The main hoppscotch app. This will be hosted at port 3000 + # NOTE: To do TLS or play around with how the app is hosted, you can look into the Caddyfile for + # the SH admin dashboard server at packages/hoppscotch-selfhost-web/Caddyfile + hoppscotch-app: + container_name: hoppscotch-app + build: + dockerfile: packages/hoppscotch-selfhost-web/Dockerfile + context: . + env_file: + - ./.env + depends_on: + - hoppscotch-backend + ports: + - "3000:8080" + + # The Self Host dashboard for managing the app. This will be hosted at port 3100 + # NOTE: To do TLS or play around with how the app is hosted, you can look into the Caddyfile for + # the SH admin dashboard server at packages/hoppscotch-sh-admin/Caddyfile + hoppscotch-sh-admin: + container_name: hoppscotch-sh-admin + build: + dockerfile: packages/hoppscotch-sh-admin/Dockerfile + context: . + env_file: + - ./.env + depends_on: + - hoppscotch-backend + ports: + - "3100:8080" + + # The preset DB service, you can delete/comment the below lines if + # you are using an external postgres instance + # This will be exposed at port 5432 + hoppscotch-db: + image: postgres + ports: + - "5432:5432" + environment: + # NOTE: Please UPDATE THIS PASSWORD! + POSTGRES_PASSWORD: testpass + POSTGRES_DB: hoppscotch + + diff --git a/packages/hoppscotch-backend/Dockerfile b/packages/hoppscotch-backend/Dockerfile index 9937610c4..e08b05710 100644 --- a/packages/hoppscotch-backend/Dockerfile +++ b/packages/hoppscotch-backend/Dockerfile @@ -1,13 +1,17 @@ -FROM node:lts +FROM node:18.8.0 AS builder WORKDIR /usr/src/app # # Install pnpm RUN npm i -g pnpm +COPY .env . COPY pnpm-lock.yaml . RUN pnpm fetch +ENV APP_PORT=${PORT} +ENV DB_URL=${DATABASE_URL} + # # PNPM package install COPY ./packages/hoppscotch-backend . RUN pnpm i --filter hoppscotch-backend @@ -15,12 +19,20 @@ RUN pnpm i --filter hoppscotch-backend # Prisma bits RUN pnpm exec prisma generate +FROM builder AS dev -EXPOSE 3170 -EXPOSE 9229 - -ENV APP_PORT=${PORT} -ENV DB_URL=${DATABASE_URL} -ENV PRODUCTION=true +ENV PRODUCTION = false CMD ["pnpm", "run", "start"] + +EXPOSE 3170 + + +FROM builder AS prod + +ENV PRODUCTION = true + +CMD ["pnpm", "run", "start:prod"] + +EXPOSE 3170 + diff --git a/packages/hoppscotch-backend/docker-compose.yml b/packages/hoppscotch-backend/docker-compose.yml deleted file mode 100644 index 219729016..000000000 --- a/packages/hoppscotch-backend/docker-compose.yml +++ /dev/null @@ -1,30 +0,0 @@ -version: '3.0' -services: - local: - build: - dockerfile: packages/hoppscotch-backend/Dockerfile - context: ../../ - - env_file: - - .env - command: [ "pnpm", "run", "start:dev" ] - environment: - - PRODUCTION=false - - DATABASE_URL=postgresql://postgres:testpass@dev-db:5432/hoppscotch?connect_timeout=300 - - PORT=3000 - volumes: - - .:/usr/src/app - - /usr/src/app/node_modules/ - depends_on: - - dev-db - ports: - - "3170:3000" - - "9229:9229" - - dev-db: - image: postgres - ports: - - "5432:5432" - environment: - POSTGRES_PASSWORD: testpass - POSTGRES_DB: hoppscotch diff --git a/packages/hoppscotch-backend/package.json b/packages/hoppscotch-backend/package.json index 91349bd6d..0710f60da 100644 --- a/packages/hoppscotch-backend/package.json +++ b/packages/hoppscotch-backend/package.json @@ -1,6 +1,6 @@ { "name": "hoppscotch-backend", - "version": "0.0.1", + "version": "2023.4.0", "description": "", "author": "", "private": true, diff --git a/packages/hoppscotch-backend/src/admin/admin.service.ts b/packages/hoppscotch-backend/src/admin/admin.service.ts index 290a5eaca..e3c90c80d 100644 --- a/packages/hoppscotch-backend/src/admin/admin.service.ts +++ b/packages/hoppscotch-backend/src/admin/admin.service.ts @@ -76,7 +76,7 @@ export class AdminService { template: 'code-your-own', variables: { inviteeEmail: inviteeEmail, - magicLink: `${process.env.APP_DOMAIN}`, + magicLink: `${process.env.VITE_BASE_URL}`, }, }); } catch (e) { diff --git a/packages/hoppscotch-backend/src/auth/auth.service.ts b/packages/hoppscotch-backend/src/auth/auth.service.ts index 04d2f1722..e6a4d9549 100644 --- a/packages/hoppscotch-backend/src/auth/auth.service.ts +++ b/packages/hoppscotch-backend/src/auth/auth.service.ts @@ -94,9 +94,9 @@ export class AuthService { */ private async generateRefreshToken(userUid: string) { const refreshTokenPayload: RefreshTokenPayload = { - iss: process.env.APP_DOMAIN, + iss: process.env.VITE_BASE_URL, sub: userUid, - aud: [process.env.APP_DOMAIN], + aud: [process.env.VITE_BASE_URL], }; const refreshToken = await this.jwtService.sign(refreshTokenPayload, { @@ -126,9 +126,9 @@ export class AuthService { */ async generateAuthTokens(userUid: string) { const accessTokenPayload: AccessTokenPayload = { - iss: process.env.APP_DOMAIN, + iss: process.env.VITE_BASE_URL, sub: userUid, - aud: [process.env.APP_DOMAIN], + aud: [process.env.VITE_BASE_URL], }; const refreshToken = await this.generateRefreshToken(userUid); @@ -217,7 +217,7 @@ export class AuthService { template: 'code-your-own', variables: { inviteeEmail: email, - magicLink: `${process.env.APP_DOMAIN}/magic-link?token=${generatedTokens.token}`, + magicLink: `${process.env.VITE_BASE_URL}/magic-link?token=${generatedTokens.token}`, }, }); diff --git a/packages/hoppscotch-backend/src/gql-schema.ts b/packages/hoppscotch-backend/src/gql-schema.ts index 23d820e1b..15b14c4df 100644 --- a/packages/hoppscotch-backend/src/gql-schema.ts +++ b/packages/hoppscotch-backend/src/gql-schema.ts @@ -21,6 +21,12 @@ import { UserSettingsResolver } from './user-settings/user-settings.resolver'; import { UserResolver } from './user/user.resolver'; import { Logger } from '@nestjs/common'; import { AdminResolver } from './admin/admin.resolver'; +import { TeamEnvsTeamResolver } from './team-environments/team.resolver'; +import { TeamTeamInviteExtResolver } from './team-invitation/team-teaminvite-ext.resolver'; +import { UserRequestUserCollectionResolver } from './user-request/resolvers/user-collection.resolver'; +import { UserEnvsUserResolver } from './user-environment/user.resolver'; +import { UserHistoryUserResolver } from './user-history/user.resolver'; +import { UserSettingsUserResolver } from './user-settings/user.resolver'; /** * All the resolvers present in the application. @@ -31,18 +37,25 @@ const RESOLVERS = [ AdminResolver, ShortcodeResolver, TeamResolver, + TeamEnvsTeamResolver, TeamMemberResolver, TeamCollectionResolver, + TeamTeamInviteExtResolver, TeamEnvironmentsResolver, + TeamEnvsTeamResolver, TeamInvitationResolver, TeamRequestResolver, UserResolver, UserCollectionResolver, UserEnvironmentsResolver, + UserEnvsUserResolver, + UserHistoryUserResolver, UserHistoryResolver, UserCollectionResolver, UserRequestResolver, + UserRequestUserCollectionResolver, UserSettingsResolver, + UserSettingsUserResolver, ]; /** diff --git a/packages/hoppscotch-common/src/components.d.ts b/packages/hoppscotch-common/src/components.d.ts index 9fc832795..714945c49 100644 --- a/packages/hoppscotch-common/src/components.d.ts +++ b/packages/hoppscotch-common/src/components.d.ts @@ -27,6 +27,8 @@ declare module '@vue/runtime-core' { AppShortcutsPrompt: typeof import('./components/app/ShortcutsPrompt.vue')['default'] AppSidenav: typeof import('./components/app/Sidenav.vue')['default'] AppSupport: typeof import('./components/app/Support.vue')['default'] + ButtonPrimary: typeof import('./../../hoppscotch-ui/src/components/button/Primary.vue')['default'] + ButtonSecondary: typeof import('./../../hoppscotch-ui/src/components/button/Secondary.vue')['default'] Collections: typeof import('./components/collections/index.vue')['default'] CollectionsAdd: typeof import('./components/collections/Add.vue')['default'] CollectionsAddFolder: typeof import('./components/collections/AddFolder.vue')['default'] @@ -72,25 +74,6 @@ declare module '@vue/runtime-core' { History: typeof import('./components/history/index.vue')['default'] HistoryGraphqlCard: typeof import('./components/history/graphql/Card.vue')['default'] HistoryRestCard: typeof import('./components/history/rest/Card.vue')['default'] - HoppButtonPrimary: typeof import('@hoppscotch/ui')['HoppButtonPrimary'] - HoppButtonSecondary: typeof import('@hoppscotch/ui')['HoppButtonSecondary'] - HoppSmartAnchor: typeof import('@hoppscotch/ui')['HoppSmartAnchor'] - HoppSmartAutoComplete: typeof import('@hoppscotch/ui')['HoppSmartAutoComplete'] - HoppSmartCheckbox: typeof import('@hoppscotch/ui')['HoppSmartCheckbox'] - HoppSmartConfirmModal: typeof import('@hoppscotch/ui')['HoppSmartConfirmModal'] - HoppSmartExpand: typeof import('@hoppscotch/ui')['HoppSmartExpand'] - HoppSmartFileChip: typeof import('@hoppscotch/ui')['HoppSmartFileChip'] - HoppSmartItem: typeof import('@hoppscotch/ui')['HoppSmartItem'] - HoppSmartLink: typeof import('@hoppscotch/ui')['HoppSmartLink'] - HoppSmartModal: typeof import('@hoppscotch/ui')['HoppSmartModal'] - HoppSmartProgressRing: typeof import('@hoppscotch/ui')['HoppSmartProgressRing'] - HoppSmartRadioGroup: typeof import('@hoppscotch/ui')['HoppSmartRadioGroup'] - HoppSmartSlideOver: typeof import('@hoppscotch/ui')['HoppSmartSlideOver'] - HoppSmartSpinner: typeof import('@hoppscotch/ui')['HoppSmartSpinner'] - HoppSmartTab: typeof import('@hoppscotch/ui')['HoppSmartTab'] - HoppSmartTabs: typeof import('@hoppscotch/ui')['HoppSmartTabs'] - HoppSmartWindow: typeof import('@hoppscotch/ui')['HoppSmartWindow'] - HoppSmartWindows: typeof import('@hoppscotch/ui')['HoppSmartWindows'] HttpAuthorization: typeof import('./components/http/Authorization.vue')['default'] HttpAuthorizationApiKey: typeof import('./components/http/authorization/ApiKey.vue')['default'] HttpAuthorizationBasic: typeof import('./components/http/authorization/Basic.vue')['default'] @@ -116,18 +99,6 @@ declare module '@vue/runtime-core' { HttpTestResultReport: typeof import('./components/http/TestResultReport.vue')['default'] HttpTests: typeof import('./components/http/Tests.vue')['default'] HttpURLEncodedParams: typeof import('./components/http/URLEncodedParams.vue')['default'] - IconLucideArrowLeft: typeof import('~icons/lucide/arrow-left')['default'] - IconLucideCheckCircle: typeof import('~icons/lucide/check-circle')['default'] - IconLucideChevronRight: typeof import('~icons/lucide/chevron-right')['default'] - IconLucideGlobe: typeof import('~icons/lucide/globe')['default'] - IconLucideHelpCircle: typeof import('~icons/lucide/help-circle')['default'] - IconLucideInbox: typeof import('~icons/lucide/inbox')['default'] - IconLucideInfo: typeof import('~icons/lucide/info')['default'] - IconLucideLayers: typeof import('~icons/lucide/layers')['default'] - IconLucideMinus: typeof import('~icons/lucide/minus')['default'] - IconLucideSearch: typeof import('~icons/lucide/search')['default'] - IconLucideUser: typeof import('~icons/lucide/user')['default'] - IconLucideUsers: typeof import('~icons/lucide/users')['default'] LensesHeadersRenderer: typeof import('./components/lenses/HeadersRenderer.vue')['default'] LensesHeadersRendererEntry: typeof import('./components/lenses/HeadersRendererEntry.vue')['default'] LensesRenderersHTMLLensRenderer: typeof import('./components/lenses/renderers/HTMLLensRenderer.vue')['default'] @@ -147,12 +118,32 @@ declare module '@vue/runtime-core' { RealtimeLogEntry: typeof import('./components/realtime/LogEntry.vue')['default'] RealtimeSubscription: typeof import('./components/realtime/Subscription.vue')['default'] SmartAccentModePicker: typeof import('./components/smart/AccentModePicker.vue')['default'] + SmartAnchor: typeof import('./../../hoppscotch-ui/src/components/smart/Anchor.vue')['default'] + SmartAutoComplete: typeof import('./../../hoppscotch-ui/src/components/smart/AutoComplete.vue')['default'] SmartChangeLanguage: typeof import('./components/smart/ChangeLanguage.vue')['default'] + SmartCheckbox: typeof import('./../../hoppscotch-ui/src/components/smart/Checkbox.vue')['default'] SmartColorModePicker: typeof import('./components/smart/ColorModePicker.vue')['default'] + SmartConfirmModal: typeof import('./../../hoppscotch-ui/src/components/smart/ConfirmModal.vue')['default'] SmartEnvInput: typeof import('./components/smart/EnvInput.vue')['default'] + SmartExpand: typeof import('./../../hoppscotch-ui/src/components/smart/Expand.vue')['default'] + SmartFileChip: typeof import('./../../hoppscotch-ui/src/components/smart/FileChip.vue')['default'] SmartFontSizePicker: typeof import('./components/smart/FontSizePicker.vue')['default'] + SmartIntersection: typeof import('./../../hoppscotch-ui/src/components/smart/Intersection.vue')['default'] + SmartItem: typeof import('./../../hoppscotch-ui/src/components/smart/Item.vue')['default'] + SmartLink: typeof import('./../../hoppscotch-ui/src/components/smart/Link.vue')['default'] + SmartModal: typeof import('./../../hoppscotch-ui/src/components/smart/Modal.vue')['default'] + SmartProgressRing: typeof import('./../../hoppscotch-ui/src/components/smart/ProgressRing.vue')['default'] + SmartRadio: typeof import('./../../hoppscotch-ui/src/components/smart/Radio.vue')['default'] + SmartRadioGroup: typeof import('./../../hoppscotch-ui/src/components/smart/RadioGroup.vue')['default'] + SmartSlideOver: typeof import('./../../hoppscotch-ui/src/components/smart/SlideOver.vue')['default'] + SmartSpinner: typeof import('./../../hoppscotch-ui/src/components/smart/Spinner.vue')['default'] + SmartTab: typeof import('./../../hoppscotch-ui/src/components/smart/Tab.vue')['default'] + SmartTabs: typeof import('./../../hoppscotch-ui/src/components/smart/Tabs.vue')['default'] + SmartToggle: typeof import('./../../hoppscotch-ui/src/components/smart/Toggle.vue')['default'] SmartTree: typeof import('./components/smart/Tree.vue')['default'] SmartTreeBranch: typeof import('./components/smart/TreeBranch.vue')['default'] + SmartWindow: typeof import('./../../hoppscotch-ui/src/components/smart/Window.vue')['default'] + SmartWindows: typeof import('./../../hoppscotch-ui/src/components/smart/Windows.vue')['default'] TabPrimary: typeof import('./components/tab/Primary.vue')['default'] TabSecondary: typeof import('./components/tab/Secondary.vue')['default'] Teams: typeof import('./components/teams/index.vue')['default'] diff --git a/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql b/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql index 0dac0aa74..b86f38e47 100644 --- a/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql +++ b/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildren.graphql @@ -1,4 +1,4 @@ -query GetCollectionChildren($collectionID: ID!, $cursor: String) { +query GetCollectionChildren($collectionID: ID!, $cursor: ID) { collection(collectionID: $collectionID) { children(cursor: $cursor) { id diff --git a/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildrenIDs.graphql b/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildrenIDs.graphql index 67299f0f9..9c40be483 100644 --- a/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildrenIDs.graphql +++ b/packages/hoppscotch-common/src/helpers/backend/gql/queries/GetCollectionChildrenIDs.graphql @@ -1,4 +1,4 @@ -query GetCollectionChildrenIDs($collectionID: ID!, $cursor: String) { +query GetCollectionChildrenIDs($collectionID: ID!, $cursor: ID) { collection(collectionID: $collectionID) { children(cursor: $cursor) { id diff --git a/packages/hoppscotch-selfhost-web/Caddyfile b/packages/hoppscotch-selfhost-web/Caddyfile new file mode 100644 index 000000000..4d9382b53 --- /dev/null +++ b/packages/hoppscotch-selfhost-web/Caddyfile @@ -0,0 +1,5 @@ +:8080 { + try_files {path} / + root * /site + file_server +} diff --git a/packages/hoppscotch-selfhost-web/Dockerfile b/packages/hoppscotch-selfhost-web/Dockerfile new file mode 100644 index 000000000..bd35ab288 --- /dev/null +++ b/packages/hoppscotch-selfhost-web/Dockerfile @@ -0,0 +1,21 @@ +# Initial stage, just build the app +FROM node:lts as builder + +WORKDIR /usr/src/app + +RUN npm i -g pnpm + +COPY . . +RUN pnpm install + +WORKDIR /usr/src/app/packages/hoppscotch-selfhost-web/ +RUN pnpm run build + + +# Final stage, take the build artifacts and package it into a static Caddy server +FROM caddy:2-alpine +WORKDIR /site +COPY packages/hoppscotch-selfhost-web/Caddyfile /etc/caddy/Caddyfile +COPY --from=builder /usr/src/app/packages/hoppscotch-selfhost-web/dist/ . + +EXPOSE 8080 diff --git a/packages/hoppscotch-selfhost-web/vite.config.ts b/packages/hoppscotch-selfhost-web/vite.config.ts index ce96389cd..a77a9acaf 100644 --- a/packages/hoppscotch-selfhost-web/vite.config.ts +++ b/packages/hoppscotch-selfhost-web/vite.config.ts @@ -37,6 +37,9 @@ export default defineConfig({ build: { sourcemap: true, emptyOutDir: true, + rollupOptions: { + maxParallelFileOps: 2, + }, }, resolve: { alias: { diff --git a/packages/hoppscotch-sh-admin/Caddyfile b/packages/hoppscotch-sh-admin/Caddyfile new file mode 100644 index 000000000..4d9382b53 --- /dev/null +++ b/packages/hoppscotch-sh-admin/Caddyfile @@ -0,0 +1,5 @@ +:8080 { + try_files {path} / + root * /site + file_server +} diff --git a/packages/hoppscotch-sh-admin/Dockerfile b/packages/hoppscotch-sh-admin/Dockerfile new file mode 100644 index 000000000..9795de122 --- /dev/null +++ b/packages/hoppscotch-sh-admin/Dockerfile @@ -0,0 +1,21 @@ +# Initial stage, just build the app +FROM node:lts as builder + +WORKDIR /usr/src/app + +RUN npm i -g pnpm + +COPY . . +RUN pnpm install + +WORKDIR /usr/src/app/packages/hoppscotch-sh-admin/ +RUN pnpm run build + + +# Final stage, take the build artifacts and package it into a static Caddy server +FROM caddy:2-alpine +WORKDIR /site +COPY packages/hoppscotch-sh-admin/Caddyfile /etc/caddy/Caddyfile +COPY --from=builder /usr/src/app/packages/hoppscotch-sh-admin/dist/ . + +EXPOSE 8080 diff --git a/packages/hoppscotch-sh-admin/package.json b/packages/hoppscotch-sh-admin/package.json index 8de132898..501e91273 100644 --- a/packages/hoppscotch-sh-admin/package.json +++ b/packages/hoppscotch-sh-admin/package.json @@ -6,8 +6,10 @@ "scripts": { "dev": "pnpm exec npm-run-all -p -l dev:*", "dev:vite": "vite", - "dev:gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml --watch dotenv_config_path=\".env\"", - "build": "vue-tsc && vite build", + "dev:gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml --watch dotenv_config_path=\"../../.env\"", + "gql-codegen": "graphql-codegen --require dotenv/config --config gql-codegen.yml dotenv_config_path=\"../../.env\"", + "postinstall": "pnpm run gql-codegen", + "build": "vite build", "preview": "vite preview" }, "dependencies": { diff --git a/packages/hoppscotch-sh-admin/src/components.d.ts b/packages/hoppscotch-sh-admin/src/components.d.ts index bb9353b83..4a3626af7 100644 --- a/packages/hoppscotch-sh-admin/src/components.d.ts +++ b/packages/hoppscotch-sh-admin/src/components.d.ts @@ -22,6 +22,24 @@ declare module '@vue/runtime-core' { HoppSmartSpinner: typeof import('@hoppscotch/ui')['HoppSmartSpinner'] IconLucideInbox: typeof import('~icons/lucide/inbox')['default'] IconLucideUser: typeof import('~icons/lucide/user')['default'] + HoppSmartModal: typeof import('@hoppscotch/ui')['HoppSmartModal'] + HoppSmartSpinner: typeof import('@hoppscotch/ui')['HoppSmartSpinner'] + IconLucideArrowLeft: typeof import('~icons/lucide/arrow-left')['default'] + IconLucideChevronDown: typeof import('~icons/lucide/chevron-down')['default'] + IconLucideChevronLeft: typeof import('~icons/lucide/chevron-left')['default'] + IconLucideChevronRight: typeof import('~icons/lucide/chevron-right')['default'] + IconLucideEdit: typeof import('~icons/lucide/edit')['default'] + IconLucideFolderTree: typeof import('~icons/lucide/folder-tree')['default'] + IconLucideInbox: typeof import('~icons/lucide/inbox')['default'] + IconLucideLayoutDashboard: typeof import('~icons/lucide/layout-dashboard')['default'] + IconLucideLineChart: typeof import('~icons/lucide/line-chart')['default'] + IconLucideMenu: typeof import('~icons/lucide/menu')['default'] + IconLucideMoreHorizontal: typeof import('~icons/lucide/more-horizontal')['default'] + IconLucideSidebarClose: typeof import('~icons/lucide/sidebar-close')['default'] + IconLucideSidebarOpen: typeof import('~icons/lucide/sidebar-open')['default'] + IconLucideUser: typeof import('~icons/lucide/user')['default'] + IconLucideUserCog: typeof import('~icons/lucide/user-cog')['default'] + IconLucideUsers: typeof import('~icons/lucide/users')['default'] ProfilePicture: typeof import('./components/profile/Picture.vue')['default'] TeamsAddMembers: typeof import('./components/teams/AddMembers.vue')['default'] TeamsDetails: typeof import('./components/teams/Details.vue')['default'] diff --git a/packages/hoppscotch-sh-admin/src/main.ts b/packages/hoppscotch-sh-admin/src/main.ts index 84e51e900..139c96a5c 100644 --- a/packages/hoppscotch-sh-admin/src/main.ts +++ b/packages/hoppscotch-sh-admin/src/main.ts @@ -12,22 +12,25 @@ import '../assets/scss/styles.scss'; import { HOPP_MODULES } from './modules'; import { auth } from './helpers/auth'; -const app = createApp(App).use( - urql, - createClient({ - url: import.meta.env.VITE_BACKEND_GQL_URL, - fetchOptions: () => { - return { - credentials: 'include', - }; - }, - }) -); +// Top-level await is not available in our targets +(async () => { + const app = createApp(App).use( + urql, + createClient({ + url: import.meta.env.VITE_BACKEND_GQL_URL, + fetchOptions: () => { + return { + credentials: 'include', + }; + }, + }) + ); -// Initialize auth -await auth.performAuthInit(); + // Initialize auth + await auth.performAuthInit(); -// Initialize modules -HOPP_MODULES.forEach((mod) => mod.onVueAppInit?.(app)); + // Initialize modules + HOPP_MODULES.forEach((mod) => mod.onVueAppInit?.(app)); -app.mount('#app'); + app.mount('#app'); +})() diff --git a/packages/hoppscotch-sh-admin/vite.config.ts b/packages/hoppscotch-sh-admin/vite.config.ts index c475ec70b..f6729c80e 100644 --- a/packages/hoppscotch-sh-admin/vite.config.ts +++ b/packages/hoppscotch-sh-admin/vite.config.ts @@ -11,6 +11,7 @@ import path from 'path'; // https://vitejs.dev/config/ export default defineConfig({ + envDir: path.resolve(__dirname, "../../"), server: { port: 3000, }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 924572b0f..9f6f7bef3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,984 +1,1433 @@ -lockfileVersion: 5.4 +lockfileVersion: '6.0' importers: .: - specifiers: - '@commitlint/cli': ^16.2.3 - '@commitlint/config-conventional': ^16.2.1 - '@types/node': ^17.0.24 - cross-env: ^7.0.3 - http-server: ^14.1.1 - husky: ^7.0.4 - lint-staged: ^12.3.8 dependencies: - husky: 7.0.4 - lint-staged: 12.5.0 + husky: + specifier: ^7.0.4 + version: 7.0.4 + lint-staged: + specifier: ^12.3.8 + version: 12.5.0 devDependencies: - '@commitlint/cli': 16.3.0 - '@commitlint/config-conventional': 16.2.4 - '@types/node': 17.0.45 - cross-env: 7.0.3 - http-server: 14.1.1 + '@commitlint/cli': + specifier: ^16.2.3 + version: 16.3.0 + '@commitlint/config-conventional': + specifier: ^16.2.1 + version: 16.2.4 + '@types/node': + specifier: ^17.0.24 + version: 17.0.45 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + http-server: + specifier: ^14.1.1 + version: 14.1.1 packages/codemirror-lang-graphql: - specifiers: - '@codemirror/language': ^6.2.0 - '@lezer/generator': ^1.1.0 - '@lezer/highlight': ^1.0.0 - '@lezer/lr': ^1.2.0 - mocha: ^9.2.2 - rollup: ^2.70.2 - rollup-plugin-dts: ^4.2.1 - rollup-plugin-ts: ^2.0.7 - typescript: ^4.6.3 dependencies: - '@codemirror/language': 6.2.0 - '@lezer/highlight': 1.0.0 - '@lezer/lr': 1.2.0 + '@codemirror/language': + specifier: ^6.2.0 + version: 6.2.0 + '@lezer/highlight': + specifier: ^1.0.0 + version: 1.0.0 + '@lezer/lr': + specifier: ^1.2.0 + version: 1.2.0 devDependencies: - '@lezer/generator': 1.1.0 - mocha: 9.2.2 - rollup: 2.75.7 - rollup-plugin-dts: 4.2.2_okefoyb4o5sittgqayreuhurei - rollup-plugin-ts: 2.0.7_okefoyb4o5sittgqayreuhurei - typescript: 4.7.4 + '@lezer/generator': + specifier: ^1.1.0 + version: 1.1.0 + mocha: + specifier: ^9.2.2 + version: 9.2.2 + rollup: + specifier: ^2.70.2 + version: 2.75.7 + rollup-plugin-dts: + specifier: ^4.2.1 + version: 4.2.2(rollup@2.75.7)(typescript@4.7.4) + rollup-plugin-ts: + specifier: ^2.0.7 + version: 2.0.7(rollup@2.75.7)(typescript@4.7.4) + typescript: + specifier: ^4.6.3 + version: 4.7.4 packages/hoppscotch-backend: - specifiers: - '@nestjs-modules/mailer': ^1.8.1 - '@nestjs/apollo': ^10.1.6 - '@nestjs/cli': ^9.1.5 - '@nestjs/common': ^9.2.1 - '@nestjs/core': ^9.2.1 - '@nestjs/graphql': ^10.1.6 - '@nestjs/jwt': ^10.0.1 - '@nestjs/passport': ^9.0.0 - '@nestjs/platform-express': ^9.2.1 - '@nestjs/schematics': ^9.0.3 - '@nestjs/testing': ^9.2.1 - '@nestjs/throttler': ^4.0.0 - '@prisma/client': ^4.7.1 - '@relmify/jest-fp-ts': ^2.0.2 - '@types/argon2': ^0.15.0 - '@types/bcrypt': ^5.0.0 - '@types/cookie': ^0.5.1 - '@types/cookie-parser': ^1.4.3 - '@types/express': ^4.17.14 - '@types/jest': ^29.4.0 - '@types/luxon': ^3.2.0 - '@types/node': ^18.11.10 - '@types/nodemailer': ^6.4.7 - '@types/passport-github2': ^1.2.5 - '@types/passport-google-oauth20': ^2.0.11 - '@types/passport-jwt': ^3.0.8 - '@types/passport-microsoft': ^0.0.0 - '@types/supertest': ^2.0.12 - '@typescript-eslint/eslint-plugin': ^5.45.0 - '@typescript-eslint/parser': ^5.45.0 - apollo-server-express: ^3.11.1 - apollo-server-plugin-base: ^3.7.1 - argon2: ^0.30.3 - bcrypt: ^5.1.0 - cookie: ^0.5.0 - cookie-parser: ^1.4.6 - cross-env: ^7.0.3 - eslint: ^8.29.0 - eslint-config-prettier: ^8.5.0 - eslint-plugin-prettier: ^4.2.1 - express: ^4.17.1 - express-session: ^1.17.3 - fp-ts: ^2.13.1 - graphql: ^15.5.0 - graphql-query-complexity: ^0.12.0 - graphql-redis-subscriptions: ^2.5.0 - graphql-subscriptions: ^2.0.0 - handlebars: ^4.7.7 - io-ts: ^2.2.16 - ioredis: ^5.2.4 - jest: ^29.4.1 - jest-mock-extended: ^3.0.1 - jwt: link:@types/nestjs/jwt - luxon: ^3.2.1 - nodemailer: ^6.9.1 - passport: ^0.6.0 - passport-github2: ^0.1.12 - passport-google-oauth20: ^2.0.0 - passport-jwt: ^4.0.1 - passport-local: ^1.0.0 - passport-microsoft: ^1.0.0 - prettier: ^2.8.4 - prisma: ^4.7.1 - reflect-metadata: ^0.1.13 - rimraf: ^3.0.2 - rxjs: ^7.6.0 - source-map-support: ^0.5.21 - supertest: ^6.3.2 - ts-jest: 29.0.5 - ts-loader: ^9.4.2 - ts-node: ^10.9.1 - tsconfig-paths: 4.1.1 - typescript: ^4.9.3 dependencies: - '@nestjs-modules/mailer': 1.8.1_x5rh2wwt6qit6v327365jmvnye - '@nestjs/apollo': 10.1.6_s6pw6ravicthrbuw7ih3vbxenu - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i - '@nestjs/graphql': 10.1.6_2khsk5ahlt4vlkrgib4soffmwu - '@nestjs/jwt': 10.0.1_@nestjs+common@9.2.1 - '@nestjs/passport': 9.0.0_6o47igfla2pj7yzh7agpvpttka - '@nestjs/platform-express': 9.2.1_hjcqpoaebdr7gdo5hgc22hthbe - '@nestjs/throttler': 4.0.0_dntc3uqqknzoduyjojusds5kla - '@prisma/client': 4.8.1_prisma@4.8.1 - apollo-server-express: 3.11.1_4mq2c443wwzwcb6dpxnwkfvrzm - apollo-server-plugin-base: 3.7.1_graphql@15.8.0 - argon2: 0.30.3 - bcrypt: 5.1.0 - cookie: 0.5.0 - cookie-parser: 1.4.6 - express: 4.18.2 - express-session: 1.17.3 - fp-ts: 2.13.1 - graphql: 15.8.0 - graphql-query-complexity: 0.12.0_graphql@15.8.0 - graphql-redis-subscriptions: 2.5.0_nsv4zbviaf54hk5nfhl4slig7i - graphql-subscriptions: 2.0.0_graphql@15.8.0 - handlebars: 4.7.7 - io-ts: 2.2.16_fp-ts@2.13.1 - ioredis: 5.2.4 - luxon: 3.2.1 - nodemailer: 6.9.1 - passport: 0.6.0 - passport-github2: 0.1.12 - passport-google-oauth20: 2.0.0 - passport-jwt: 4.0.1 - passport-local: 1.0.0 - passport-microsoft: 1.0.0 - prisma: 4.8.1 - reflect-metadata: 0.1.13 - rimraf: 3.0.2 - rxjs: 7.6.0 + '@nestjs-modules/mailer': + specifier: ^1.8.1 + version: 1.8.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(nodemailer@6.9.1) + '@nestjs/apollo': + specifier: ^10.1.6 + version: 10.1.6(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(@nestjs/graphql@10.1.6)(apollo-server-express@3.11.1)(graphql@15.8.0) + '@nestjs/common': + specifier: ^9.2.1 + version: 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': + specifier: ^9.2.1 + version: 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/graphql': + specifier: ^10.1.6 + version: 10.1.6(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(graphql@15.8.0)(reflect-metadata@0.1.13) + '@nestjs/jwt': + specifier: ^10.0.1 + version: 10.0.1(@nestjs/common@9.2.1) + '@nestjs/passport': + specifier: ^9.0.0 + version: 9.0.0(@nestjs/common@9.2.1)(passport@0.6.0) + '@nestjs/platform-express': + specifier: ^9.2.1 + version: 9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1) + '@nestjs/throttler': + specifier: ^4.0.0 + version: 4.0.0(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(reflect-metadata@0.1.13) + '@prisma/client': + specifier: ^4.7.1 + version: 4.8.1(prisma@4.8.1) + apollo-server-express: + specifier: ^3.11.1 + version: 3.11.1(express@4.18.2)(graphql@15.8.0) + apollo-server-plugin-base: + specifier: ^3.7.1 + version: 3.7.1(graphql@15.8.0) + argon2: + specifier: ^0.30.3 + version: 0.30.3 + bcrypt: + specifier: ^5.1.0 + version: 5.1.0 + cookie: + specifier: ^0.5.0 + version: 0.5.0 + cookie-parser: + specifier: ^1.4.6 + version: 1.4.6 + express: + specifier: ^4.17.1 + version: 4.18.2 + express-session: + specifier: ^1.17.3 + version: 1.17.3 + fp-ts: + specifier: ^2.13.1 + version: 2.13.1 + graphql: + specifier: ^15.5.0 + version: 15.8.0 + graphql-query-complexity: + specifier: ^0.12.0 + version: 0.12.0(graphql@15.8.0) + graphql-redis-subscriptions: + specifier: ^2.5.0 + version: 2.5.0(graphql-subscriptions@2.0.0) + graphql-subscriptions: + specifier: ^2.0.0 + version: 2.0.0(graphql@15.8.0) + handlebars: + specifier: ^4.7.7 + version: 4.7.7 + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.13.1) + ioredis: + specifier: ^5.2.4 + version: 5.2.4 + luxon: + specifier: ^3.2.1 + version: 3.2.1 + nodemailer: + specifier: ^6.9.1 + version: 6.9.1 + passport: + specifier: ^0.6.0 + version: 0.6.0 + passport-github2: + specifier: ^0.1.12 + version: 0.1.12 + passport-google-oauth20: + specifier: ^2.0.0 + version: 2.0.0 + passport-jwt: + specifier: ^4.0.1 + version: 4.0.1 + passport-local: + specifier: ^1.0.0 + version: 1.0.0 + passport-microsoft: + specifier: ^1.0.0 + version: 1.0.0 + prisma: + specifier: ^4.7.1 + version: 4.8.1 + reflect-metadata: + specifier: ^0.1.13 + version: 0.1.13 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + rxjs: + specifier: ^7.6.0 + version: 7.6.0 devDependencies: - '@nestjs/cli': 9.1.5 - '@nestjs/schematics': 9.0.3_typescript@4.9.3 - '@nestjs/testing': 9.2.1_wdbvfsxfdwzlwdfiyh2gynjl4m - '@relmify/jest-fp-ts': 2.0.2_fp-ts@2.13.1+io-ts@2.2.16 - '@types/argon2': 0.15.0 - '@types/bcrypt': 5.0.0 - '@types/cookie': 0.5.1 - '@types/cookie-parser': 1.4.3 - '@types/express': 4.17.14 - '@types/jest': 29.4.0 - '@types/luxon': 3.2.0 - '@types/node': 18.11.10 - '@types/nodemailer': 6.4.7 - '@types/passport-github2': 1.2.5 - '@types/passport-google-oauth20': 2.0.11 - '@types/passport-jwt': 3.0.8 - '@types/passport-microsoft': 0.0.0 - '@types/supertest': 2.0.12 - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - cross-env: 7.0.3 - eslint: 8.29.0 - eslint-config-prettier: 8.5.0_eslint@8.29.0 - eslint-plugin-prettier: 4.2.1_eabs6augosioka4cd2cz5tdama - jest: 29.4.1_j5wyyouvf5aixckc7ltaxrydha - jest-mock-extended: 3.0.1_rnja4qcakvykemesq3rilwl7p4 - jwt: link:@types/nestjs/jwt - prettier: 2.8.4 - source-map-support: 0.5.21 - supertest: 6.3.2 - ts-jest: 29.0.5_rnja4qcakvykemesq3rilwl7p4 - ts-loader: 9.4.2_typescript@4.9.3 - ts-node: 10.9.1_eoe7put6ewfbqpy6gs36tihw6y - tsconfig-paths: 4.1.1 - typescript: 4.9.3 + '@nestjs/cli': + specifier: ^9.1.5 + version: 9.1.5 + '@nestjs/schematics': + specifier: ^9.0.3 + version: 9.0.3(chokidar@3.5.3)(typescript@4.8.4) + '@nestjs/testing': + specifier: ^9.2.1 + version: 9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(@nestjs/platform-express@9.2.1) + '@relmify/jest-fp-ts': + specifier: ^2.0.2 + version: 2.0.2(fp-ts@2.13.1)(io-ts@2.2.16) + '@types/argon2': + specifier: ^0.15.0 + version: 0.15.0 + '@types/bcrypt': + specifier: ^5.0.0 + version: 5.0.0 + '@types/cookie': + specifier: ^0.5.1 + version: 0.5.1 + '@types/cookie-parser': + specifier: ^1.4.3 + version: 1.4.3 + '@types/express': + specifier: ^4.17.14 + version: 4.17.14 + '@types/jest': + specifier: ^29.4.0 + version: 29.4.0 + '@types/luxon': + specifier: ^3.2.0 + version: 3.2.0 + '@types/node': + specifier: ^18.11.10 + version: 18.11.10 + '@types/nodemailer': + specifier: ^6.4.7 + version: 6.4.7 + '@types/passport-github2': + specifier: ^1.2.5 + version: 1.2.5 + '@types/passport-google-oauth20': + specifier: ^2.0.11 + version: 2.0.11 + '@types/passport-jwt': + specifier: ^3.0.8 + version: 3.0.8 + '@types/passport-microsoft': + specifier: ^0.0.0 + version: 0.0.0 + '@types/supertest': + specifier: ^2.0.12 + version: 2.0.12 + '@typescript-eslint/eslint-plugin': + specifier: ^5.45.0 + version: 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.29.0)(typescript@4.9.3) + '@typescript-eslint/parser': + specifier: ^5.45.0 + version: 5.45.0(eslint@8.29.0)(typescript@4.9.3) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + eslint: + specifier: ^8.29.0 + version: 8.29.0 + eslint-config-prettier: + specifier: ^8.5.0 + version: 8.5.0(eslint@8.29.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.5.0)(eslint@8.29.0)(prettier@2.8.4) + jest: + specifier: ^29.4.1 + version: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) + jest-mock-extended: + specifier: ^3.0.1 + version: 3.0.1(jest@29.4.1)(typescript@4.9.3) + jwt: + specifier: link:@types/nestjs/jwt + version: link:@types/nestjs/jwt + prettier: + specifier: ^2.8.4 + version: 2.8.4 + source-map-support: + specifier: ^0.5.21 + version: 0.5.21 + supertest: + specifier: ^6.3.2 + version: 6.3.2 + ts-jest: + specifier: 29.0.5 + version: 29.0.5(@babel/core@7.18.6)(jest@29.4.1)(typescript@4.9.3) + ts-loader: + specifier: ^9.4.2 + version: 9.4.2(typescript@4.9.3)(webpack@5.74.0) + ts-node: + specifier: ^10.9.1 + version: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) + tsconfig-paths: + specifier: 4.1.1 + version: 4.1.1 + typescript: + specifier: ^4.9.3 + version: 4.9.3 packages/hoppscotch-cli: - specifiers: - '@hoppscotch/data': workspace:^0.4.4 - '@hoppscotch/js-sandbox': workspace:^2.0.0 - '@relmify/jest-fp-ts': ^2.0.2 - '@swc/core': ^1.2.181 - '@types/axios': ^0.14.0 - '@types/chalk': ^2.2.0 - '@types/commander': ^2.12.2 - '@types/jest': ^27.4.1 - '@types/lodash': ^4.14.181 - '@types/qs': ^6.9.7 - axios: ^0.21.4 - chalk: ^4.1.1 - commander: ^8.0.0 - esm: ^3.2.25 - fp-ts: ^2.12.1 - io-ts: ^2.2.16 - jest: ^27.5.1 - lodash: ^4.17.21 - prettier: ^2.8.4 - qs: ^6.10.3 - ts-jest: ^27.1.4 - tsup: ^5.12.7 - typescript: ^4.6.4 devDependencies: - '@hoppscotch/data': link:../hoppscotch-data - '@hoppscotch/js-sandbox': link:../hoppscotch-js-sandbox - '@relmify/jest-fp-ts': 2.0.2_fp-ts@2.12.1+io-ts@2.2.16 - '@swc/core': 1.2.213 - '@types/axios': 0.14.0 - '@types/chalk': 2.2.0 - '@types/commander': 2.12.2 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 - '@types/qs': 6.9.7 - axios: 0.21.4 - chalk: 4.1.2 - commander: 8.3.0 - esm: 3.2.25 - fp-ts: 2.12.1 - io-ts: 2.2.16_fp-ts@2.12.1 - jest: 27.5.1 - lodash: 4.17.21 - prettier: 2.8.4 - qs: 6.11.0 - ts-jest: 27.1.5_mqaoisgizytgigbr3gbjwvnjie - tsup: 5.12.9_liswqajbmjp6gyfdb6pun2kq5i - typescript: 4.7.4 + '@hoppscotch/data': + specifier: workspace:^0.4.4 + version: link:../hoppscotch-data + '@hoppscotch/js-sandbox': + specifier: workspace:^2.0.0 + version: link:../hoppscotch-js-sandbox + '@relmify/jest-fp-ts': + specifier: ^2.0.2 + version: 2.0.2(fp-ts@2.12.1)(io-ts@2.2.16) + '@swc/core': + specifier: ^1.2.181 + version: 1.2.213 + '@types/axios': + specifier: ^0.14.0 + version: 0.14.0 + '@types/chalk': + specifier: ^2.2.0 + version: 2.2.0 + '@types/commander': + specifier: ^2.12.2 + version: 2.12.2 + '@types/jest': + specifier: ^27.4.1 + version: 27.5.2 + '@types/lodash': + specifier: ^4.14.181 + version: 4.14.182 + '@types/qs': + specifier: ^6.9.7 + version: 6.9.7 + axios: + specifier: ^0.21.4 + version: 0.21.4 + chalk: + specifier: ^4.1.1 + version: 4.1.2 + commander: + specifier: ^8.0.0 + version: 8.3.0 + esm: + specifier: ^3.2.25 + version: 3.2.25 + fp-ts: + specifier: ^2.12.1 + version: 2.12.1 + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.12.1) + jest: + specifier: ^27.5.1 + version: 27.5.1 + lodash: + specifier: ^4.17.21 + version: 4.17.21 + prettier: + specifier: ^2.8.4 + version: 2.8.4 + qs: + specifier: ^6.10.3 + version: 6.11.0 + ts-jest: + specifier: ^27.1.4 + version: 27.1.5(@babel/core@7.18.6)(@types/jest@27.5.2)(esbuild@0.14.48)(jest@27.5.1)(typescript@4.7.4) + tsup: + specifier: ^5.12.7 + version: 5.12.9(@swc/core@1.2.213)(typescript@4.7.4) + typescript: + specifier: ^4.6.4 + version: 4.7.4 packages/hoppscotch-common: - specifiers: - '@apidevtools/swagger-parser': ^10.1.0 - '@codemirror/autocomplete': ^6.0.3 - '@codemirror/commands': ^6.0.1 - '@codemirror/lang-javascript': ^6.0.1 - '@codemirror/lang-json': ^6.0.0 - '@codemirror/lang-xml': ^6.0.0 - '@codemirror/language': ^6.2.0 - '@codemirror/legacy-modes': ^6.1.0 - '@codemirror/lint': ^6.0.0 - '@codemirror/search': ^6.0.0 - '@codemirror/state': ^6.1.0 - '@codemirror/view': ^6.0.2 - '@esbuild-plugins/node-globals-polyfill': ^0.1.1 - '@esbuild-plugins/node-modules-polyfill': ^0.1.4 - '@graphql-codegen/add': ^3.2.0 - '@graphql-codegen/cli': ^2.8.0 - '@graphql-codegen/typed-document-node': ^2.3.1 - '@graphql-codegen/typescript': ^2.7.1 - '@graphql-codegen/typescript-operations': ^2.5.1 - '@graphql-codegen/typescript-urql-graphcache': ^2.3.1 - '@graphql-codegen/urql-introspection': ^2.2.0 - '@graphql-typed-document-node/core': ^3.1.1 - '@hoppscotch/codemirror-lang-graphql': workspace:^0.2.0 - '@hoppscotch/data': workspace:^0.4.4 - '@hoppscotch/js-sandbox': workspace:^2.1.0 - '@hoppscotch/ui': workspace:^0.0.1 - '@hoppscotch/vue-toasted': ^0.1.0 - '@iconify-json/lucide': ^1.1.40 - '@intlify/vite-plugin-vue-i18n': ^6.0.1 - '@lezer/highlight': ^1.0.0 - '@rushstack/eslint-patch': ^1.1.4 - '@sentry/tracing': ^7.13.0 - '@sentry/vue': ^7.13.0 - '@types/js-yaml': ^4.0.5 - '@types/lodash-es': ^4.17.6 - '@types/lossless-json': ^1.0.1 - '@types/nprogress': ^0.2.0 - '@types/paho-mqtt': ^1.0.6 - '@types/postman-collection': ^3.5.7 - '@types/splitpanes': ^2.2.1 - '@types/uuid': ^8.3.4 - '@types/yargs-parser': ^21.0.0 - '@typescript-eslint/eslint-plugin': ^5.19.0 - '@typescript-eslint/parser': ^5.19.0 - '@urql/core': ^2.5.0 - '@urql/devtools': ^2.0.3 - '@urql/exchange-auth': ^0.1.7 - '@urql/exchange-graphcache': ^4.4.3 - '@vitejs/plugin-legacy': ^2.3.0 - '@vitejs/plugin-vue': ^3.1.0 - '@vue/compiler-sfc': ^3.2.39 - '@vue/eslint-config-typescript': ^11.0.1 - '@vue/runtime-core': ^3.2.39 - '@vueuse/core': ^8.7.5 - '@vueuse/head': ^0.7.9 - acorn-walk: ^8.2.0 - axios: ^0.21.4 - buffer: ^6.0.3 - cross-env: ^7.0.3 - dotenv: ^16.0.3 - eslint: ^8.24.0 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-vue: ^9.5.1 - esprima: ^4.0.1 - events: ^3.3.0 - fp-ts: ^2.12.1 - fuse.js: ^6.6.2 - globalthis: ^1.0.3 - graphql: ^15.5.0 - graphql-language-service-interface: ^2.9.1 - graphql-tag: ^2.12.6 - httpsnippet: ^2.0.0 - insomnia-importers: ^3.3.0 - io-ts: ^2.2.16 - js-yaml: ^4.1.0 - jsonpath-plus: ^7.0.0 - lodash-es: ^4.17.21 - lossless-json: ^1.0.5 - npm-run-all: ^4.1.5 - nprogress: ^0.2.0 - openapi-types: ^12.0.0 - paho-mqtt: ^1.1.0 - path: ^0.12.7 - postman-collection: ^4.1.4 - process: ^0.11.10 - qs: ^6.10.3 - rollup-plugin-polyfill-node: ^0.10.1 - rxjs: ^7.5.5 - sass: ^1.53.0 - socket.io-client-v2: npm:socket.io-client@^2.4.0 - socket.io-client-v3: npm:socket.io-client@^3.1.3 - socket.io-client-v4: npm:socket.io-client@^4.4.1 - socketio-wildcard: ^2.0.0 - splitpanes: ^3.1.1 - stream-browserify: ^3.0.0 - subscriptions-transport-ws: ^0.11.0 - tern: ^0.24.3 - timers: ^0.1.1 - tippy.js: ^6.3.7 - typescript: ^4.5.4 - unplugin-icons: ^0.14.9 - unplugin-vue-components: ^0.21.0 - url: ^0.11.0 - util: ^0.12.4 - uuid: ^8.3.2 - vite: ^3.1.4 - vite-plugin-checker: ^0.5.1 - vite-plugin-fonts: ^0.6.0 - vite-plugin-html-config: ^1.0.10 - vite-plugin-inspect: ^0.7.4 - vite-plugin-pages: ^0.26.0 - vite-plugin-pages-sitemap: ^1.4.0 - vite-plugin-pwa: ^0.13.1 - vite-plugin-vue-layouts: ^0.7.0 - vite-plugin-windicss: ^1.8.8 - vue: ^3.2.25 - vue-github-button: ^3.0.3 - vue-i18n: ^9.2.2 - vue-pdf-embed: ^1.1.4 - vue-router: ^4.0.16 - vue-tippy: 6.0.0-alpha.58 - vue-tsc: ^0.38.2 - vuedraggable-es: ^4.1.1 - windicss: ^3.5.6 - wonka: ^4.0.15 - workbox-window: ^6.5.4 - yargs-parser: ^21.1.1 dependencies: - '@apidevtools/swagger-parser': 10.1.0_openapi-types@12.0.0 - '@codemirror/autocomplete': 6.0.3_2tvhcfwni47fhspxv36jamkaqi - '@codemirror/commands': 6.0.1 - '@codemirror/lang-javascript': 6.0.1 - '@codemirror/lang-json': 6.0.0 - '@codemirror/lang-xml': 6.0.0_@codemirror+view@6.0.2 - '@codemirror/language': 6.2.0 - '@codemirror/legacy-modes': 6.1.0 - '@codemirror/lint': 6.0.0 - '@codemirror/search': 6.0.0 - '@codemirror/state': 6.1.0 - '@codemirror/view': 6.0.2 - '@hoppscotch/codemirror-lang-graphql': link:../codemirror-lang-graphql - '@hoppscotch/data': link:../hoppscotch-data - '@hoppscotch/js-sandbox': link:../hoppscotch-js-sandbox - '@hoppscotch/ui': link:../hoppscotch-ui - '@hoppscotch/vue-toasted': 0.1.0_vue@3.2.37 - '@lezer/highlight': 1.0.0 - '@sentry/tracing': 7.13.0 - '@sentry/vue': 7.13.0_vue@3.2.37 - '@urql/core': 2.5.0_graphql@15.8.0 - '@urql/devtools': 2.0.3_orwd6brffn6tmxxcil5zw6uzri - '@urql/exchange-auth': 0.1.7_graphql@15.8.0 - '@urql/exchange-graphcache': 4.4.3_graphql@15.8.0 - '@vitejs/plugin-legacy': 2.3.0_vite@3.1.4 - '@vueuse/core': 8.7.5_vue@3.2.37 - '@vueuse/head': 0.7.9_vue@3.2.37 - acorn-walk: 8.2.0 - axios: 0.21.4 - buffer: 6.0.3 - esprima: 4.0.1 - events: 3.3.0 - fp-ts: 2.12.1 - fuse.js: 6.6.2 - globalthis: 1.0.3 - graphql: 15.8.0 - graphql-language-service-interface: 2.10.2_h5eoywvcjsa4emif44kddonyyu - graphql-tag: 2.12.6_graphql@15.8.0 - httpsnippet: 2.0.0 - insomnia-importers: 3.3.0_openapi-types@12.0.0 - io-ts: 2.2.16_fp-ts@2.12.1 - js-yaml: 4.1.0 - jsonpath-plus: 7.0.0 - lodash-es: 4.17.21 - lossless-json: 1.0.5 - nprogress: 0.2.0 - paho-mqtt: 1.1.0 - path: 0.12.7 - postman-collection: 4.1.4 - process: 0.11.10 - qs: 6.11.0 - rxjs: 7.5.5 - socket.io-client-v2: /socket.io-client/2.5.0 - socket.io-client-v3: /socket.io-client/3.1.3 - socket.io-client-v4: /socket.io-client/4.5.1 - socketio-wildcard: 2.0.0 - splitpanes: 3.1.1 - stream-browserify: 3.0.0 - subscriptions-transport-ws: 0.11.0_graphql@15.8.0 - tern: 0.24.3 - timers: 0.1.1 - tippy.js: 6.3.7 - url: 0.11.0 - util: 0.12.4 - uuid: 8.3.2 - vue: 3.2.37 - vue-github-button: 3.0.3 - vue-i18n: 9.2.2_vue@3.2.37 - vue-pdf-embed: 1.1.4_vue@3.2.37 - vue-router: 4.1.0_vue@3.2.37 - vue-tippy: 6.0.0-alpha.58_vue@3.2.37 - vuedraggable-es: 4.1.1_vue@3.2.37 - wonka: 4.0.15 - workbox-window: 6.5.4 - yargs-parser: 21.1.1 + '@apidevtools/swagger-parser': + specifier: ^10.1.0 + version: 10.1.0(openapi-types@12.0.0) + '@codemirror/autocomplete': + specifier: ^6.0.3 + version: 6.0.3(@codemirror/language@6.2.0)(@codemirror/state@6.1.0)(@codemirror/view@6.0.2)(@lezer/common@1.0.0) + '@codemirror/commands': + specifier: ^6.0.1 + version: 6.0.1 + '@codemirror/lang-javascript': + specifier: ^6.0.1 + version: 6.0.1 + '@codemirror/lang-json': + specifier: ^6.0.0 + version: 6.0.0 + '@codemirror/lang-xml': + specifier: ^6.0.0 + version: 6.0.0(@codemirror/view@6.0.2) + '@codemirror/language': + specifier: ^6.2.0 + version: 6.2.0 + '@codemirror/legacy-modes': + specifier: ^6.1.0 + version: 6.1.0 + '@codemirror/lint': + specifier: ^6.0.0 + version: 6.0.0 + '@codemirror/search': + specifier: ^6.0.0 + version: 6.0.0 + '@codemirror/state': + specifier: ^6.1.0 + version: 6.1.0 + '@codemirror/view': + specifier: ^6.0.2 + version: 6.0.2 + '@hoppscotch/codemirror-lang-graphql': + specifier: workspace:^0.2.0 + version: link:../codemirror-lang-graphql + '@hoppscotch/data': + specifier: workspace:^0.4.4 + version: link:../hoppscotch-data + '@hoppscotch/js-sandbox': + specifier: workspace:^2.1.0 + version: link:../hoppscotch-js-sandbox + '@hoppscotch/ui': + specifier: workspace:^0.0.1 + version: link:../hoppscotch-ui + '@hoppscotch/vue-toasted': + specifier: ^0.1.0 + version: 0.1.0(vue@3.2.37) + '@lezer/highlight': + specifier: ^1.0.0 + version: 1.0.0 + '@sentry/tracing': + specifier: ^7.13.0 + version: 7.13.0 + '@sentry/vue': + specifier: ^7.13.0 + version: 7.13.0(vue@3.2.37) + '@urql/core': + specifier: ^2.5.0 + version: 2.5.0(graphql@15.8.0) + '@urql/devtools': + specifier: ^2.0.3 + version: 2.0.3(@urql/core@2.5.0)(graphql@15.8.0) + '@urql/exchange-auth': + specifier: ^0.1.7 + version: 0.1.7(graphql@15.8.0) + '@urql/exchange-graphcache': + specifier: ^4.4.3 + version: 4.4.3(graphql@15.8.0) + '@vitejs/plugin-legacy': + specifier: ^2.3.0 + version: 2.3.0(terser@5.14.1)(vite@3.1.4) + '@vueuse/core': + specifier: ^8.7.5 + version: 8.7.5(vue@3.2.37) + '@vueuse/head': + specifier: ^0.7.9 + version: 0.7.9(vue@3.2.37) + acorn-walk: + specifier: ^8.2.0 + version: 8.2.0 + axios: + specifier: ^0.21.4 + version: 0.21.4 + buffer: + specifier: ^6.0.3 + version: 6.0.3 + esprima: + specifier: ^4.0.1 + version: 4.0.1 + events: + specifier: ^3.3.0 + version: 3.3.0 + fp-ts: + specifier: ^2.12.1 + version: 2.12.1 + fuse.js: + specifier: ^6.6.2 + version: 6.6.2 + globalthis: + specifier: ^1.0.3 + version: 1.0.3 + graphql: + specifier: ^15.5.0 + version: 15.8.0 + graphql-language-service-interface: + specifier: ^2.9.1 + version: 2.10.2(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) + graphql-tag: + specifier: ^2.12.6 + version: 2.12.6(graphql@15.8.0) + httpsnippet: + specifier: ^2.0.0 + version: 2.0.0(mkdirp@1.0.4) + insomnia-importers: + specifier: ^3.3.0 + version: 3.3.0(openapi-types@12.0.0) + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.12.1) + js-yaml: + specifier: ^4.1.0 + version: 4.1.0 + jsonpath-plus: + specifier: ^7.0.0 + version: 7.0.0 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + lossless-json: + specifier: ^1.0.5 + version: 1.0.5 + nprogress: + specifier: ^0.2.0 + version: 0.2.0 + paho-mqtt: + specifier: ^1.1.0 + version: 1.1.0 + path: + specifier: ^0.12.7 + version: 0.12.7 + postman-collection: + specifier: ^4.1.4 + version: 4.1.4 + process: + specifier: ^0.11.10 + version: 0.11.10 + qs: + specifier: ^6.10.3 + version: 6.11.0 + rxjs: + specifier: ^7.5.5 + version: 7.5.5 + socket.io-client-v2: + specifier: npm:socket.io-client@^2.4.0 + version: /socket.io-client@2.5.0 + socket.io-client-v3: + specifier: npm:socket.io-client@^3.1.3 + version: /socket.io-client@3.1.3 + socket.io-client-v4: + specifier: npm:socket.io-client@^4.4.1 + version: /socket.io-client@4.5.1 + socketio-wildcard: + specifier: ^2.0.0 + version: 2.0.0 + splitpanes: + specifier: ^3.1.1 + version: 3.1.1 + stream-browserify: + specifier: ^3.0.0 + version: 3.0.0 + subscriptions-transport-ws: + specifier: ^0.11.0 + version: 0.11.0(graphql@15.8.0) + tern: + specifier: ^0.24.3 + version: 0.24.3 + timers: + specifier: ^0.1.1 + version: 0.1.1 + tippy.js: + specifier: ^6.3.7 + version: 6.3.7 + url: + specifier: ^0.11.0 + version: 0.11.0 + util: + specifier: ^0.12.4 + version: 0.12.4 + uuid: + specifier: ^8.3.2 + version: 8.3.2 + vue: + specifier: ^3.2.25 + version: 3.2.37 + vue-github-button: + specifier: ^3.0.3 + version: 3.0.3 + vue-i18n: + specifier: ^9.2.2 + version: 9.2.2(vue@3.2.37) + vue-pdf-embed: + specifier: ^1.1.4 + version: 1.1.4(vue@3.2.37) + vue-router: + specifier: ^4.0.16 + version: 4.1.0(vue@3.2.37) + vue-tippy: + specifier: 6.0.0-alpha.58 + version: 6.0.0-alpha.58(vue@3.2.37) + vuedraggable-es: + specifier: ^4.1.1 + version: 4.1.1(vue@3.2.37) + wonka: + specifier: ^4.0.15 + version: 4.0.15 + workbox-window: + specifier: ^6.5.4 + version: 6.5.4 + yargs-parser: + specifier: ^21.1.1 + version: 21.1.1 devDependencies: - '@esbuild-plugins/node-globals-polyfill': 0.1.1 - '@esbuild-plugins/node-modules-polyfill': 0.1.4 - '@graphql-codegen/add': 3.2.0_graphql@15.8.0 - '@graphql-codegen/cli': 2.8.0_h5eoywvcjsa4emif44kddonyyu - '@graphql-codegen/typed-document-node': 2.3.1_graphql@15.8.0 - '@graphql-codegen/typescript': 2.7.1_graphql@15.8.0 - '@graphql-codegen/typescript-operations': 2.5.1_graphql@15.8.0 - '@graphql-codegen/typescript-urql-graphcache': 2.3.1_52tgh2q4afbldbawprm4p57eiu - '@graphql-codegen/urql-introspection': 2.2.0_graphql@15.8.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 - '@iconify-json/lucide': 1.1.40 - '@intlify/vite-plugin-vue-i18n': 6.0.1_vite@3.1.4+vue-i18n@9.2.2 - '@rushstack/eslint-patch': 1.1.4 - '@types/js-yaml': 4.0.5 - '@types/lodash-es': 4.17.6 - '@types/lossless-json': 1.0.1 - '@types/nprogress': 0.2.0 - '@types/paho-mqtt': 1.0.6 - '@types/postman-collection': 3.5.7 - '@types/splitpanes': 2.2.1 - '@types/uuid': 8.3.4 - '@types/yargs-parser': 21.0.0 - '@typescript-eslint/eslint-plugin': 5.30.6_hu4fhyobdl4qfb4p4ewioh73ay - '@typescript-eslint/parser': 5.30.6_oma37ntcsyoxqn5sr4l7ekf4na - '@vitejs/plugin-vue': 3.1.0_vite@3.1.4+vue@3.2.37 - '@vue/compiler-sfc': 3.2.39 - '@vue/eslint-config-typescript': 11.0.1_kpxf5iryryrlim2ejhkirkiuey - '@vue/runtime-core': 3.2.39 - cross-env: 7.0.3 - dotenv: 16.0.3 - eslint: 8.24.0 - eslint-plugin-prettier: 4.2.1_eslint@8.24.0 - eslint-plugin-vue: 9.5.1_eslint@8.24.0 - npm-run-all: 4.1.5 - openapi-types: 12.0.0 - rollup-plugin-polyfill-node: 0.10.1 - sass: 1.53.0 - typescript: 4.7.4 - unplugin-icons: 0.14.9_vnheu5mvzzbfbuhqo4shkhdhei - unplugin-vue-components: 0.21.0_vite@3.1.4+vue@3.2.37 - vite: 3.1.4_sass@1.53.0 - vite-plugin-checker: 0.5.1_kjjvnh3jl66vp4phsscdedqila - vite-plugin-fonts: 0.6.0_vite@3.1.4 - vite-plugin-html-config: 1.0.10_vite@3.1.4 - vite-plugin-inspect: 0.7.4_vite@3.1.4 - vite-plugin-pages: 0.26.0_vnheu5mvzzbfbuhqo4shkhdhei - vite-plugin-pages-sitemap: 1.4.0 - vite-plugin-pwa: 0.13.1_bg4cnt4dy3xq3a47wkujd6ryzq - vite-plugin-vue-layouts: 0.7.0_oewzdqozxqnqgsrjzmwikx34vi - vite-plugin-windicss: 1.8.8_vite@3.1.4 - vue-tsc: 0.38.2_typescript@4.7.4 - windicss: 3.5.6 + '@esbuild-plugins/node-globals-polyfill': + specifier: ^0.1.1 + version: 0.1.1(esbuild@0.15.15) + '@esbuild-plugins/node-modules-polyfill': + specifier: ^0.1.4 + version: 0.1.4(esbuild@0.15.15) + '@graphql-codegen/add': + specifier: ^3.2.0 + version: 3.2.0(graphql@15.8.0) + '@graphql-codegen/cli': + specifier: ^2.8.0 + version: 2.8.0(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) + '@graphql-codegen/typed-document-node': + specifier: ^2.3.1 + version: 2.3.1(graphql@15.8.0) + '@graphql-codegen/typescript': + specifier: ^2.7.1 + version: 2.7.1(graphql@15.8.0) + '@graphql-codegen/typescript-operations': + specifier: ^2.5.1 + version: 2.5.1(graphql@15.8.0) + '@graphql-codegen/typescript-urql-graphcache': + specifier: ^2.3.1 + version: 2.3.1(@urql/exchange-graphcache@4.4.3)(graphql-tag@2.12.6)(graphql@15.8.0) + '@graphql-codegen/urql-introspection': + specifier: ^2.2.0 + version: 2.2.0(graphql@15.8.0) + '@graphql-typed-document-node/core': + specifier: ^3.1.1 + version: 3.1.1(graphql@15.8.0) + '@iconify-json/lucide': + specifier: ^1.1.40 + version: 1.1.40 + '@intlify/vite-plugin-vue-i18n': + specifier: ^6.0.1 + version: 6.0.1(vite@3.1.4)(vue-i18n@9.2.2) + '@rushstack/eslint-patch': + specifier: ^1.1.4 + version: 1.1.4 + '@types/js-yaml': + specifier: ^4.0.5 + version: 4.0.5 + '@types/lodash-es': + specifier: ^4.17.6 + version: 4.17.6 + '@types/lossless-json': + specifier: ^1.0.1 + version: 1.0.1 + '@types/nprogress': + specifier: ^0.2.0 + version: 0.2.0 + '@types/paho-mqtt': + specifier: ^1.0.6 + version: 1.0.6 + '@types/postman-collection': + specifier: ^3.5.7 + version: 3.5.7 + '@types/splitpanes': + specifier: ^2.2.1 + version: 2.2.1 + '@types/uuid': + specifier: ^8.3.4 + version: 8.3.4 + '@types/yargs-parser': + specifier: ^21.0.0 + version: 21.0.0 + '@typescript-eslint/eslint-plugin': + specifier: ^5.19.0 + version: 5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.24.0)(typescript@4.7.4) + '@typescript-eslint/parser': + specifier: ^5.19.0 + version: 5.30.6(eslint@8.24.0)(typescript@4.7.4) + '@vitejs/plugin-vue': + specifier: ^3.1.0 + version: 3.1.0(vite@3.1.4)(vue@3.2.37) + '@vue/compiler-sfc': + specifier: ^3.2.39 + version: 3.2.39 + '@vue/eslint-config-typescript': + specifier: ^11.0.1 + version: 11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.24.0)(typescript@4.7.4) + '@vue/runtime-core': + specifier: ^3.2.39 + version: 3.2.39 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + dotenv: + specifier: ^16.0.3 + version: 16.0.3 + eslint: + specifier: ^8.24.0 + version: 8.24.0 + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4) + eslint-plugin-vue: + specifier: ^9.5.1 + version: 9.5.1(eslint@8.24.0) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + openapi-types: + specifier: ^12.0.0 + version: 12.0.0 + rollup-plugin-polyfill-node: + specifier: ^0.10.1 + version: 0.10.1(rollup@2.79.1) + sass: + specifier: ^1.53.0 + version: 1.53.0 + typescript: + specifier: ^4.5.4 + version: 4.7.4 + unplugin-icons: + specifier: ^0.14.9 + version: 0.14.9(@vue/compiler-sfc@3.2.39)(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4) + unplugin-vue-components: + specifier: ^0.21.0 + version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0) + vite: + specifier: ^3.1.4 + version: 3.1.4(sass@1.53.0)(terser@5.14.1) + vite-plugin-checker: + specifier: ^0.5.1 + version: 0.5.1(eslint@8.24.0)(typescript@4.7.4)(vite@3.1.4) + vite-plugin-fonts: + specifier: ^0.6.0 + version: 0.6.0(vite@3.1.4) + vite-plugin-html-config: + specifier: ^1.0.10 + version: 1.0.10(vite@3.1.4) + vite-plugin-inspect: + specifier: ^0.7.4 + version: 0.7.4(vite@3.1.4) + vite-plugin-pages: + specifier: ^0.26.0 + version: 0.26.0(@vue/compiler-sfc@3.2.39)(vite@3.1.4) + vite-plugin-pages-sitemap: + specifier: ^1.4.0 + version: 1.4.0 + vite-plugin-pwa: + specifier: ^0.13.1 + version: 0.13.1(vite@3.1.4)(workbox-build@6.5.4)(workbox-window@6.5.4) + vite-plugin-vue-layouts: + specifier: ^0.7.0 + version: 0.7.0(vite@3.1.4)(vue-router@4.1.0)(vue@3.2.37) + vite-plugin-windicss: + specifier: ^1.8.8 + version: 1.8.8(vite@3.1.4) + vue-tsc: + specifier: ^0.38.2 + version: 0.38.2(typescript@4.7.4) + windicss: + specifier: ^3.5.6 + version: 3.5.6 packages/hoppscotch-data: - specifiers: - '@types/lodash': ^4.14.181 - fp-ts: ^2.11.10 - io-ts: ^2.2.16 - lodash: ^4.17.21 - parser-ts: ^0.6.16 - typescript: ^4.6.3 - vite: ^3.2.3 dependencies: - fp-ts: 2.12.1 - io-ts: 2.2.16_fp-ts@2.12.1 - lodash: 4.17.21 - parser-ts: 0.6.16_fp-ts@2.12.1 + fp-ts: + specifier: ^2.11.10 + version: 2.12.1 + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.12.1) + lodash: + specifier: ^4.17.21 + version: 4.17.21 + parser-ts: + specifier: ^0.6.16 + version: 0.6.16(fp-ts@2.12.1) devDependencies: - '@types/lodash': 4.14.182 - typescript: 4.7.4 - vite: 3.2.4 + '@types/lodash': + specifier: ^4.14.181 + version: 4.14.182 + typescript: + specifier: ^4.6.3 + version: 4.7.4 + vite: + specifier: ^3.2.3 + version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) packages/hoppscotch-js-sandbox: - specifiers: - '@digitak/esrun': ^3.1.2 - '@hoppscotch/data': workspace:^0.4.4 - '@relmify/jest-fp-ts': ^2.0.1 - '@types/jest': ^27.4.1 - '@types/lodash': ^4.14.181 - '@types/node': ^17.0.24 - '@typescript-eslint/eslint-plugin': ^5.19.0 - '@typescript-eslint/parser': ^5.19.0 - eslint: ^8.13.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-prettier: ^4.2.1 - fp-ts: ^2.11.10 - io-ts: ^2.2.16 - jest: ^27.5.1 - lodash: ^4.17.21 - prettier: ^2.8.4 - quickjs-emscripten: ^0.15.0 - ts-jest: ^27.1.4 - tsup: ^5.12.5 - typescript: ^4.6.3 dependencies: - '@hoppscotch/data': link:../hoppscotch-data - fp-ts: 2.12.1 - lodash: 4.17.21 - quickjs-emscripten: 0.15.0 - tsup: 5.12.9_typescript@4.7.4 + '@hoppscotch/data': + specifier: workspace:^0.4.4 + version: link:../hoppscotch-data + fp-ts: + specifier: ^2.11.10 + version: 2.12.1 + lodash: + specifier: ^4.17.21 + version: 4.17.21 + quickjs-emscripten: + specifier: ^0.15.0 + version: 0.15.0 + tsup: + specifier: ^5.12.5 + version: 5.12.9(@swc/core@1.2.213)(typescript@4.7.4) devDependencies: - '@digitak/esrun': 3.2.8 - '@relmify/jest-fp-ts': 2.0.2_fp-ts@2.12.1+io-ts@2.2.16 - '@types/jest': 27.5.2 - '@types/lodash': 4.14.182 - '@types/node': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.30.6_2vt5mtrqleafs33qg2bhpmbaqm - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - eslint: 8.19.0 - eslint-config-prettier: 8.6.0_eslint@8.19.0 - eslint-plugin-prettier: 4.2.1_ynq7nynyjfwcw5rz6ihwbkdyyy - io-ts: 2.2.16_fp-ts@2.12.1 - jest: 27.5.1 - prettier: 2.8.4 - ts-jest: 27.1.5_mqaoisgizytgigbr3gbjwvnjie - typescript: 4.7.4 + '@digitak/esrun': + specifier: ^3.1.2 + version: 3.2.8 + '@relmify/jest-fp-ts': + specifier: ^2.0.1 + version: 2.0.2(fp-ts@2.12.1)(io-ts@2.2.16) + '@types/jest': + specifier: ^27.4.1 + version: 27.5.2 + '@types/lodash': + specifier: ^4.14.181 + version: 4.14.182 + '@types/node': + specifier: ^17.0.24 + version: 17.0.45 + '@typescript-eslint/eslint-plugin': + specifier: ^5.19.0 + version: 5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.19.0)(typescript@4.7.4) + '@typescript-eslint/parser': + specifier: ^5.19.0 + version: 5.30.6(eslint@8.19.0)(typescript@4.7.4) + eslint: + specifier: ^8.13.0 + version: 8.19.0 + eslint-config-prettier: + specifier: ^8.6.0 + version: 8.6.0(eslint@8.19.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4) + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.12.1) + jest: + specifier: ^27.5.1 + version: 27.5.1 + prettier: + specifier: ^2.8.4 + version: 2.8.4 + ts-jest: + specifier: ^27.1.4 + version: 27.1.5(@babel/core@7.18.6)(@types/jest@27.5.2)(esbuild@0.14.48)(jest@27.5.1)(typescript@4.7.4) + typescript: + specifier: ^4.6.3 + version: 4.7.4 packages/hoppscotch-selfhost-web: - specifiers: - '@graphql-codegen/add': ^3.2.0 - '@graphql-codegen/cli': ^2.8.0 - '@graphql-codegen/typed-document-node': ^2.3.1 - '@graphql-codegen/typescript': ^2.7.1 - '@graphql-codegen/typescript-operations': ^2.5.1 - '@graphql-codegen/typescript-urql-graphcache': ^2.3.1 - '@graphql-codegen/urql-introspection': ^2.2.0 - '@graphql-typed-document-node/core': ^3.1.1 - '@hoppscotch/common': workspace:^ - '@hoppscotch/data': workspace:^ - '@intlify/vite-plugin-vue-i18n': ^6.0.1 - '@rushstack/eslint-patch': ^1.1.4 - '@typescript-eslint/eslint-plugin': ^5.19.0 - '@typescript-eslint/parser': ^5.19.0 - '@vitejs/plugin-legacy': ^2.3.0 - '@vitejs/plugin-vue': ^3.2.0 - '@vue/eslint-config-typescript': ^11.0.1 - axios: ^0.21.4 - buffer: ^6.0.3 - cross-env: ^7.0.3 - eslint: ^8.28.0 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-vue: ^9.5.1 - firebase: ^9.8.4 - fp-ts: ^2.13.1 - graphql: ^15.8.0 - process: ^0.11.10 - rxjs: ^7.5.5 - stream-browserify: ^3.0.0 - typescript: ^4.6.4 - unplugin-icons: ^0.14.9 - unplugin-vue-components: ^0.21.0 - util: ^0.12.4 - vite: ^3.2.3 - vite-plugin-fonts: ^0.6.0 - vite-plugin-html-config: ^1.0.10 - vite-plugin-inspect: ^0.7.4 - vite-plugin-pages: ^0.26.0 - vite-plugin-pages-sitemap: ^1.4.0 - vite-plugin-pwa: ^0.13.1 - vite-plugin-static-copy: ^0.12.0 - vite-plugin-vue-layouts: ^0.7.0 - vite-plugin-windicss: ^1.8.8 - vitest: ^0.29.3 - vue: ^3.2.41 - vue-tsc: ^1.0.9 - windicss: ^3.5.6 - workbox-window: ^6.5.4 dependencies: - '@hoppscotch/common': link:../hoppscotch-common - '@hoppscotch/data': link:../hoppscotch-data - axios: 0.21.4 - buffer: 6.0.3 - firebase: 9.8.4 - fp-ts: 2.13.1 - graphql: 15.8.0 - process: 0.11.10 - rxjs: 7.6.0 - stream-browserify: 3.0.0 - util: 0.12.4 - vue: 3.2.45 - workbox-window: 6.5.4 + '@hoppscotch/common': + specifier: workspace:^ + version: link:../hoppscotch-common + '@hoppscotch/data': + specifier: workspace:^ + version: link:../hoppscotch-data + axios: + specifier: ^0.21.4 + version: 0.21.4 + buffer: + specifier: ^6.0.3 + version: 6.0.3 + firebase: + specifier: ^9.8.4 + version: 9.8.4 + fp-ts: + specifier: ^2.13.1 + version: 2.13.1 + graphql: + specifier: ^15.8.0 + version: 15.8.0 + process: + specifier: ^0.11.10 + version: 0.11.10 + rxjs: + specifier: ^7.5.5 + version: 7.6.0 + stream-browserify: + specifier: ^3.0.0 + version: 3.0.0 + util: + specifier: ^0.12.4 + version: 0.12.4 + vue: + specifier: ^3.2.41 + version: 3.2.45 + workbox-window: + specifier: ^6.5.4 + version: 6.5.4 devDependencies: - '@graphql-codegen/add': 3.2.0_graphql@15.8.0 - '@graphql-codegen/cli': 2.8.0_ebknmq4ki2y6h7wwya2jsn57ky - '@graphql-codegen/typed-document-node': 2.3.1_graphql@15.8.0 - '@graphql-codegen/typescript': 2.7.1_graphql@15.8.0 - '@graphql-codegen/typescript-operations': 2.5.1_graphql@15.8.0 - '@graphql-codegen/typescript-urql-graphcache': 2.3.1_graphql@15.8.0 - '@graphql-codegen/urql-introspection': 2.2.0_graphql@15.8.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 - '@intlify/vite-plugin-vue-i18n': 6.0.1_vite@3.2.4 - '@rushstack/eslint-patch': 1.1.4 - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - '@vitejs/plugin-legacy': 2.3.0_vite@3.2.4 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 - '@vue/eslint-config-typescript': 11.0.1_qqryy2txu6s5xvbi2exjrxstfu - cross-env: 7.0.3 - eslint: 8.29.0 - eslint-plugin-prettier: 4.2.1_eslint@8.29.0 - eslint-plugin-vue: 9.5.1_eslint@8.29.0 - typescript: 4.9.3 - unplugin-icons: 0.14.9_vite@3.2.4 - unplugin-vue-components: 0.21.0_vite@3.2.4+vue@3.2.45 - vite: 3.2.4 - vite-plugin-fonts: 0.6.0_vite@3.2.4 - vite-plugin-html-config: 1.0.10_vite@3.2.4 - vite-plugin-inspect: 0.7.4_vite@3.2.4 - vite-plugin-pages: 0.26.0_vite@3.2.4 - vite-plugin-pages-sitemap: 1.4.0 - vite-plugin-pwa: 0.13.1_3kw35epztoiwny7qtfesjexvtu - vite-plugin-static-copy: 0.12.0_vite@3.2.4 - vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45 - vite-plugin-windicss: 1.8.8_vite@3.2.4 - vitest: 0.29.8 - vue-tsc: 1.0.9_typescript@4.9.3 - windicss: 3.5.6 + '@graphql-codegen/add': + specifier: ^3.2.0 + version: 3.2.0(graphql@15.8.0) + '@graphql-codegen/cli': + specifier: ^2.8.0 + version: 2.8.0(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.9.3) + '@graphql-codegen/typed-document-node': + specifier: ^2.3.1 + version: 2.3.1(graphql@15.8.0) + '@graphql-codegen/typescript': + specifier: ^2.7.1 + version: 2.7.1(graphql@15.8.0) + '@graphql-codegen/typescript-operations': + specifier: ^2.5.1 + version: 2.5.1(graphql@15.8.0) + '@graphql-codegen/typescript-urql-graphcache': + specifier: ^2.3.1 + version: 2.3.1(@urql/exchange-graphcache@4.4.3)(graphql-tag@2.12.6)(graphql@15.8.0) + '@graphql-codegen/urql-introspection': + specifier: ^2.2.0 + version: 2.2.0(graphql@15.8.0) + '@graphql-typed-document-node/core': + specifier: ^3.1.1 + version: 3.1.1(graphql@15.8.0) + '@intlify/vite-plugin-vue-i18n': + specifier: ^6.0.1 + version: 6.0.1(vite@3.1.4)(vue-i18n@9.2.2) + '@rushstack/eslint-patch': + specifier: ^1.1.4 + version: 1.1.4 + '@typescript-eslint/eslint-plugin': + specifier: ^5.19.0 + version: 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.29.0)(typescript@4.9.3) + '@typescript-eslint/parser': + specifier: ^5.19.0 + version: 5.45.0(eslint@8.29.0)(typescript@4.9.3) + '@vitejs/plugin-legacy': + specifier: ^2.3.0 + version: 2.3.0(terser@5.14.1)(vite@3.2.4) + '@vitejs/plugin-vue': + specifier: ^3.2.0 + version: 3.2.0(vite@3.2.4)(vue@3.2.45) + '@vue/eslint-config-typescript': + specifier: ^11.0.1 + version: 11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.29.0)(typescript@4.9.3) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + eslint: + specifier: ^8.28.0 + version: 8.29.0 + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4) + eslint-plugin-vue: + specifier: ^9.5.1 + version: 9.5.1(eslint@8.29.0) + typescript: + specifier: ^4.6.4 + version: 4.9.3 + unplugin-icons: + specifier: ^0.14.9 + version: 0.14.9(@vue/compiler-sfc@3.2.39)(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4) + unplugin-vue-components: + specifier: ^0.21.0 + version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0) + vite: + specifier: ^3.2.3 + version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-plugin-fonts: + specifier: ^0.6.0 + version: 0.6.0(vite@3.2.4) + vite-plugin-html-config: + specifier: ^1.0.10 + version: 1.0.10(vite@3.2.4) + vite-plugin-inspect: + specifier: ^0.7.4 + version: 0.7.4(vite@3.2.4) + vite-plugin-pages: + specifier: ^0.26.0 + version: 0.26.0(@vue/compiler-sfc@3.2.45)(vite@3.2.4) + vite-plugin-pages-sitemap: + specifier: ^1.4.0 + version: 1.4.0 + vite-plugin-pwa: + specifier: ^0.13.1 + version: 0.13.1(vite@3.2.4)(workbox-build@6.5.4)(workbox-window@6.5.4) + vite-plugin-static-copy: + specifier: ^0.12.0 + version: 0.12.0(vite@3.2.4) + vite-plugin-vue-layouts: + specifier: ^0.7.0 + version: 0.7.0(vite@3.2.4)(vue-router@4.1.0)(vue@3.2.45) + vite-plugin-windicss: + specifier: ^1.8.8 + version: 1.8.8(vite@3.2.4) + vitest: + specifier: ^0.29.3 + version: 0.29.8(terser@5.14.1) + vue-tsc: + specifier: ^1.0.9 + version: 1.0.9(typescript@4.9.3) + windicss: + specifier: ^3.5.6 + version: 3.5.6 packages/hoppscotch-sh-admin: - specifiers: - '@graphql-codegen/cli': 3.0.0 - '@graphql-codegen/client-preset': ^2.0.0 - '@graphql-codegen/introspection': 3.0.0 - '@graphql-codegen/typed-document-node': ^2.3.1 - '@graphql-codegen/typescript': 3.0.0 - '@graphql-codegen/typescript-document-nodes': 3.0.0 - '@graphql-codegen/typescript-operations': 3.0.0 - '@graphql-codegen/urql-introspection': 2.2.1 - '@graphql-typed-document-node/core': ^3.1.1 - '@hoppscotch/ui': workspace:^0.0.1 - '@hoppscotch/vue-toasted': ^0.1.0 - '@types/cors': ^2.8.13 - '@types/express': ^4.17.15 - '@urql/vue': ^1.0.4 - '@vitejs/plugin-vue': ^3.1.0 - '@vue/compiler-sfc': ^3.2.6 - '@vueuse/core': ^9.10.0 - axios: ^0.21.4 - cors: ^2.8.5 - date-fns: ^2.29.3 - express: ^4.18.2 - express-graphql: ^0.12.0 - fp-ts: ^2.13.1 - graphql: ^16.6.0 - graphql-tag: ^2.12.6 - io-ts: ^2.2.16 - lodash-es: ^4.17.21 - npm-run-all: ^4.1.5 - rxjs: ^7.8.0 - sass: ^1.57.1 - tippy.js: ^6.3.7 - ts-node: ^10.9.1 - ts-node-dev: ^2.0.0 - typescript: ^4.9.3 - unplugin-icons: ^0.14.9 - unplugin-vue-components: ^0.21.0 - vite: ^3.1.4 - vite-plugin-pages: ^0.26.0 - vite-plugin-vue-layouts: ^0.7.0 - vite-plugin-windicss: ^1.8.8 - vue: ^3.2.6 - vue-router: '4' - vue-tippy: 6.0.0-alpha.58 - vue-tsc: ^0.3.0 - windicss: ^3.5.6 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 - '@hoppscotch/ui': link:../hoppscotch-ui - '@hoppscotch/vue-toasted': 0.1.0_vue@3.2.45 - '@types/cors': 2.8.13 - '@types/express': 4.17.16 - '@urql/vue': 1.0.4_graphql@16.6.0+vue@3.2.45 - '@vueuse/core': 9.12.0_vue@3.2.45 - axios: 0.21.4 - cors: 2.8.5 - date-fns: 2.29.3 - express: 4.18.2 - express-graphql: 0.12.0_graphql@16.6.0 - fp-ts: 2.13.1 - graphql: 16.6.0 - io-ts: 2.2.16_fp-ts@2.13.1 - lodash-es: 4.17.21 - rxjs: 7.8.0 - tippy.js: 6.3.7 - ts-node-dev: 2.0.0_typescript@4.9.3 - unplugin-icons: 0.14.9_ucej6auec2vidlux2n3htzvxf4 - unplugin-vue-components: 0.21.0_vite@3.2.4+vue@3.2.45 - vue: 3.2.45 - vue-router: 4.1.0_vue@3.2.45 - vue-tippy: 6.0.0-alpha.58_vue@3.2.45 + '@graphql-typed-document-node/core': + specifier: ^3.1.1 + version: 3.1.1(graphql@16.6.0) + '@hoppscotch/ui': + specifier: workspace:^0.0.1 + version: link:../hoppscotch-ui + '@hoppscotch/vue-toasted': + specifier: ^0.1.0 + version: 0.1.0(vue@3.2.45) + '@types/cors': + specifier: ^2.8.13 + version: 2.8.13 + '@types/express': + specifier: ^4.17.15 + version: 4.17.16 + '@urql/vue': + specifier: ^1.0.4 + version: 1.0.4(graphql@16.6.0)(vue@3.2.45) + '@vueuse/core': + specifier: ^9.10.0 + version: 9.12.0(vue@3.2.45) + axios: + specifier: ^0.21.4 + version: 0.21.4 + cors: + specifier: ^2.8.5 + version: 2.8.5 + date-fns: + specifier: ^2.29.3 + version: 2.29.3 + express: + specifier: ^4.18.2 + version: 4.18.2 + express-graphql: + specifier: ^0.12.0 + version: 0.12.0(graphql@16.6.0) + fp-ts: + specifier: ^2.13.1 + version: 2.13.1 + graphql: + specifier: ^16.6.0 + version: 16.6.0 + io-ts: + specifier: ^2.2.16 + version: 2.2.16(fp-ts@2.13.1) + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + rxjs: + specifier: ^7.8.0 + version: 7.8.0 + tippy.js: + specifier: ^6.3.7 + version: 6.3.7 + ts-node-dev: + specifier: ^2.0.0 + version: 2.0.0(@types/node@18.11.10)(typescript@4.9.3) + unplugin-icons: + specifier: ^0.14.9 + version: 0.14.9(@vue/compiler-sfc@3.2.39)(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4) + unplugin-vue-components: + specifier: ^0.21.0 + version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0) + vue: + specifier: ^3.2.6 + version: 3.2.45 + vue-router: + specifier: '4' + version: 4.1.0(vue@3.2.45) + vue-tippy: + specifier: 6.0.0-alpha.58 + version: 6.0.0-alpha.58(vue@3.2.45) devDependencies: - '@graphql-codegen/cli': 3.0.0_rf2sx74yjwgv4c7f6t6izlk5dy - '@graphql-codegen/client-preset': 2.1.0_graphql@16.6.0 - '@graphql-codegen/introspection': 3.0.0_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 2.3.1_graphql@16.6.0 - '@graphql-codegen/typescript': 3.0.0_graphql@16.6.0 - '@graphql-codegen/typescript-document-nodes': 3.0.0_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 3.0.0_graphql@16.6.0 - '@graphql-codegen/urql-introspection': 2.2.1_graphql@16.6.0 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 - '@vue/compiler-sfc': 3.2.45 - graphql-tag: 2.12.6_graphql@16.6.0 - npm-run-all: 4.1.5 - sass: 1.58.0 - ts-node: 10.9.1_typescript@4.9.3 - typescript: 4.9.3 - vite: 3.2.4_sass@1.58.0 - vite-plugin-pages: 0.26.0_ucej6auec2vidlux2n3htzvxf4 - vite-plugin-vue-layouts: 0.7.0_x3isqn4gd6tlkzc66bnhwnhwbi - vite-plugin-windicss: 1.8.8_vite@3.2.4 - vue-tsc: 0.3.0_typescript@4.9.3 - windicss: 3.5.6 + '@graphql-codegen/cli': + specifier: 3.0.0 + version: 3.0.0(@babel/core@7.18.6)(@types/node@18.11.10)(graphql@16.6.0)(typescript@4.9.3) + '@graphql-codegen/client-preset': + specifier: ^2.0.0 + version: 2.1.0(graphql@16.6.0) + '@graphql-codegen/introspection': + specifier: 3.0.0 + version: 3.0.0(graphql@16.6.0) + '@graphql-codegen/typed-document-node': + specifier: ^2.3.1 + version: 2.3.1(graphql@16.6.0) + '@graphql-codegen/typescript': + specifier: 3.0.0 + version: 3.0.0(graphql@16.6.0) + '@graphql-codegen/typescript-document-nodes': + specifier: 3.0.0 + version: 3.0.0(graphql@16.6.0) + '@graphql-codegen/typescript-operations': + specifier: 3.0.0 + version: 3.0.0(graphql@16.6.0) + '@graphql-codegen/urql-introspection': + specifier: 2.2.1 + version: 2.2.1(graphql@16.6.0) + '@vitejs/plugin-vue': + specifier: ^3.1.0 + version: 3.2.0(vite@3.2.4)(vue@3.2.45) + '@vue/compiler-sfc': + specifier: ^3.2.6 + version: 3.2.45 + graphql-tag: + specifier: ^2.12.6 + version: 2.12.6(graphql@16.6.0) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + sass: + specifier: ^1.57.1 + version: 1.58.0 + ts-node: + specifier: ^10.9.1 + version: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) + typescript: + specifier: ^4.9.3 + version: 4.9.3 + vite: + specifier: ^3.1.4 + version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-plugin-pages: + specifier: ^0.26.0 + version: 0.26.0(@vue/compiler-sfc@3.2.45)(vite@3.2.4) + vite-plugin-vue-layouts: + specifier: ^0.7.0 + version: 0.7.0(vite@3.2.4)(vue-router@4.1.0)(vue@3.2.45) + vite-plugin-windicss: + specifier: ^1.8.8 + version: 1.8.8(vite@3.2.4) + vue-tsc: + specifier: ^0.3.0 + version: 0.3.0(typescript@4.9.3) + windicss: + specifier: ^3.5.6 + version: 3.5.6 packages/hoppscotch-ui: - specifiers: - '@esbuild-plugins/node-globals-polyfill': ^0.1.1 - '@esbuild-plugins/node-modules-polyfill': ^0.1.4 - '@histoire/plugin-vue': ^0.12.4 - '@hoppscotch/vue-toasted': ^0.1.0 - '@iconify-json/lucide': ^1.1.40 - '@intlify/vite-plugin-vue-i18n': ^6.0.1 - '@lezer/highlight': ^1.0.0 - '@rushstack/eslint-patch': ^1.1.4 - '@types/lodash-es': ^4.17.6 - '@types/splitpanes': ^2.2.1 - '@typescript-eslint/eslint-plugin': ^5.19.0 - '@typescript-eslint/parser': ^5.19.0 - '@vitejs/plugin-legacy': ^2.3.0 - '@vitejs/plugin-vue': ^3.1.0 - '@vue/compiler-sfc': ^3.2.39 - '@vue/eslint-config-typescript': ^11.0.1 - '@vue/runtime-core': ^3.2.39 - '@vueuse/core': ^8.7.5 - '@vueuse/head': ^0.7.9 - acorn-walk: ^8.2.0 - cross-env: ^7.0.3 - eslint: ^8.24.0 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-vue: ^9.5.1 - esprima: ^4.0.1 - events: ^3.3.0 - fp-ts: ^2.12.1 - globalthis: ^1.0.3 - histoire: ^0.12.4 - lodash-es: ^4.17.21 - npm-run-all: ^4.1.5 - path: ^0.12.7 - rollup-plugin-polyfill-node: ^0.10.1 - rxjs: ^7.5.5 - sass: ^1.53.0 - splitpanes: ^3.1.1 - tern: ^0.24.3 - timers: ^0.1.1 - tippy.js: ^6.3.7 - typescript: ^4.5.4 - unplugin-icons: ^0.15.3 - unplugin-vue-components: ^0.21.0 - url: ^0.11.0 - util: ^0.12.4 - vite: ^3.2.3 - vite-plugin-checker: ^0.5.1 - vite-plugin-dts: 2.0.0-beta.3 - vite-plugin-eslint: ^1.8.1 - vite-plugin-fonts: ^0.6.0 - vite-plugin-html-config: ^1.0.10 - vite-plugin-inspect: ^0.7.4 - vite-plugin-pages: ^0.26.0 - vite-plugin-pages-sitemap: ^1.4.0 - vite-plugin-pwa: ^0.13.1 - vite-plugin-vue-layouts: ^0.7.0 - vite-plugin-windicss: ^1.8.8 - vue: ^3.2.25 - vue-github-button: ^3.0.3 - vue-loader: ^16.8.3 - vue-router: ^4.0.16 - vue-tippy: 6.0.0-alpha.58 - vue-tsc: ^0.38.2 - vuedraggable-es: ^4.1.1 - windicss: ^3.5.6 dependencies: - '@hoppscotch/vue-toasted': 0.1.0_vue@3.2.45 - '@lezer/highlight': 1.0.0 - '@vitejs/plugin-legacy': 2.3.0_vite@3.2.4 - '@vueuse/core': 8.7.5_vue@3.2.45 - '@vueuse/head': 0.7.9_vue@3.2.45 - acorn-walk: 8.2.0 - esprima: 4.0.1 - events: 3.3.0 - fp-ts: 2.13.1 - globalthis: 1.0.3 - lodash-es: 4.17.21 - path: 0.12.7 - rxjs: 7.6.0 - splitpanes: 3.1.1 - tern: 0.24.3 - timers: 0.1.1 - tippy.js: 6.3.7 - url: 0.11.0 - util: 0.12.4 - vite-plugin-eslint: 1.8.1_eslint@8.29.0+vite@3.2.4 - vue-github-button: 3.0.3 - vue-router: 4.1.0_vue@3.2.45 - vue-tippy: 6.0.0-alpha.58_vue@3.2.45 - vuedraggable-es: 4.1.1_vue@3.2.45 + '@hoppscotch/vue-toasted': + specifier: ^0.1.0 + version: 0.1.0(vue@3.2.45) + '@lezer/highlight': + specifier: ^1.0.0 + version: 1.0.0 + '@vitejs/plugin-legacy': + specifier: ^2.3.0 + version: 2.3.0(terser@5.14.1)(vite@3.2.4) + '@vueuse/core': + specifier: ^8.7.5 + version: 8.7.5(vue@3.2.45) + '@vueuse/head': + specifier: ^0.7.9 + version: 0.7.9(vue@3.2.45) + acorn-walk: + specifier: ^8.2.0 + version: 8.2.0 + esprima: + specifier: ^4.0.1 + version: 4.0.1 + events: + specifier: ^3.3.0 + version: 3.3.0 + fp-ts: + specifier: ^2.12.1 + version: 2.13.1 + globalthis: + specifier: ^1.0.3 + version: 1.0.3 + lodash-es: + specifier: ^4.17.21 + version: 4.17.21 + path: + specifier: ^0.12.7 + version: 0.12.7 + rxjs: + specifier: ^7.5.5 + version: 7.6.0 + splitpanes: + specifier: ^3.1.1 + version: 3.1.1 + tern: + specifier: ^0.24.3 + version: 0.24.3 + timers: + specifier: ^0.1.1 + version: 0.1.1 + tippy.js: + specifier: ^6.3.7 + version: 6.3.7 + url: + specifier: ^0.11.0 + version: 0.11.0 + util: + specifier: ^0.12.4 + version: 0.12.4 + vite-plugin-eslint: + specifier: ^1.8.1 + version: 1.8.1(eslint@8.29.0)(vite@3.2.4) + vue-github-button: + specifier: ^3.0.3 + version: 3.0.3 + vue-router: + specifier: ^4.0.16 + version: 4.1.0(vue@3.2.45) + vue-tippy: + specifier: 6.0.0-alpha.58 + version: 6.0.0-alpha.58(vue@3.2.45) + vuedraggable-es: + specifier: ^4.1.1 + version: 4.1.1(vue@3.2.45) devDependencies: - '@esbuild-plugins/node-globals-polyfill': 0.1.1 - '@esbuild-plugins/node-modules-polyfill': 0.1.4 - '@histoire/plugin-vue': 0.12.4_3ztk7oukhtctodvtf5427xwgjy - '@iconify-json/lucide': 1.1.40 - '@intlify/vite-plugin-vue-i18n': 6.0.1_vite@3.2.4 - '@rushstack/eslint-patch': 1.1.4 - '@types/lodash-es': 4.17.6 - '@types/splitpanes': 2.2.1 - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 - '@vue/compiler-sfc': 3.2.45 - '@vue/eslint-config-typescript': 11.0.1_qqryy2txu6s5xvbi2exjrxstfu - '@vue/runtime-core': 3.2.45 - cross-env: 7.0.3 - eslint: 8.29.0 - eslint-plugin-prettier: 4.2.1_eslint@8.29.0 - eslint-plugin-vue: 9.5.1_eslint@8.29.0 - histoire: 0.12.4_sass@1.53.0+vite@3.2.4 - npm-run-all: 4.1.5 - rollup-plugin-polyfill-node: 0.10.1 - sass: 1.53.0 - typescript: 4.9.3 - unplugin-icons: 0.15.3_@vue+compiler-sfc@3.2.45 - unplugin-vue-components: 0.21.0_vite@3.2.4+vue@3.2.45 - vite: 3.2.4_sass@1.53.0 - vite-plugin-checker: 0.5.1_ijzhftcbnq5djhrq5avbc76z6m - vite-plugin-dts: 2.0.0-beta.3_vite@3.2.4 - vite-plugin-fonts: 0.6.0_vite@3.2.4 - vite-plugin-html-config: 1.0.10_vite@3.2.4 - vite-plugin-inspect: 0.7.4_vite@3.2.4 - vite-plugin-pages: 0.26.0_ucej6auec2vidlux2n3htzvxf4 - vite-plugin-pages-sitemap: 1.4.0 - vite-plugin-pwa: 0.13.1_vite@3.2.4 - vite-plugin-vue-layouts: 0.7.0_x3isqn4gd6tlkzc66bnhwnhwbi - vite-plugin-windicss: 1.8.8_vite@3.2.4 - vue: 3.2.45 - vue-loader: 16.8.3_tfvhctuaqmmqnirfl65c47tqwu - vue-tsc: 0.38.2_typescript@4.9.3 - windicss: 3.5.6 + '@esbuild-plugins/node-globals-polyfill': + specifier: ^0.1.1 + version: 0.1.1(esbuild@0.15.15) + '@esbuild-plugins/node-modules-polyfill': + specifier: ^0.1.4 + version: 0.1.4(esbuild@0.15.15) + '@histoire/plugin-vue': + specifier: ^0.12.4 + version: 0.12.4(histoire@0.12.4)(vite@3.2.4)(vue@3.2.45) + '@iconify-json/lucide': + specifier: ^1.1.40 + version: 1.1.40 + '@intlify/vite-plugin-vue-i18n': + specifier: ^6.0.1 + version: 6.0.1(vite@3.1.4)(vue-i18n@9.2.2) + '@rushstack/eslint-patch': + specifier: ^1.1.4 + version: 1.1.4 + '@types/lodash-es': + specifier: ^4.17.6 + version: 4.17.6 + '@types/splitpanes': + specifier: ^2.2.1 + version: 2.2.1 + '@typescript-eslint/eslint-plugin': + specifier: ^5.19.0 + version: 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.29.0)(typescript@4.9.3) + '@typescript-eslint/parser': + specifier: ^5.19.0 + version: 5.45.0(eslint@8.29.0)(typescript@4.9.3) + '@vitejs/plugin-vue': + specifier: ^3.1.0 + version: 3.2.0(vite@3.2.4)(vue@3.2.45) + '@vue/compiler-sfc': + specifier: ^3.2.39 + version: 3.2.45 + '@vue/eslint-config-typescript': + specifier: ^11.0.1 + version: 11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.29.0)(typescript@4.9.3) + '@vue/runtime-core': + specifier: ^3.2.39 + version: 3.2.45 + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + eslint: + specifier: ^8.24.0 + version: 8.29.0 + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4) + eslint-plugin-vue: + specifier: ^9.5.1 + version: 9.5.1(eslint@8.29.0) + histoire: + specifier: ^0.12.4 + version: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4) + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + rollup-plugin-polyfill-node: + specifier: ^0.10.1 + version: 0.10.1(rollup@2.79.1) + sass: + specifier: ^1.53.0 + version: 1.53.0 + typescript: + specifier: ^4.5.4 + version: 4.9.3 + unplugin-icons: + specifier: ^0.15.3 + version: 0.15.3(@vue/compiler-sfc@3.2.45) + unplugin-vue-components: + specifier: ^0.21.0 + version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0) + vite: + specifier: ^3.2.3 + version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-plugin-checker: + specifier: ^0.5.1 + version: 0.5.1(eslint@8.29.0)(typescript@4.9.3)(vite@3.2.4) + vite-plugin-dts: + specifier: 2.0.0-beta.3 + version: 2.0.0-beta.3(@types/node@17.0.45)(rollup@2.79.1)(vite@3.2.4) + vite-plugin-fonts: + specifier: ^0.6.0 + version: 0.6.0(vite@3.2.4) + vite-plugin-html-config: + specifier: ^1.0.10 + version: 1.0.10(vite@3.2.4) + vite-plugin-inspect: + specifier: ^0.7.4 + version: 0.7.4(vite@3.2.4) + vite-plugin-pages: + specifier: ^0.26.0 + version: 0.26.0(@vue/compiler-sfc@3.2.45)(vite@3.2.4) + vite-plugin-pages-sitemap: + specifier: ^1.4.0 + version: 1.4.0 + vite-plugin-pwa: + specifier: ^0.13.1 + version: 0.13.1(vite@3.2.4)(workbox-build@6.5.4)(workbox-window@6.5.4) + vite-plugin-vue-layouts: + specifier: ^0.7.0 + version: 0.7.0(vite@3.2.4)(vue-router@4.1.0)(vue@3.2.45) + vite-plugin-windicss: + specifier: ^1.8.8 + version: 1.8.8(vite@3.2.4) + vue: + specifier: ^3.2.25 + version: 3.2.45 + vue-loader: + specifier: ^16.8.3 + version: 16.8.3(@vue/compiler-sfc@3.2.45)(vue@3.2.45)(webpack@5.74.0) + vue-tsc: + specifier: ^0.38.2 + version: 0.38.2(typescript@4.9.3) + windicss: + specifier: ^3.5.6 + version: 3.5.6 packages/hoppscotch-web: - specifiers: - '@hoppscotch/common': workspace:^ - '@hoppscotch/data': workspace:^0.4.4 - '@hoppscotch/ui': workspace:^ - '@intlify/vite-plugin-vue-i18n': ^6.0.1 - '@rushstack/eslint-patch': ^1.1.4 - '@typescript-eslint/eslint-plugin': ^5.19.0 - '@typescript-eslint/parser': ^5.19.0 - '@vitejs/plugin-legacy': ^2.3.0 - '@vitejs/plugin-vue': ^3.2.0 - '@vue/eslint-config-typescript': ^11.0.1 - buffer: ^6.0.3 - cross-env: ^7.0.3 - eslint: ^8.28.0 - eslint-plugin-prettier: ^4.2.1 - eslint-plugin-vue: ^9.5.1 - firebase: ^9.8.4 - process: ^0.11.10 - rxjs: ^7.5.5 - stream-browserify: ^3.0.0 - typescript: ^4.6.4 - unplugin-icons: ^0.14.9 - unplugin-vue-components: ^0.21.0 - util: ^0.12.4 - vite: ^3.2.3 - vite-plugin-fonts: ^0.6.0 - vite-plugin-html-config: ^1.0.10 - vite-plugin-inspect: ^0.7.4 - vite-plugin-pages: ^0.26.0 - vite-plugin-pages-sitemap: ^1.4.0 - vite-plugin-pwa: ^0.13.1 - vite-plugin-static-copy: ^0.12.0 - vite-plugin-vue-layouts: ^0.7.0 - vite-plugin-windicss: ^1.8.8 - vue: ^3.2.41 - vue-tsc: ^1.0.9 - windicss: ^3.5.6 - workbox-window: ^6.5.4 dependencies: - '@hoppscotch/common': link:../hoppscotch-common - '@hoppscotch/data': link:../hoppscotch-data - '@hoppscotch/ui': link:../hoppscotch-ui - buffer: 6.0.3 - firebase: 9.8.4 - process: 0.11.10 - rxjs: 7.5.5 - stream-browserify: 3.0.0 - util: 0.12.4 - vue: 3.2.45 - workbox-window: 6.5.4 + '@hoppscotch/common': + specifier: workspace:^ + version: link:../hoppscotch-common + '@hoppscotch/data': + specifier: workspace:^0.4.4 + version: link:../hoppscotch-data + '@hoppscotch/ui': + specifier: workspace:^ + version: link:../hoppscotch-ui + buffer: + specifier: ^6.0.3 + version: 6.0.3 + firebase: + specifier: ^9.8.4 + version: 9.8.4 + process: + specifier: ^0.11.10 + version: 0.11.10 + rxjs: + specifier: ^7.5.5 + version: 7.5.5 + stream-browserify: + specifier: ^3.0.0 + version: 3.0.0 + util: + specifier: ^0.12.4 + version: 0.12.4 + vue: + specifier: ^3.2.41 + version: 3.2.45 + workbox-window: + specifier: ^6.5.4 + version: 6.5.4 devDependencies: - '@intlify/vite-plugin-vue-i18n': 6.0.1_vite@3.2.4 - '@rushstack/eslint-patch': 1.1.4 - '@typescript-eslint/eslint-plugin': 5.30.6_tzuem642amzz36tmpo2cu7h24a - '@typescript-eslint/parser': 5.30.6_tqvwk7sh3taph5wf7sr5z34mke - '@vitejs/plugin-legacy': 2.3.0_vite@3.2.4 - '@vitejs/plugin-vue': 3.2.0_vite@3.2.4+vue@3.2.45 - '@vue/eslint-config-typescript': 11.0.1_mzvf2l7eswg27fegtooheusjzu - cross-env: 7.0.3 - eslint: 8.28.0 - eslint-plugin-prettier: 4.2.1_eslint@8.28.0 - eslint-plugin-vue: 9.5.1_eslint@8.28.0 - typescript: 4.7.4 - unplugin-icons: 0.14.9_vite@3.2.4 - unplugin-vue-components: 0.21.0_vite@3.2.4+vue@3.2.45 - vite: 3.2.4 - vite-plugin-fonts: 0.6.0_vite@3.2.4 - vite-plugin-html-config: 1.0.10_vite@3.2.4 - vite-plugin-inspect: 0.7.4_vite@3.2.4 - vite-plugin-pages: 0.26.0_vite@3.2.4 - vite-plugin-pages-sitemap: 1.4.0 - vite-plugin-pwa: 0.13.1_3kw35epztoiwny7qtfesjexvtu - vite-plugin-static-copy: 0.12.0_vite@3.2.4 - vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45 - vite-plugin-windicss: 1.8.8_vite@3.2.4 - vue-tsc: 1.0.9_typescript@4.7.4 - windicss: 3.5.6 + '@intlify/vite-plugin-vue-i18n': + specifier: ^6.0.1 + version: 6.0.1(vite@3.1.4)(vue-i18n@9.2.2) + '@rushstack/eslint-patch': + specifier: ^1.1.4 + version: 1.1.4 + '@typescript-eslint/eslint-plugin': + specifier: ^5.19.0 + version: 5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.28.0)(typescript@4.7.4) + '@typescript-eslint/parser': + specifier: ^5.19.0 + version: 5.30.6(eslint@8.28.0)(typescript@4.7.4) + '@vitejs/plugin-legacy': + specifier: ^2.3.0 + version: 2.3.0(terser@5.14.1)(vite@3.2.4) + '@vitejs/plugin-vue': + specifier: ^3.2.0 + version: 3.2.0(vite@3.2.4)(vue@3.2.45) + '@vue/eslint-config-typescript': + specifier: ^11.0.1 + version: 11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.28.0)(typescript@4.7.4) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + eslint: + specifier: ^8.28.0 + version: 8.28.0 + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4) + eslint-plugin-vue: + specifier: ^9.5.1 + version: 9.5.1(eslint@8.28.0) + typescript: + specifier: ^4.6.4 + version: 4.7.4 + unplugin-icons: + specifier: ^0.14.9 + version: 0.14.9(@vue/compiler-sfc@3.2.39)(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4) + unplugin-vue-components: + specifier: ^0.21.0 + version: 0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0) + vite: + specifier: ^3.2.3 + version: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-plugin-fonts: + specifier: ^0.6.0 + version: 0.6.0(vite@3.2.4) + vite-plugin-html-config: + specifier: ^1.0.10 + version: 1.0.10(vite@3.2.4) + vite-plugin-inspect: + specifier: ^0.7.4 + version: 0.7.4(vite@3.2.4) + vite-plugin-pages: + specifier: ^0.26.0 + version: 0.26.0(@vue/compiler-sfc@3.2.45)(vite@3.2.4) + vite-plugin-pages-sitemap: + specifier: ^1.4.0 + version: 1.4.0 + vite-plugin-pwa: + specifier: ^0.13.1 + version: 0.13.1(vite@3.2.4)(workbox-build@6.5.4)(workbox-window@6.5.4) + vite-plugin-static-copy: + specifier: ^0.12.0 + version: 0.12.0(vite@3.2.4) + vite-plugin-vue-layouts: + specifier: ^0.7.0 + version: 0.7.0(vite@3.2.4)(vue-router@4.1.0)(vue@3.2.45) + vite-plugin-windicss: + specifier: ^1.8.8 + version: 1.8.8(vite@3.2.4) + vue-tsc: + specifier: ^1.0.9 + version: 1.0.9(typescript@4.7.4) + windicss: + specifier: ^3.5.6 + version: 3.5.6 packages: - /@ampproject/remapping/2.2.0: + /@ampproject/remapping@2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} dependencies: @@ -986,7 +1435,7 @@ packages: '@jridgewell/trace-mapping': 0.3.14 dev: true - /@angular-devkit/core/14.2.1: + /@angular-devkit/core@14.2.1(chokidar@3.5.3): resolution: {integrity: sha512-lW8oNGuJqr4r31FWBjfWQYkSXdiOHBGOThIEtHvUVBKfPF/oVrupLueCUgBPel+NvxENXdo93uPsqHN7bZbmsQ==} engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -996,30 +1445,14 @@ packages: optional: true dependencies: ajv: 8.11.0 - ajv-formats: 2.1.1 - jsonc-parser: 3.1.0 - rxjs: 6.6.7 - source-map: 0.7.4 - dev: true - - /@angular-devkit/core/14.2.1_chokidar@3.5.3: - resolution: {integrity: sha512-lW8oNGuJqr4r31FWBjfWQYkSXdiOHBGOThIEtHvUVBKfPF/oVrupLueCUgBPel+NvxENXdo93uPsqHN7bZbmsQ==} - engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - peerDependencies: - chokidar: ^3.5.2 - peerDependenciesMeta: - chokidar: - optional: true - dependencies: - ajv: 8.11.0 - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.11.0) chokidar: 3.5.3 jsonc-parser: 3.1.0 rxjs: 6.6.7 source-map: 0.7.4 dev: true - /@angular-devkit/core/14.2.2_chokidar@3.5.3: + /@angular-devkit/core@14.2.2(chokidar@3.5.3): resolution: {integrity: sha512-ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA==} engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: @@ -1029,20 +1462,20 @@ packages: optional: true dependencies: ajv: 8.11.0 - ajv-formats: 2.1.1 + ajv-formats: 2.1.1(ajv@8.11.0) chokidar: 3.5.3 jsonc-parser: 3.1.0 rxjs: 6.6.7 source-map: 0.7.4 dev: true - /@angular-devkit/schematics-cli/14.2.2_chokidar@3.5.3: + /@angular-devkit/schematics-cli@14.2.2(chokidar@3.5.3): resolution: {integrity: sha512-timCty5tO1A5VOcy8nVJ+jL98i6+ct5/Hg+4rQxc3J6agmmNL9fALboJBEz1ckTt7MewlGtrpohMMy+YGhuWOg==} engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/core': 14.2.2_chokidar@3.5.3 - '@angular-devkit/schematics': 14.2.2_chokidar@3.5.3 + '@angular-devkit/core': 14.2.2(chokidar@3.5.3) + '@angular-devkit/schematics': 14.2.2(chokidar@3.5.3) ansi-colors: 4.1.3 inquirer: 8.2.4 symbol-observable: 4.0.0 @@ -1051,11 +1484,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/14.2.1: + /@angular-devkit/schematics@14.2.1(chokidar@3.5.3): resolution: {integrity: sha512-0U18FwDYt4zROBPrvewH6iBTkf2ozVHN4/gxUb9jWrqVw8mPU5AWc/iYxQLHBSinkr2Egjo1H/i9aBqgJSeh3g==} engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 14.2.1 + '@angular-devkit/core': 14.2.1(chokidar@3.5.3) jsonc-parser: 3.1.0 magic-string: 0.26.2 ora: 5.4.1 @@ -1064,24 +1497,11 @@ packages: - chokidar dev: true - /@angular-devkit/schematics/14.2.1_chokidar@3.5.3: - resolution: {integrity: sha512-0U18FwDYt4zROBPrvewH6iBTkf2ozVHN4/gxUb9jWrqVw8mPU5AWc/iYxQLHBSinkr2Egjo1H/i9aBqgJSeh3g==} - engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 14.2.1_chokidar@3.5.3 - jsonc-parser: 3.1.0 - magic-string: 0.26.2 - ora: 5.4.1 - rxjs: 6.6.7 - transitivePeerDependencies: - - chokidar - dev: true - - /@angular-devkit/schematics/14.2.2_chokidar@3.5.3: + /@angular-devkit/schematics@14.2.2(chokidar@3.5.3): resolution: {integrity: sha512-90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ==} engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 14.2.2_chokidar@3.5.3 + '@angular-devkit/core': 14.2.2(chokidar@3.5.3) jsonc-parser: 3.1.0 magic-string: 0.26.2 ora: 5.4.1 @@ -1090,27 +1510,27 @@ packages: - chokidar dev: true - /@antfu/install-pkg/0.1.0: + /@antfu/install-pkg@0.1.0: resolution: {integrity: sha512-VaIJd3d1o7irZfK1U0nvBsHMyjkuyMP3HKYVV53z8DKyulkHKmjhhtccXO51WSPeeSHIeoJEoNOKavYpS7jkZw==} dependencies: execa: 5.1.1 find-up: 5.0.0 - /@antfu/install-pkg/0.1.1: + /@antfu/install-pkg@0.1.1: resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==} dependencies: execa: 5.1.1 find-up: 5.0.0 dev: true - /@antfu/utils/0.5.2: + /@antfu/utils@0.5.2: resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} - /@antfu/utils/0.7.2: + /@antfu/utils@0.7.2: resolution: {integrity: sha512-vy9fM3pIxZmX07dL+VX1aZe7ynZ+YyB0jY+jE6r3hOK6GNY2t6W8rzpFC4tgpbXUYABkFQwgJq2XYXlxbXAI0g==} dev: true - /@apideck/better-ajv-errors/0.3.6_ajv@8.11.0: + /@apideck/better-ajv-errors@0.3.6(ajv@8.11.0): resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} engines: {node: '>=10'} peerDependencies: @@ -1122,7 +1542,7 @@ packages: leven: 3.1.0 dev: true - /@apidevtools/json-schema-ref-parser/9.0.6: + /@apidevtools/json-schema-ref-parser@9.0.6: resolution: {integrity: sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg==} dependencies: '@jsdevtools/ono': 7.1.3 @@ -1130,16 +1550,16 @@ packages: js-yaml: 3.14.1 dev: false - /@apidevtools/openapi-schemas/2.1.0: + /@apidevtools/openapi-schemas@2.1.0: resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==} engines: {node: '>=10'} dev: false - /@apidevtools/swagger-methods/3.0.2: + /@apidevtools/swagger-methods@3.0.2: resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} dev: false - /@apidevtools/swagger-parser/10.0.2_openapi-types@12.0.0: + /@apidevtools/swagger-parser@10.0.2(openapi-types@12.0.0): resolution: {integrity: sha512-JFxcEyp8RlNHgBCE98nwuTkZT6eNFPc1aosWV6wPcQph72TSEEu1k3baJD4/x1qznU+JiDdz8F5pTwabZh+Dhg==} peerDependencies: openapi-types: '>=7' @@ -1153,7 +1573,7 @@ packages: z-schema: 4.2.4 dev: false - /@apidevtools/swagger-parser/10.1.0_openapi-types@12.0.0: + /@apidevtools/swagger-parser@10.1.0(openapi-types@12.0.0): resolution: {integrity: sha512-9Kt7EuS/7WbMAUv2gSziqjvxwDbFSg3Xeyfuj5laUODX8o/k/CpsAKiQ8W7/R88eXFTMbJYg6+7uAmOWNKmwnw==} peerDependencies: openapi-types: '>=7' @@ -1163,12 +1583,12 @@ packages: '@apidevtools/swagger-methods': 3.0.2 '@jsdevtools/ono': 7.1.3 ajv: 8.11.0 - ajv-draft-04: 1.0.0_ajv@8.11.0 + ajv-draft-04: 1.0.0(ajv@8.11.0) call-me-maybe: 1.0.1 openapi-types: 12.0.0 dev: false - /@apollo/protobufjs/1.2.6: + /@apollo/protobufjs@1.2.6: resolution: {integrity: sha512-Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw==} hasBin: true requiresBuild: true @@ -1188,7 +1608,7 @@ packages: long: 4.0.0 dev: false - /@apollo/protobufjs/1.2.7: + /@apollo/protobufjs@1.2.7: resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==} hasBin: true requiresBuild: true @@ -1207,13 +1627,13 @@ packages: long: 4.0.0 dev: false - /@apollo/usage-reporting-protobuf/4.0.2: + /@apollo/usage-reporting-protobuf@4.0.2: resolution: {integrity: sha512-GfE8aDqi/lAFut95pjH9IRvH0zGsQ5G/2lYL0ZLZfML7ArX+A4UVHFANQcPCcUYGE6bI6OPhLekg4Vsjf6B1cw==} dependencies: '@apollo/protobufjs': 1.2.7 dev: false - /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@15.8.0: + /@apollo/utils.dropunuseddefinitions@1.1.0(graphql@15.8.0): resolution: {integrity: sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==} engines: {node: '>=12.13.0'} peerDependencies: @@ -1222,18 +1642,18 @@ packages: graphql: 15.8.0 dev: false - /@apollo/utils.keyvaluecache/1.0.2: + /@apollo/utils.keyvaluecache@1.0.2: resolution: {integrity: sha512-p7PVdLPMnPzmXSQVEsy27cYEjVON+SH/Wb7COyW3rQN8+wJgT1nv9jZouYtztWW8ZgTkii5T6tC9qfoDREd4mg==} dependencies: '@apollo/utils.logger': 1.0.1 lru-cache: 7.13.1 dev: false - /@apollo/utils.logger/1.0.1: + /@apollo/utils.logger@1.0.1: resolution: {integrity: sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA==} dev: false - /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@15.8.0: + /@apollo/utils.printwithreducedwhitespace@1.1.0(graphql@15.8.0): resolution: {integrity: sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==} engines: {node: '>=12.13.0'} peerDependencies: @@ -1242,7 +1662,7 @@ packages: graphql: 15.8.0 dev: false - /@apollo/utils.removealiases/1.0.0_graphql@15.8.0: + /@apollo/utils.removealiases@1.0.0(graphql@15.8.0): resolution: {integrity: sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==} engines: {node: '>=12.13.0'} peerDependencies: @@ -1251,7 +1671,7 @@ packages: graphql: 15.8.0 dev: false - /@apollo/utils.sortast/1.1.0_graphql@15.8.0: + /@apollo/utils.sortast@1.1.0(graphql@15.8.0): resolution: {integrity: sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==} engines: {node: '>=12.13.0'} peerDependencies: @@ -1261,7 +1681,7 @@ packages: lodash.sortby: 4.7.0 dev: false - /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@15.8.0: + /@apollo/utils.stripsensitiveliterals@1.2.0(graphql@15.8.0): resolution: {integrity: sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==} engines: {node: '>=12.13.0'} peerDependencies: @@ -1270,22 +1690,22 @@ packages: graphql: 15.8.0 dev: false - /@apollo/utils.usagereporting/1.0.1_graphql@15.8.0: + /@apollo/utils.usagereporting@1.0.1(graphql@15.8.0): resolution: {integrity: sha512-6dk+0hZlnDbahDBB2mP/PZ5ybrtCJdLMbeNJD+TJpKyZmSY6bA3SjI8Cr2EM9QA+AdziywuWg+SgbWUF3/zQqQ==} engines: {node: '>=12.13.0'} peerDependencies: graphql: 14.x || 15.x || 16.x dependencies: '@apollo/usage-reporting-protobuf': 4.0.2 - '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@15.8.0 - '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@15.8.0 - '@apollo/utils.removealiases': 1.0.0_graphql@15.8.0 - '@apollo/utils.sortast': 1.1.0_graphql@15.8.0 - '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@15.8.0 + '@apollo/utils.dropunuseddefinitions': 1.1.0(graphql@15.8.0) + '@apollo/utils.printwithreducedwhitespace': 1.1.0(graphql@15.8.0) + '@apollo/utils.removealiases': 1.0.0(graphql@15.8.0) + '@apollo/utils.sortast': 1.1.0(graphql@15.8.0) + '@apollo/utils.stripsensitiveliterals': 1.2.0(graphql@15.8.0) graphql: 15.8.0 dev: false - /@apollographql/apollo-tools/0.5.4_graphql@15.8.0: + /@apollographql/apollo-tools@0.5.4(graphql@15.8.0): resolution: {integrity: sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==} engines: {node: '>=8', npm: '>=6'} peerDependencies: @@ -1294,13 +1714,13 @@ packages: graphql: 15.8.0 dev: false - /@apollographql/graphql-playground-html/1.6.29: + /@apollographql/graphql-playground-html@1.6.29: resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==} dependencies: xss: 1.0.14 dev: false - /@ardatan/relay-compiler/12.0.0_graphql@15.8.0: + /@ardatan/relay-compiler@12.0.0(graphql@15.8.0): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: @@ -1312,7 +1732,7 @@ packages: '@babel/runtime': 7.18.6 '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 - babel-preset-fbjs: 3.4.0_@babel+core@7.18.6 + babel-preset-fbjs: 3.4.0(@babel/core@7.18.6) chalk: 4.1.2 fb-watchman: 2.0.1 fbjs: 3.0.4 @@ -1329,7 +1749,7 @@ packages: - supports-color dev: true - /@ardatan/relay-compiler/12.0.0_graphql@16.6.0: + /@ardatan/relay-compiler@12.0.0(graphql@16.6.0): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true peerDependencies: @@ -1341,7 +1761,7 @@ packages: '@babel/runtime': 7.18.6 '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 - babel-preset-fbjs: 3.4.0_@babel+core@7.18.6 + babel-preset-fbjs: 3.4.0(@babel/core@7.18.6) chalk: 4.1.2 fb-watchman: 2.0.1 fbjs: 3.0.4 @@ -1358,7 +1778,7 @@ packages: - supports-color dev: true - /@ardatan/sync-fetch/0.0.1: + /@ardatan/sync-fetch@0.0.1: resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} engines: {node: '>=14'} dependencies: @@ -1367,25 +1787,25 @@ packages: - encoding dev: true - /@babel/code-frame/7.18.6: + /@babel/code-frame@7.18.6: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.18.6: + /@babel/compat-data@7.18.6: resolution: {integrity: sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.18.6: + /@babel/core@7.18.6: resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 '@babel/generator': 7.18.7 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 + '@babel/helper-compilation-targets': 7.18.6(@babel/core@7.18.6) '@babel/helper-module-transforms': 7.18.6 '@babel/helpers': 7.18.6 '@babel/parser': 7.18.6 @@ -1393,7 +1813,7 @@ packages: '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 convert-source-map: 1.8.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) gensync: 1.0.0-beta.2 json5: 2.2.1 semver: 6.3.0 @@ -1401,7 +1821,7 @@ packages: - supports-color dev: true - /@babel/generator/7.18.7: + /@babel/generator@7.18.7: resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==} engines: {node: '>=6.9.0'} dependencies: @@ -1410,7 +1830,7 @@ packages: jsesc: 2.5.2 dev: true - /@babel/generator/7.21.1: + /@babel/generator@7.21.1: resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} engines: {node: '>=6.9.0'} dependencies: @@ -1420,22 +1840,22 @@ packages: jsesc: 2.5.2 dev: true - /@babel/helper-annotate-as-pure/7.18.6: + /@babel/helper-annotate-as-pure@7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.18.6: + /@babel/helper-builder-binary-assignment-operator-visitor@7.18.6: resolution: {integrity: sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.18.7 + '@babel/types': 7.21.2 dev: true - /@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.6: + /@babel/helper-compilation-targets@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1448,7 +1868,7 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.6: + /@babel/helper-create-class-features-plugin@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1466,7 +1886,7 @@ packages: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.6: + /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1477,17 +1897,17 @@ packages: regexpu-core: 5.1.0 dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.6: + /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.18.6): resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 + '@babel/helper-compilation-targets': 7.18.6(@babel/core@7.18.6) '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/traverse': 7.18.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) lodash.debounce: 4.0.8 resolve: 1.22.1 semver: 6.3.0 @@ -1495,19 +1915,19 @@ packages: - supports-color dev: true - /@babel/helper-environment-visitor/7.18.6: + /@babel/helper-environment-visitor@7.18.6: resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-explode-assignable-expression/7.18.6: + /@babel/helper-explode-assignable-expression@7.18.6: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.21.2 dev: true - /@babel/helper-function-name/7.18.6: + /@babel/helper-function-name@7.18.6: resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} engines: {node: '>=6.9.0'} dependencies: @@ -1515,28 +1935,28 @@ packages: '@babel/types': 7.18.7 dev: true - /@babel/helper-hoist-variables/7.18.6: + /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-member-expression-to-functions/7.18.6: + /@babel/helper-member-expression-to-functions@7.18.6: resolution: {integrity: sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-module-imports/7.18.6: + /@babel/helper-module-imports@7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-module-transforms/7.18.6: + /@babel/helper-module-transforms@7.18.6: resolution: {integrity: sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==} engines: {node: '>=6.9.0'} dependencies: @@ -1552,24 +1972,24 @@ packages: - supports-color dev: true - /@babel/helper-optimise-call-expression/7.18.6: + /@babel/helper-optimise-call-expression@7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-plugin-utils/7.18.6: + /@babel/helper-plugin-utils@7.18.6: resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-plugin-utils/7.20.2: + /@babel/helper-plugin-utils@7.20.2: resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.6_@babel+core@7.18.6: + /@babel/helper-remap-async-to-generator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1579,12 +1999,12 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.6 '@babel/helper-wrap-function': 7.18.6 - '@babel/types': 7.18.7 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.18.6: + /@babel/helper-replace-supers@7.18.6: resolution: {integrity: sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==} engines: {node: '>=6.9.0'} dependencies: @@ -1597,57 +2017,57 @@ packages: - supports-color dev: true - /@babel/helper-simple-access/7.18.6: + /@babel/helper-simple-access@7.18.6: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.18.6: + /@babel/helper-skip-transparent-expression-wrappers@7.18.6: resolution: {integrity: sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-split-export-declaration/7.18.6: + /@babel/helper-split-export-declaration@7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.7 dev: true - /@babel/helper-string-parser/7.19.4: + /@babel/helper-string-parser@7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.18.6: + /@babel/helper-validator-identifier@7.18.6: resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.19.1: + /@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.18.6: + /@babel/helper-validator-option@7.18.6: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function/7.18.6: + /@babel/helper-wrap-function@7.18.6: resolution: {integrity: sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.18.6 - '@babel/template': 7.18.6 + '@babel/template': 7.20.7 '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.18.6: + /@babel/helpers@7.18.6: resolution: {integrity: sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==} engines: {node: '>=6.9.0'} dependencies: @@ -1658,7 +2078,7 @@ packages: - supports-color dev: true - /@babel/highlight/7.18.6: + /@babel/highlight@7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} engines: {node: '>=6.9.0'} dependencies: @@ -1666,14 +2086,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser/7.18.6: + /@babel/parser@7.18.6: resolution: {integrity: sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.18.7 - /@babel/parser/7.20.15: + /@babel/parser@7.20.15: resolution: {integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==} engines: {node: '>=6.0.0'} hasBin: true @@ -1681,36 +2101,36 @@ packages: '@babel/types': 7.20.7 dev: true - /@babel/parser/7.21.2: + /@babel/parser@7.21.2: resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.21.2 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.6: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.6_@babel+core@7.18.6: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-proposal-optional-chaining': 7.18.6(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-async-generator-functions@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1718,107 +2138,107 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.6) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.6(@babel/core@7.18.6) '@babel/helper-plugin-utils': 7.18.6 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.6) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-export-namespace-from@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-logical-assignment-operators@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-object-rest-spread@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1826,49 +2246,49 @@ packages: dependencies: '@babel/compat-data': 7.18.6 '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 + '@babel/helper-compilation-targets': 7.18.6(@babel/core@7.18.6) '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-transform-parameters': 7.18.6(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-optional-chaining/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-optional-chaining@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.6) dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1876,25 +2296,25 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.6) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.6: + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.6): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1903,7 +2323,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1912,7 +2332,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.6: + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.6): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1921,35 +2341,35 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.6): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -1959,26 +2379,17 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - dev: true - - /@babel/plugin-syntax-import-assertions/7.20.0: + /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.18.6): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.6: + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.18.6): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1987,7 +2398,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1996,7 +2407,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2006,7 +2417,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.6: + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.6): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2015,7 +2426,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2024,7 +2435,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.6: + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.6): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2033,7 +2444,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2042,7 +2453,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2051,7 +2462,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.6): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2060,17 +2471,17 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.18.6): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.6): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2080,7 +2491,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2090,7 +2501,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2100,7 +2511,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2108,13 +2519,13 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.6(@babel/core@7.18.6) transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2124,7 +2535,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-block-scoping/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-block-scoping@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2134,7 +2545,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-classes/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-classes@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2153,7 +2564,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-computed-properties@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2163,7 +2574,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-destructuring/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-destructuring@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2173,28 +2584,28 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-duplicate-keys@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2202,10 +2613,10 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-flow-strip-types/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-flow-strip-types@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2213,10 +2624,10 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.6) dev: true - /@babel/plugin-transform-for-of/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-for-of@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2226,19 +2637,19 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-function-name/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-function-name@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 + '@babel/helper-compilation-targets': 7.18.6(@babel/core@7.18.6) '@babel/helper-function-name': 7.18.6 '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-literals@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2248,7 +2659,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2258,7 +2669,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2266,13 +2677,13 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2287,7 +2698,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-systemjs@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2296,14 +2707,14 @@ packages: '@babel/core': 7.18.6 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2311,33 +2722,33 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2350,7 +2761,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-parameters/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-parameters@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2360,7 +2771,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2370,7 +2781,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2380,7 +2791,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-jsx@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2390,32 +2801,32 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.6) '@babel/types': 7.18.7 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2425,7 +2836,7 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-spread/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-spread@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2436,17 +2847,17 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-template-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-template-literals@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2456,38 +2867,38 @@ packages: '@babel/helper-plugin-utils': 7.18.6 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-typeof-symbol@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-unicode-escapes/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-unicode-escapes@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/preset-env/7.18.6_@babel+core@7.18.6: + /@babel/preset-env@7.18.6(@babel/core@7.18.6): resolution: {integrity: sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==} engines: {node: '>=6.9.0'} peerDependencies: @@ -2495,108 +2906,108 @@ packages: dependencies: '@babel/compat-data': 7.18.6 '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-compilation-targets': 7.18.6(@babel/core@7.18.6) + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-export-namespace-from': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-object-rest-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoping': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-classes': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-computed-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-destructuring': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-duplicate-keys': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-systemjs': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-template-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-typeof-symbol': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-unicode-escapes': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.6 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.6 - '@babel/types': 7.18.7 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.6 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.6 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-async-generator-functions': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-export-namespace-from': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-logical-assignment-operators': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-object-rest-spread': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-optional-chaining': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.6) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.6) + '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-block-scoping': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-classes': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-computed-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-destructuring': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-duplicate-keys': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-for-of': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-function-name': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-modules-systemjs': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-parameters': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-spread': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-template-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-typeof-symbol': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-unicode-escapes': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.6) + '@babel/preset-modules': 0.1.5(@babel/core@7.18.6) + '@babel/types': 7.21.2 + babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.18.6) + babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.18.6) + babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.18.6) core-js-compat: 3.23.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.18.6: + /@babel/preset-modules@0.1.5(@babel/core@7.18.6): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6 - '@babel/types': 7.18.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.6) + '@babel/types': 7.21.2 esutils: 2.0.3 dev: true - /@babel/runtime/7.18.6: + /@babel/runtime@7.18.6: resolution: {integrity: sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.10 - /@babel/standalone/7.20.0: + /@babel/standalone@7.20.0: resolution: {integrity: sha512-8toFReoMyknVN538KZYS9HJLUlpvibQiPQqt8TYFeyV+FlZUmM8TG2zcS8q4vAijCRLoAKT1EzeBVvbxjMfi9A==} engines: {node: '>=6.9.0'} - /@babel/template/7.18.6: + /@babel/template@7.18.6: resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==} engines: {node: '>=6.9.0'} dependencies: @@ -2605,7 +3016,7 @@ packages: '@babel/types': 7.18.7 dev: true - /@babel/template/7.20.7: + /@babel/template@7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: @@ -2614,7 +3025,7 @@ packages: '@babel/types': 7.20.7 dev: true - /@babel/traverse/7.18.6: + /@babel/traverse@7.18.6: resolution: {integrity: sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==} engines: {node: '>=6.9.0'} dependencies: @@ -2626,20 +3037,20 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/parser': 7.18.6 '@babel/types': 7.18.7 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.18.7: + /@babel/types@7.18.7: resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.18.6 to-fast-properties: 2.0.0 - /@babel/types/7.20.7: + /@babel/types@7.20.7: resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} engines: {node: '>=6.9.0'} dependencies: @@ -2648,7 +3059,7 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.21.2: + /@babel/types@7.21.2: resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} engines: {node: '>=6.9.0'} dependencies: @@ -2656,16 +3067,17 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 - /@bcoe/v8-coverage/0.2.3: + /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@codemirror/autocomplete/6.0.3_2tvhcfwni47fhspxv36jamkaqi: + /@codemirror/autocomplete@6.0.3(@codemirror/language@6.2.0)(@codemirror/state@6.1.0)(@codemirror/view@6.0.2)(@lezer/common@1.0.0): resolution: {integrity: sha512-JTSBDC4tUyR8iRmCwQJaYpTXtOZmRn4gKjw1Fu4xIatFPqTJ7m0QRCdkdbzlvMovzjTiuHp4a8WUEB1c/LtiHg==} peerDependencies: '@codemirror/language': ^6.0.0 '@codemirror/state': ^6.0.0 '@codemirror/view': ^6.0.0 + '@lezer/common': ^1.0.0 dependencies: '@codemirror/language': 6.2.0 '@codemirror/state': 6.1.0 @@ -2673,7 +3085,7 @@ packages: '@lezer/common': 1.0.0 dev: false - /@codemirror/commands/6.0.1: + /@codemirror/commands@6.0.1: resolution: {integrity: sha512-iNHDByicYqQjs0Wo1MKGfqNbMYMyhS9WV6EwMVwsHXImlFemgEUC+c5X22bXKBStN3qnwg4fArNZM+gkv22baQ==} dependencies: '@codemirror/language': 6.2.0 @@ -2682,7 +3094,7 @@ packages: '@lezer/common': 1.0.0 dev: false - /@codemirror/commands/6.2.0: + /@codemirror/commands@6.2.0: resolution: {integrity: sha512-+00smmZBradoGFEkRjliN7BjqPh/Hx0KCHWOEibUmflUqZz2RwBTU0MrVovEEHozhx3AUSGcO/rl3/5f9e9Biw==} dependencies: '@codemirror/language': 6.4.0 @@ -2691,10 +3103,10 @@ packages: '@lezer/common': 1.0.0 dev: true - /@codemirror/lang-javascript/6.0.1: + /@codemirror/lang-javascript@6.0.1: resolution: {integrity: sha512-kjGbBEosl+ozDU5ruDV48w4v3H6KECTFiDjqMLT0KhVwESPfv3wOvnDrTT0uaMOg3YRGnBWsyiIoKHl/tNWWDg==} dependencies: - '@codemirror/autocomplete': 6.0.3_2tvhcfwni47fhspxv36jamkaqi + '@codemirror/autocomplete': 6.0.3(@codemirror/language@6.2.0)(@codemirror/state@6.1.0)(@codemirror/view@6.0.2)(@lezer/common@1.0.0) '@codemirror/language': 6.2.0 '@codemirror/lint': 6.0.0 '@codemirror/state': 6.1.0 @@ -2703,16 +3115,16 @@ packages: '@lezer/javascript': 1.0.1 dev: false - /@codemirror/lang-json/6.0.0: + /@codemirror/lang-json@6.0.0: resolution: {integrity: sha512-DvTcYTKLmg2viADXlTdufrT334M9jowe1qO02W28nvm+nejcvhM5vot5mE8/kPrxYw/HJHhwu1z2PyBpnMLCNQ==} dependencies: '@codemirror/language': 6.2.0 '@lezer/json': 1.0.0 - /@codemirror/lang-xml/6.0.0_@codemirror+view@6.0.2: + /@codemirror/lang-xml@6.0.0(@codemirror/view@6.0.2): resolution: {integrity: sha512-M/HLWxIiP956xGjtrxkeHkCmDGVQGKu782x8pOH5CLJIMkWtiB1DWfDoDHqpFjdEE9dkfcqPWvYfVi6GbhuXEg==} dependencies: - '@codemirror/autocomplete': 6.0.3_2tvhcfwni47fhspxv36jamkaqi + '@codemirror/autocomplete': 6.0.3(@codemirror/language@6.2.0)(@codemirror/state@6.1.0)(@codemirror/view@6.0.2)(@lezer/common@1.0.0) '@codemirror/language': 6.2.0 '@codemirror/state': 6.1.0 '@lezer/common': 1.0.0 @@ -2721,7 +3133,7 @@ packages: - '@codemirror/view' dev: false - /@codemirror/language/6.2.0: + /@codemirror/language@6.2.0: resolution: {integrity: sha512-tabB0Ef/BflwoEmTB4a//WZ9P90UQyne9qWB9YFsmeS4bnEqSys7UpGk/da1URMXhyfuzWCwp+AQNMhvu8SfnA==} dependencies: '@codemirror/state': 6.1.0 @@ -2731,7 +3143,7 @@ packages: '@lezer/lr': 1.2.0 style-mod: 4.0.0 - /@codemirror/language/6.4.0: + /@codemirror/language@6.4.0: resolution: {integrity: sha512-Wzb7GnNj8vnEtbPWiOy9H0m1fBtE28kepQNGLXekU2EEZv43BF865VKITUn+NoV8OpW6gRtvm29YEhqm46927Q==} dependencies: '@codemirror/state': 6.2.0 @@ -2742,20 +3154,20 @@ packages: style-mod: 4.0.0 dev: true - /@codemirror/legacy-modes/6.1.0: + /@codemirror/legacy-modes@6.1.0: resolution: {integrity: sha512-V/PgGpndkZeTn3Hdlg/gd8MLFdyvTCIX+iwJzjUw5iNziWiNsAY8X0jvf7m3gSfxnKkNzmid6l0g4rYSpiDaCw==} dependencies: '@codemirror/language': 6.2.0 dev: false - /@codemirror/lint/6.0.0: + /@codemirror/lint@6.0.0: resolution: {integrity: sha512-nUUXcJW1Xp54kNs+a1ToPLK8MadO0rMTnJB8Zk4Z8gBdrN0kqV7uvUraU/T2yqg+grDNR38Vmy/MrhQN/RgwiA==} dependencies: '@codemirror/state': 6.1.0 '@codemirror/view': 6.0.2 crelt: 1.0.5 - /@codemirror/search/6.0.0: + /@codemirror/search@6.0.0: resolution: {integrity: sha512-rL0rd3AhI0TAsaJPUaEwC63KHLO7KL0Z/dYozXj6E7L3wNHRyx7RfE0/j5HsIf912EE5n2PCb4Vg0rGYmDv4UQ==} dependencies: '@codemirror/state': 6.1.0 @@ -2763,14 +3175,14 @@ packages: crelt: 1.0.5 dev: false - /@codemirror/state/6.1.0: + /@codemirror/state@6.1.0: resolution: {integrity: sha512-qbUr94DZTe6/V1VS7LDLz11rM/1t/nJxR1El4I6UaxDEdc0aZZvq6JCLJWiRmUf95NRAnDH6fhXn+PWp9wGCIg==} - /@codemirror/state/6.2.0: + /@codemirror/state@6.2.0: resolution: {integrity: sha512-69QXtcrsc3RYtOtd+GsvczJ319udtBf1PTrr2KbLWM/e2CXUPnh0Nz9AUo8WfhSQ7GeL8dPVNUmhQVgpmuaNGA==} dev: true - /@codemirror/theme-one-dark/6.1.0: + /@codemirror/theme-one-dark@6.1.0: resolution: {integrity: sha512-AiTHtFRu8+vWT9wWUWDM+cog6ZwgivJogB1Tm/g40NIpLwph7AnmxrSzWfvJN5fBVufsuwBxecQCNmdcR5D7Aw==} dependencies: '@codemirror/language': 6.4.0 @@ -2779,14 +3191,14 @@ packages: '@lezer/highlight': 1.0.0 dev: true - /@codemirror/view/6.0.2: + /@codemirror/view@6.0.2: resolution: {integrity: sha512-mnVT/q1JvKPjpmjXJNeCi/xHyaJ3abGJsumIVpdQ1nE1MXAyHf7GHWt8QpWMUvDiqF0j+inkhVR2OviTdFFX7Q==} dependencies: '@codemirror/state': 6.1.0 style-mod: 4.0.0 w3c-keyname: 2.2.4 - /@codemirror/view/6.7.3: + /@codemirror/view@6.7.3: resolution: {integrity: sha512-Lt+4POnhXrZFfHOdPzXEHxrzwdy7cjqYlMkOWvoFGi6/bAsjzlFfr0NY3B15B/PGx+cDFgM1hlc12wvYeZbGLw==} dependencies: '@codemirror/state': 6.2.0 @@ -2794,14 +3206,14 @@ packages: w3c-keyname: 2.2.4 dev: true - /@colors/colors/1.5.0: + /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} requiresBuild: true dev: true optional: true - /@commitlint/cli/16.3.0: + /@commitlint/cli@16.3.0: resolution: {integrity: sha512-P+kvONlfsuTMnxSwWE1H+ZcPMY3STFaHb2kAacsqoIkNx66O0T7sTpBxpxkMrFPyhkJiLJnJWMhk4bbvYD3BMA==} engines: {node: '>=v12'} hasBin: true @@ -2820,14 +3232,14 @@ packages: - '@swc/wasm' dev: true - /@commitlint/config-conventional/16.2.4: + /@commitlint/config-conventional@16.2.4: resolution: {integrity: sha512-av2UQJa3CuE5P0dzxj/o/B9XVALqYzEViHrMXtDrW9iuflrqCStWBAioijppj9URyz6ONpohJKAtSdgAOE0gkA==} engines: {node: '>=v12'} dependencies: conventional-changelog-conventionalcommits: 4.6.3 dev: true - /@commitlint/config-validator/16.2.1: + /@commitlint/config-validator@16.2.1: resolution: {integrity: sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw==} engines: {node: '>=v12'} dependencies: @@ -2835,7 +3247,7 @@ packages: ajv: 6.12.6 dev: true - /@commitlint/ensure/16.2.1: + /@commitlint/ensure@16.2.1: resolution: {integrity: sha512-/h+lBTgf1r5fhbDNHOViLuej38i3rZqTQnBTk+xEg+ehOwQDXUuissQ5GsYXXqI5uGy+261ew++sT4EA3uBJ+A==} engines: {node: '>=v12'} dependencies: @@ -2843,12 +3255,12 @@ packages: lodash: 4.17.21 dev: true - /@commitlint/execute-rule/16.2.1: + /@commitlint/execute-rule@16.2.1: resolution: {integrity: sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g==} engines: {node: '>=v12'} dev: true - /@commitlint/format/16.2.1: + /@commitlint/format@16.2.1: resolution: {integrity: sha512-Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q==} engines: {node: '>=v12'} dependencies: @@ -2856,7 +3268,7 @@ packages: chalk: 4.1.2 dev: true - /@commitlint/is-ignored/16.2.4: + /@commitlint/is-ignored@16.2.4: resolution: {integrity: sha512-Lxdq9aOAYCOOOjKi58ulbwK/oBiiKz+7Sq0+/SpFIEFwhHkIVugvDvWjh2VRBXmRC/x5lNcjDcYEwS/uYUvlYQ==} engines: {node: '>=v12'} dependencies: @@ -2864,7 +3276,7 @@ packages: semver: 7.3.7 dev: true - /@commitlint/lint/16.2.4: + /@commitlint/lint@16.2.4: resolution: {integrity: sha512-AUDuwOxb2eGqsXbTMON3imUGkc1jRdtXrbbohiLSCSk3jFVXgJLTMaEcr39pR00N8nE9uZ+V2sYaiILByZVmxQ==} engines: {node: '>=v12'} dependencies: @@ -2874,7 +3286,7 @@ packages: '@commitlint/types': 16.2.1 dev: true - /@commitlint/load/16.3.0: + /@commitlint/load@16.3.0: resolution: {integrity: sha512-3tykjV/iwbkv2FU9DG+NZ/JqmP0Nm3b7aDwgCNQhhKV5P74JAuByULkafnhn+zsFGypG1qMtI5u+BZoa9APm0A==} engines: {node: '>=v12'} dependencies: @@ -2885,7 +3297,7 @@ packages: '@types/node': 17.0.45 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 2.0.2_7cep2inysldxstbcrxlp3njwym + cosmiconfig-typescript-loader: 2.0.2(@types/node@17.0.45)(cosmiconfig@7.0.1)(typescript@4.9.3) lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.9.3 @@ -2894,12 +3306,12 @@ packages: - '@swc/wasm' dev: true - /@commitlint/message/16.2.1: + /@commitlint/message@16.2.1: resolution: {integrity: sha512-2eWX/47rftViYg7a3axYDdrgwKv32mxbycBJT6OQY/MJM7SUfYNYYvbMFOQFaA4xIVZt7t2Alyqslbl6blVwWw==} engines: {node: '>=v12'} dev: true - /@commitlint/parse/16.2.1: + /@commitlint/parse@16.2.1: resolution: {integrity: sha512-2NP2dDQNL378VZYioLrgGVZhWdnJO4nAxQl5LXwYb08nEcN+cgxHN1dJV8OLJ5uxlGJtDeR8UZZ1mnQ1gSAD/g==} engines: {node: '>=v12'} dependencies: @@ -2908,7 +3320,7 @@ packages: conventional-commits-parser: 3.2.4 dev: true - /@commitlint/read/16.2.1: + /@commitlint/read@16.2.1: resolution: {integrity: sha512-tViXGuaxLTrw2r7PiYMQOFA2fueZxnnt0lkOWqKyxT+n2XdEMGYcI9ID5ndJKXnfPGPppD0w/IItKsIXlZ+alw==} engines: {node: '>=v12'} dependencies: @@ -2918,7 +3330,7 @@ packages: git-raw-commits: 2.0.11 dev: true - /@commitlint/resolve-extends/16.2.1: + /@commitlint/resolve-extends@16.2.1: resolution: {integrity: sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg==} engines: {node: '>=v12'} dependencies: @@ -2930,7 +3342,7 @@ packages: resolve-global: 1.0.0 dev: true - /@commitlint/rules/16.2.4: + /@commitlint/rules@16.2.4: resolution: {integrity: sha512-rK5rNBIN2ZQNQK+I6trRPK3dWa0MtaTN4xnwOma1qxa4d5wQMQJtScwTZjTJeallFxhOgbNOgr48AMHkdounVg==} engines: {node: '>=v12'} dependencies: @@ -2941,32 +3353,32 @@ packages: execa: 5.1.1 dev: true - /@commitlint/to-lines/16.2.1: + /@commitlint/to-lines@16.2.1: resolution: {integrity: sha512-9/VjpYj5j1QeY3eiog1zQWY6axsdWAc0AonUUfyZ7B0MVcRI0R56YsHAfzF6uK/g/WwPZaoe4Lb1QCyDVnpVaQ==} engines: {node: '>=v12'} dev: true - /@commitlint/top-level/16.2.1: + /@commitlint/top-level@16.2.1: resolution: {integrity: sha512-lS6GSieHW9y6ePL73ied71Z9bOKyK+Ib9hTkRsB8oZFAyQZcyRwq2w6nIa6Fngir1QW51oKzzaXfJL94qwImyw==} engines: {node: '>=v12'} dependencies: find-up: 5.0.0 dev: true - /@commitlint/types/16.2.1: + /@commitlint/types@16.2.1: resolution: {integrity: sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA==} engines: {node: '>=v12'} dependencies: chalk: 4.1.2 dev: true - /@cspotcode/source-map-support/0.8.1: + /@cspotcode/source-map-support@0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 - /@digitak/esrun/3.2.8: + /@digitak/esrun@3.2.8: resolution: {integrity: sha512-NUpcDW8OyUl85AqEyWEib2Rc5TSmMYOdHoH8/IcAabXNMh+3FJS+pTqxVv+2R+jZrnPTjDdBr7gTYij1E7TRLg==} engines: {node: '>=14.0'} hasBin: true @@ -2976,27 +3388,27 @@ packages: esbuild: 0.14.48 dev: true - /@digitak/grubber/3.1.2: + /@digitak/grubber@3.1.2: resolution: {integrity: sha512-I+ova6YCVhEg91iafa54KEkLRAY9tJaQGdnVE4TzJLziOjP6vDZXIn24KMav+Z6mCElnyFeejXJ9Igl7jzwdSQ==} dev: true - /@emmetio/abbreviation/2.2.3: + /@emmetio/abbreviation@2.2.3: resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==} dependencies: '@emmetio/scanner': 1.0.0 dev: true - /@emmetio/css-abbreviation/2.1.4: + /@emmetio/css-abbreviation@2.1.4: resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==} dependencies: '@emmetio/scanner': 1.0.0 dev: true - /@emmetio/scanner/1.0.0: + /@emmetio/scanner@1.0.0: resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==} dev: true - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_qkc3vo3nzqm3fls2mklcv7vbki: + /@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.0.1)(typescript@4.7.4): resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -3005,42 +3417,45 @@ packages: cosmiconfig: 7.0.1 lodash.get: 4.4.2 make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.9.3 + ts-node: 9.1.1(typescript@4.7.4) + tslib: 2.4.0 + transitivePeerDependencies: + - typescript + + /@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.0.1)(typescript@4.9.3): + resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} + engines: {node: '>=10.0.0'} + peerDependencies: + cosmiconfig: '>=6' + dependencies: + cosmiconfig: 7.0.1 + lodash.get: 4.4.2 + make-error: 1.3.6 + ts-node: 9.1.1(typescript@4.9.3) tslib: 2.4.0 transitivePeerDependencies: - typescript dev: true - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_zmjss6mecb4soo3dpdlecld3xa: - resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} - engines: {node: '>=10.0.0'} - peerDependencies: - cosmiconfig: '>=6' - dependencies: - cosmiconfig: 7.0.1 - lodash.get: 4.4.2 - make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.7.4 - tslib: 2.4.0 - transitivePeerDependencies: - - typescript - - /@esbuild-plugins/node-globals-polyfill/0.1.1: + /@esbuild-plugins/node-globals-polyfill@0.1.1(esbuild@0.15.15): resolution: {integrity: sha512-MR0oAA+mlnJWrt1RQVQ+4VYuRJW/P2YmRTv1AsplObyvuBMnPHiizUF95HHYiSsMGLhyGtWufaq2XQg6+iurBg==} peerDependencies: esbuild: '*' + dependencies: + esbuild: 0.15.15 dev: true - /@esbuild-plugins/node-modules-polyfill/0.1.4: + /@esbuild-plugins/node-modules-polyfill@0.1.4(esbuild@0.15.15): resolution: {integrity: sha512-uZbcXi0zbmKC/050p3gJnne5Qdzw8vkXIv+c2BW0Lsc1ji1SkrxbKPUy5Efr0blbTu1SL8w4eyfpnSdPg3G0Qg==} peerDependencies: esbuild: '*' dependencies: + esbuild: 0.15.15 escape-string-regexp: 4.0.0 rollup-plugin-node-polyfills: 0.2.1 dev: true - /@esbuild/android-arm/0.15.15: + /@esbuild/android-arm@0.15.15: resolution: {integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==} engines: {node: '>=12'} cpu: [arm] @@ -3048,7 +3463,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.15.15: + /@esbuild/linux-loong64@0.15.15: resolution: {integrity: sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==} engines: {node: '>=12'} cpu: [loong64] @@ -3056,7 +3471,7 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.15.7: + /@esbuild/linux-loong64@0.15.7: resolution: {integrity: sha512-IKznSJOsVUuyt7cDzzSZyqBEcZe+7WlBqTVXiF1OXP/4Nm387ToaXZ0fyLwI1iBlI/bzpxVq411QE2/Bt2XWWw==} engines: {node: '>=12'} cpu: [loong64] @@ -3064,12 +3479,12 @@ packages: requiresBuild: true optional: true - /@eslint/eslintrc/1.3.0: + /@eslint/eslintrc@1.3.0: resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) espree: 9.4.0 globals: 13.16.0 ignore: 5.2.0 @@ -3081,12 +3496,12 @@ packages: - supports-color dev: true - /@eslint/eslintrc/1.3.2: + /@eslint/eslintrc@1.3.2: resolution: {integrity: sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) espree: 9.4.0 globals: 13.16.0 ignore: 5.2.0 @@ -3098,12 +3513,12 @@ packages: - supports-color dev: true - /@eslint/eslintrc/1.3.3: + /@eslint/eslintrc@1.3.3: resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) espree: 9.4.0 globals: 13.16.0 ignore: 5.2.0 @@ -3114,16 +3529,16 @@ packages: transitivePeerDependencies: - supports-color - /@faker-js/faker/5.5.3: + /@faker-js/faker@5.5.3: resolution: {integrity: sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==} dev: false - /@firebase/analytics-compat/0.1.12_ikt45rtbctnl5l4y6p3bca5464: + /@firebase/analytics-compat@0.1.12(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27): resolution: {integrity: sha512-mXR02p/4C9Xx07prhzr9nwocH6Xn3vpcO7DMGUMNB0qKdJADOaBow6LDlDY3u8ILhmHqNS8qPY3sKnhoTWzz8A==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/analytics': 0.7.11_@firebase+app@0.7.27 + '@firebase/analytics': 0.7.11(@firebase/app@0.7.27) '@firebase/analytics-types': 0.7.0 '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 @@ -3133,29 +3548,29 @@ packages: - '@firebase/app' dev: false - /@firebase/analytics-types/0.7.0: + /@firebase/analytics-types@0.7.0: resolution: {integrity: sha512-DNE2Waiwy5+zZnCfintkDtBfaW6MjIG883474v6Z0K1XZIvl76cLND4iv0YUb48leyF+PJK1KO2XrgHb/KpmhQ==} dev: false - /@firebase/analytics/0.7.11_@firebase+app@0.7.27: + /@firebase/analytics@0.7.11(@firebase/app@0.7.27): resolution: {integrity: sha512-rEGBmZdvD+biSAcMztrIftc/vS8Wgexau8Ok2aFqo3n3IkKDdBq2tdhh6tXsugBt755+q56HGQOHRWboaqG3LQ==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.27 '@firebase/component': 0.5.16 - '@firebase/installations': 0.5.11_@firebase+app@0.7.27 + '@firebase/installations': 0.5.11(@firebase/app@0.7.27) '@firebase/logger': 0.3.3 '@firebase/util': 1.6.2 tslib: 2.5.0 dev: false - /@firebase/app-check-compat/0.2.10_ikt45rtbctnl5l4y6p3bca5464: + /@firebase/app-check-compat@0.2.10(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27): resolution: {integrity: sha512-NNxroiY3BVaEGkKs8W4dzv2WnJ4PbeBL7DpF1MlRHEZHa/48YPZv8xKx3QcKbH0T+31s7ponPYnRYsNY+j4CaA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-check': 0.5.10_@firebase+app@0.7.27 + '@firebase/app-check': 0.5.10(@firebase/app@0.7.27) '@firebase/app-check-types': 0.4.0 '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 @@ -3166,15 +3581,15 @@ packages: - '@firebase/app' dev: false - /@firebase/app-check-interop-types/0.1.0: + /@firebase/app-check-interop-types@0.1.0: resolution: {integrity: sha512-uZfn9s4uuRsaX5Lwx+gFP3B6YsyOKUE+Rqa6z9ojT4VSRAsZFko9FRn6OxQUA1z5t5d08fY4pf+/+Dkd5wbdbA==} dev: false - /@firebase/app-check-types/0.4.0: + /@firebase/app-check-types@0.4.0: resolution: {integrity: sha512-SsWafqMABIOu7zLgWbmwvHGOeQQVQlwm42kwwubsmfLmL4Sf5uGpBfDhQ0CAkpi7bkJ/NwNFKafNDL9prRNP0Q==} dev: false - /@firebase/app-check/0.5.10_@firebase+app@0.7.27: + /@firebase/app-check@0.5.10(@firebase/app@0.7.27): resolution: {integrity: sha512-q/rpvhPBU7utREWTlsw+Nr9aZAHKZieF9o/6EJkymqFvWDDmvN+hycKidKWwJ2OcnUYjOr7GuvWUEAfw8X8/tQ==} peerDependencies: '@firebase/app': 0.x @@ -3186,7 +3601,7 @@ packages: tslib: 2.5.0 dev: false - /@firebase/app-compat/0.1.28: + /@firebase/app-compat@0.1.28: resolution: {integrity: sha512-yo1A32zMSaFv+hG9XcSkquA1GD8ph+Hx6hxOp8XQjtzkXA+TJzA0ehvDp1YCL6owBXn9RXphUC6mofPdDEFJKQ==} dependencies: '@firebase/app': 0.7.27 @@ -3196,11 +3611,11 @@ packages: tslib: 2.5.0 dev: false - /@firebase/app-types/0.7.0: + /@firebase/app-types@0.7.0: resolution: {integrity: sha512-6fbHQwDv2jp/v6bXhBw2eSRbNBpxHcd1NBF864UksSMVIqIyri9qpJB1Mn6sGZE+bnDsSQBC5j2TbMxYsJQkQg==} dev: false - /@firebase/app/0.7.27: + /@firebase/app@0.7.27: resolution: {integrity: sha512-gLxy9wHymCsPAWuIWg2S/gOWoAN/Nbpto+IWSXPHzjVUtPRvmuBrr9rvh8D2V2zHxNb1WigoZVLy5acRAf2rHg==} dependencies: '@firebase/component': 0.5.16 @@ -3210,14 +3625,14 @@ packages: tslib: 2.5.0 dev: false - /@firebase/auth-compat/0.2.17_2whj6v3knk7rswcmdbn5bdkgna: + /@firebase/auth-compat@0.2.17(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27): resolution: {integrity: sha512-GlEnDjziTEbFKqdILugBis9ZaQx57Y7bz5Uk41c793BusGXOgcZdrqjjM3DpNKPWBvi58rNbP0FdcAZA7DsWTw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.28 - '@firebase/auth': 0.20.4_@firebase+app@0.7.27 - '@firebase/auth-types': 0.11.0_ee7bhenjigpuz3jknhp5542foa + '@firebase/auth': 0.20.4(@firebase/app@0.7.27) + '@firebase/auth-types': 0.11.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2) '@firebase/component': 0.5.16 '@firebase/util': 1.6.2 node-fetch: 2.6.7 @@ -3231,7 +3646,7 @@ packages: - utf-8-validate dev: false - /@firebase/auth-interop-types/0.1.6_ee7bhenjigpuz3jknhp5542foa: + /@firebase/auth-interop-types@0.1.6(@firebase/app-types@0.7.0)(@firebase/util@1.6.2): resolution: {integrity: sha512-etIi92fW3CctsmR9e3sYM3Uqnoq861M0Id9mdOPF6PWIg38BXL5k4upCNBggGUpLIS0H1grMOvy/wn1xymwe2g==} peerDependencies: '@firebase/app-types': 0.x @@ -3241,7 +3656,7 @@ packages: '@firebase/util': 1.6.2 dev: false - /@firebase/auth-types/0.11.0_ee7bhenjigpuz3jknhp5542foa: + /@firebase/auth-types@0.11.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2): resolution: {integrity: sha512-q7Bt6cx+ySj9elQHTsKulwk3+qDezhzRBFC9zlQ1BjgMueUOnGMcvqmU0zuKlQ4RhLSH7MNAdBV2znVaoN3Vxw==} peerDependencies: '@firebase/app-types': 0.x @@ -3251,7 +3666,7 @@ packages: '@firebase/util': 1.6.2 dev: false - /@firebase/auth/0.20.4_@firebase+app@0.7.27: + /@firebase/auth@0.20.4(@firebase/app@0.7.27): resolution: {integrity: sha512-pWIrPB635QpPPbr7GFt2JMvSu/+Mgz/wLnMMrX3hHaPl4UlRLKdycohPSIZF+EGgc7PLx6p9fJvcw1fGEFZNXQ==} peerDependencies: '@firebase/app': 0.x @@ -3269,18 +3684,18 @@ packages: - utf-8-validate dev: false - /@firebase/component/0.5.16: + /@firebase/component@0.5.16: resolution: {integrity: sha512-/pkl77mN9PT7dTSzNu1CrvIvd+z1CdePnEl+VITaeSBs9Ko7ZVvSIlzQLbSwqksXX3bAHpxej0Mg6mVKQiRVSw==} dependencies: '@firebase/util': 1.6.2 tslib: 2.5.0 dev: false - /@firebase/database-compat/0.2.2_@firebase+app-types@0.7.0: + /@firebase/database-compat@0.2.2(@firebase/app-types@0.7.0): resolution: {integrity: sha512-3wLHJ54WHMhrveCywCMbkspshFezN07PLOIsmqELM1+pmrg3bwMj9u/o3Equ0DwmESMnchp5sMxgzdBUOextJg==} dependencies: '@firebase/component': 0.5.16 - '@firebase/database': 0.13.2_@firebase+app-types@0.7.0 + '@firebase/database': 0.13.2(@firebase/app-types@0.7.0) '@firebase/database-types': 0.9.10 '@firebase/logger': 0.3.3 '@firebase/util': 1.6.2 @@ -3289,17 +3704,17 @@ packages: - '@firebase/app-types' dev: false - /@firebase/database-types/0.9.10: + /@firebase/database-types@0.9.10: resolution: {integrity: sha512-2ji6nXRRsY+7hgU6zRhUtK0RmSjVWM71taI7Flgaw+BnopCo/lDF5HSwxp8z7LtiHlvQqeRA3Ozqx5VhlAbiKg==} dependencies: '@firebase/app-types': 0.7.0 '@firebase/util': 1.6.2 dev: false - /@firebase/database/0.13.2_@firebase+app-types@0.7.0: + /@firebase/database@0.13.2(@firebase/app-types@0.7.0): resolution: {integrity: sha512-wKkBD4rq6PPv9gl1hNJNpl0R0bwJmXCJfDuvotjXmTcU7kV0AIaJ45GVhULkbSCApAAFC6QUJ91oasDUO1ZVxw==} dependencies: - '@firebase/auth-interop-types': 0.1.6_ee7bhenjigpuz3jknhp5542foa + '@firebase/auth-interop-types': 0.1.6(@firebase/app-types@0.7.0)(@firebase/util@1.6.2) '@firebase/component': 0.5.16 '@firebase/logger': 0.3.3 '@firebase/util': 1.6.2 @@ -3309,15 +3724,15 @@ packages: - '@firebase/app-types' dev: false - /@firebase/firestore-compat/0.1.20_2whj6v3knk7rswcmdbn5bdkgna: + /@firebase/firestore-compat@0.1.20(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27): resolution: {integrity: sha512-0+WAh+pjCi0t/DK5cefECiwQGiZbrAU2UenZ61Uly1w7L5ob932Qc61OQKk+Y2VD+IQ7YPcBpUM7X6JOSbgJ6g==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 - '@firebase/firestore': 3.4.11_@firebase+app@0.7.27 - '@firebase/firestore-types': 2.5.0_ee7bhenjigpuz3jknhp5542foa + '@firebase/firestore': 3.4.11(@firebase/app@0.7.27) + '@firebase/firestore-types': 2.5.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2) '@firebase/util': 1.6.2 tslib: 2.5.0 transitivePeerDependencies: @@ -3326,7 +3741,7 @@ packages: - encoding dev: false - /@firebase/firestore-types/2.5.0_ee7bhenjigpuz3jknhp5542foa: + /@firebase/firestore-types@2.5.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2): resolution: {integrity: sha512-I6c2m1zUhZ5SH0cWPmINabDyH5w0PPFHk2UHsjBpKdZllzJZ2TwTkXbDtpHUZNmnc/zAa0WNMNMvcvbb/xJLKA==} peerDependencies: '@firebase/app-types': 0.x @@ -3336,7 +3751,7 @@ packages: '@firebase/util': 1.6.2 dev: false - /@firebase/firestore/3.4.11_@firebase+app@0.7.27: + /@firebase/firestore@3.4.11(@firebase/app@0.7.27): resolution: {integrity: sha512-ZobzP2fQNiqT9Fh5x/8CmQVsWr3JJaM4l0xGHyaPc7vneRRC0Y0KcuKg3z3jBUXItXvlsIj7mGM4FucrxwhPzQ==} engines: {node: '>=10.10.0'} peerDependencies: @@ -3355,14 +3770,14 @@ packages: - encoding dev: false - /@firebase/functions-compat/0.2.3_2whj6v3knk7rswcmdbn5bdkgna: + /@firebase/functions-compat@0.2.3(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27): resolution: {integrity: sha512-we6a5a6HcCwLMXzITNWfvBxxIlCqcXCeUsomEb0Gyf1/ecVod8L3dcsWNTZB87OYjTSpVS+Jn+H+NpjOMvrlmA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 - '@firebase/functions': 0.8.3_m3w7qpgfrijausz7l34kldvbjq + '@firebase/functions': 0.8.3(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) '@firebase/functions-types': 0.5.0 '@firebase/util': 1.6.2 tslib: 2.5.0 @@ -3372,18 +3787,18 @@ packages: - encoding dev: false - /@firebase/functions-types/0.5.0: + /@firebase/functions-types@0.5.0: resolution: {integrity: sha512-qza0M5EwX+Ocrl1cYI14zoipUX4gI/Shwqv0C1nB864INAD42Dgv4v94BCyxGHBg2kzlWy8PNafdP7zPO8aJQA==} dev: false - /@firebase/functions/0.8.3_m3w7qpgfrijausz7l34kldvbjq: + /@firebase/functions@0.8.3(@firebase/app-types@0.7.0)(@firebase/app@0.7.27): resolution: {integrity: sha512-0mc59I97S61fvDiVhqj/k5GwSDM/mSWe+xgyxT1UWD3vocvZ5JOx0bhPwbpa7lStI6DWCiWhZrEQlp16Y7i1yg==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.27 '@firebase/app-check-interop-types': 0.1.0 - '@firebase/auth-interop-types': 0.1.6_ee7bhenjigpuz3jknhp5542foa + '@firebase/auth-interop-types': 0.1.6(@firebase/app-types@0.7.0)(@firebase/util@1.6.2) '@firebase/component': 0.5.16 '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.2 @@ -3394,7 +3809,7 @@ packages: - encoding dev: false - /@firebase/installations/0.5.11_@firebase+app@0.7.27: + /@firebase/installations@0.5.11(@firebase/app@0.7.27): resolution: {integrity: sha512-54pTWQXYHBNlwUwtHDitr/N4dFOBi/LYoBlpbyIrjlqdkXSk0WOVDMV15cMdfCyCZQgJVMW78c52ZrDZxwW05g==} peerDependencies: '@firebase/app': 0.x @@ -3406,45 +3821,45 @@ packages: tslib: 2.5.0 dev: false - /@firebase/logger/0.3.3: + /@firebase/logger@0.3.3: resolution: {integrity: sha512-POTJl07jOKTOevLXrTvJD/VZ0M6PnJXflbAh5J9VGkmtXPXNG6MdZ9fmRgqYhXKTaDId6AQenQ262uwgpdtO0Q==} dependencies: tslib: 2.5.0 dev: false - /@firebase/messaging-compat/0.1.15_ikt45rtbctnl5l4y6p3bca5464: + /@firebase/messaging-compat@0.1.15(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27): resolution: {integrity: sha512-f9xbp/V4onNgg7tTC9rY/9gb5F3S+1m1YMU39GHATXcoO4qVCN429VFbVSWQ9RI7f85HddPsULWX7Moq+MwzNw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 - '@firebase/messaging': 0.9.15_@firebase+app@0.7.27 + '@firebase/messaging': 0.9.15(@firebase/app@0.7.27) '@firebase/util': 1.6.2 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' dev: false - /@firebase/messaging-interop-types/0.1.0: + /@firebase/messaging-interop-types@0.1.0: resolution: {integrity: sha512-DbvUl/rXAZpQeKBnwz0NYY5OCqr2nFA0Bj28Fmr3NXGqR4PAkfTOHuQlVtLO1Nudo3q0HxAYLa68ZDAcuv2uKQ==} dev: false - /@firebase/messaging/0.9.15_@firebase+app@0.7.27: + /@firebase/messaging@0.9.15(@firebase/app@0.7.27): resolution: {integrity: sha512-UEMbjj3UdsHipdljrFMNyasYLPzEOLXRfaZdpV7StHuqa5r3M9jKRM16tcszNMWXVNuiXT4k0VPXXGZPtiYQDQ==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.27 '@firebase/component': 0.5.16 - '@firebase/installations': 0.5.11_@firebase+app@0.7.27 + '@firebase/installations': 0.5.11(@firebase/app@0.7.27) '@firebase/messaging-interop-types': 0.1.0 '@firebase/util': 1.6.2 idb: 7.0.1 tslib: 2.5.0 dev: false - /@firebase/performance-compat/0.1.11_ikt45rtbctnl5l4y6p3bca5464: + /@firebase/performance-compat@0.1.11(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27): resolution: {integrity: sha512-M1paA6KG4j5OGvgpvg25Y6x5/lUIpSJVL6fyq4af3YjFcLoSijqiBq/KTiFEt3vLJWiOmK2p9Apu3MHiffBi0A==} peerDependencies: '@firebase/app-compat': 0.x @@ -3452,7 +3867,7 @@ packages: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 '@firebase/logger': 0.3.3 - '@firebase/performance': 0.5.11_@firebase+app@0.7.27 + '@firebase/performance': 0.5.11(@firebase/app@0.7.27) '@firebase/performance-types': 0.1.0 '@firebase/util': 1.6.2 tslib: 2.5.0 @@ -3460,24 +3875,24 @@ packages: - '@firebase/app' dev: false - /@firebase/performance-types/0.1.0: + /@firebase/performance-types@0.1.0: resolution: {integrity: sha512-6p1HxrH0mpx+622Ql6fcxFxfkYSBpE3LSuwM7iTtYU2nw91Hj6THC8Bc8z4nboIq7WvgsT/kOTYVVZzCSlXl8w==} dev: false - /@firebase/performance/0.5.11_@firebase+app@0.7.27: + /@firebase/performance@0.5.11(@firebase/app@0.7.27): resolution: {integrity: sha512-neHlHi1bs0LkNCZgzSWBm+YBqkaKFkxj+JtD4E4EQTENdHsAAAL4JnSKPOP1c+4CQqDnRbYW9QMXPcDlL21pow==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.27 '@firebase/component': 0.5.16 - '@firebase/installations': 0.5.11_@firebase+app@0.7.27 + '@firebase/installations': 0.5.11(@firebase/app@0.7.27) '@firebase/logger': 0.3.3 '@firebase/util': 1.6.2 tslib: 2.5.0 dev: false - /@firebase/polyfill/0.3.36: + /@firebase/polyfill@0.3.36: resolution: {integrity: sha512-zMM9oSJgY6cT2jx3Ce9LYqb0eIpDE52meIzd/oe/y70F+v9u1LDqk5kUF5mf16zovGBWMNFmgzlsh6Wj0OsFtg==} dependencies: core-js: 3.6.5 @@ -3485,7 +3900,7 @@ packages: whatwg-fetch: 2.0.4 dev: false - /@firebase/remote-config-compat/0.1.11_ikt45rtbctnl5l4y6p3bca5464: + /@firebase/remote-config-compat@0.1.11(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27): resolution: {integrity: sha512-75mjt2M+MXa/j2J9wuRVrUFDekFoKkK5/ogBPxckvjzSXGDDwbGmrrb0MwG6BdUSxSUaHrAeUYhEQ2vwNfa1Gw==} peerDependencies: '@firebase/app-compat': 0.x @@ -3493,7 +3908,7 @@ packages: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 '@firebase/logger': 0.3.3 - '@firebase/remote-config': 0.3.10_@firebase+app@0.7.27 + '@firebase/remote-config': 0.3.10(@firebase/app@0.7.27) '@firebase/remote-config-types': 0.2.0 '@firebase/util': 1.6.2 tslib: 2.5.0 @@ -3501,32 +3916,32 @@ packages: - '@firebase/app' dev: false - /@firebase/remote-config-types/0.2.0: + /@firebase/remote-config-types@0.2.0: resolution: {integrity: sha512-hqK5sCPeZvcHQ1D6VjJZdW6EexLTXNMJfPdTwbD8NrXUw6UjWC4KWhLK/TSlL0QPsQtcKRkaaoP+9QCgKfMFPw==} dev: false - /@firebase/remote-config/0.3.10_@firebase+app@0.7.27: + /@firebase/remote-config@0.3.10(@firebase/app@0.7.27): resolution: {integrity: sha512-n55NDxX9kt6QoDH0z3Ryjbjx/S6xNobfjK/hdMN/3fNZh0WSuAZKMWUiw/59cnbZkFxQBncOGDN5Cc/bdp3bdg==} peerDependencies: '@firebase/app': 0.x dependencies: '@firebase/app': 0.7.27 '@firebase/component': 0.5.16 - '@firebase/installations': 0.5.11_@firebase+app@0.7.27 + '@firebase/installations': 0.5.11(@firebase/app@0.7.27) '@firebase/logger': 0.3.3 '@firebase/util': 1.6.2 tslib: 2.5.0 dev: false - /@firebase/storage-compat/0.1.16_2whj6v3knk7rswcmdbn5bdkgna: + /@firebase/storage-compat@0.1.16(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27): resolution: {integrity: sha512-YSK0QHPCyyALBiJHvtlejrmtrQKst7aJiHyEm1VkcyLdm5RMcZ6JkdObOeACxa9/qwATYQLNlwy/C+//RuzyrA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: '@firebase/app-compat': 0.1.28 '@firebase/component': 0.5.16 - '@firebase/storage': 0.9.8_@firebase+app@0.7.27 - '@firebase/storage-types': 0.6.0_ee7bhenjigpuz3jknhp5542foa + '@firebase/storage': 0.9.8(@firebase/app@0.7.27) + '@firebase/storage-types': 0.6.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2) '@firebase/util': 1.6.2 tslib: 2.5.0 transitivePeerDependencies: @@ -3535,7 +3950,7 @@ packages: - encoding dev: false - /@firebase/storage-types/0.6.0_ee7bhenjigpuz3jknhp5542foa: + /@firebase/storage-types@0.6.0(@firebase/app-types@0.7.0)(@firebase/util@1.6.2): resolution: {integrity: sha512-1LpWhcCb1ftpkP/akhzjzeFxgVefs6eMD2QeKiJJUGH1qOiows2w5o0sKCUSQrvrRQS1lz3SFGvNR1Ck/gqxeA==} peerDependencies: '@firebase/app-types': 0.x @@ -3545,7 +3960,7 @@ packages: '@firebase/util': 1.6.2 dev: false - /@firebase/storage/0.9.8_@firebase+app@0.7.27: + /@firebase/storage@0.9.8(@firebase/app@0.7.27): resolution: {integrity: sha512-tfRDVjDjTDIBHm7CTFcboZ7UC+GUKkBIhmoHt2tTVyZfEDKtE4ZPnHy7i6RSeY624wM+/IGWn5o+1CCf3uEEGQ==} peerDependencies: '@firebase/app': 0.x @@ -3559,54 +3974,54 @@ packages: - encoding dev: false - /@firebase/util/1.6.2: + /@firebase/util@1.6.2: resolution: {integrity: sha512-VYDqEf/+mS7n0nPj6qJDJYFtKIEfOaTtQeNDsd3x+xp8HWvrbygWOexzeGicLP1dvEzrKr3eQGcJmmmYN3TIsA==} dependencies: tslib: 2.5.0 dev: false - /@firebase/webchannel-wrapper/0.6.2: + /@firebase/webchannel-wrapper@0.6.2: resolution: {integrity: sha512-zThUKcqIU6utWzM93uEvhlh8qj8A5LMPFJPvk/ODb+8GSSif19xM2Lw1M2ijyBy8+6skSkQBbavPzOU5Oh/8tQ==} dev: false - /@graphql-codegen/add/3.2.0_graphql@15.8.0: + /@graphql-codegen/add@3.2.0(graphql@15.8.0): resolution: {integrity: sha512-8hyr5XvTDGnpiT4nH2yH8PP4SWtUEIUdkFaZbkpkFkU0Ud9dplvSviOCdxdArffZ1FHy0XYLTMa2it+UJOtszg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.4.0 dev: true - /@graphql-codegen/add/4.0.1_graphql@16.6.0: + /@graphql-codegen/add@4.0.1(graphql@16.6.0): resolution: {integrity: sha512-A7k+9eRfrKyyNfhWEN/0eKz09R5cp4XXxUuNLQAVm/aohmVI2xdMV4lM02rTlM6Pyou3cU/v0iZnhgo6IRpqeg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: true - /@graphql-codegen/cli/2.8.0_ebknmq4ki2y6h7wwya2jsn57ky: + /@graphql-codegen/cli@2.8.0(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-qpLnfWLd7M6ISlXN5c9WPwUE9iZkzS6996hwlvKcYpyGWj10ZtDcEQpH+NFoNjNP3Bu+QOSt6gSnpnCnajwadA==} hasBin: true 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 dependencies: - '@graphql-codegen/core': 2.6.0_graphql@15.8.0 - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-tools/apollo-engine-loader': 7.3.1_graphql@15.8.0 - '@graphql-tools/code-file-loader': 7.3.0_graphql@15.8.0 - '@graphql-tools/git-loader': 7.2.0_graphql@15.8.0 - '@graphql-tools/github-loader': 7.3.1_graphql@15.8.0 - '@graphql-tools/graphql-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/load': 7.7.0_graphql@15.8.0 - '@graphql-tools/prisma-loader': 7.2.2_graphql@15.8.0 - '@graphql-tools/url-loader': 7.12.1_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-codegen/core': 2.6.0(graphql@15.8.0) + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-tools/apollo-engine-loader': 7.3.1(graphql@15.8.0) + '@graphql-tools/code-file-loader': 7.3.0(graphql@15.8.0) + '@graphql-tools/git-loader': 7.2.0(graphql@15.8.0) + '@graphql-tools/github-loader': 7.3.1(graphql@15.8.0) + '@graphql-tools/graphql-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/json-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/load': 7.7.0(graphql@15.8.0) + '@graphql-tools/prisma-loader': 7.2.2(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/url-loader': 7.12.1(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 @@ -3615,7 +4030,7 @@ packages: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 15.8.0 - graphql-config: 4.3.1_ebknmq4ki2y6h7wwya2jsn57ky + graphql-config: 4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) inquirer: 8.2.4 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3636,24 +4051,24 @@ packages: - utf-8-validate dev: true - /@graphql-codegen/cli/2.8.0_h5eoywvcjsa4emif44kddonyyu: + /@graphql-codegen/cli@2.8.0(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.9.3): resolution: {integrity: sha512-qpLnfWLd7M6ISlXN5c9WPwUE9iZkzS6996hwlvKcYpyGWj10ZtDcEQpH+NFoNjNP3Bu+QOSt6gSnpnCnajwadA==} hasBin: true 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 dependencies: - '@graphql-codegen/core': 2.6.0_graphql@15.8.0 - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-tools/apollo-engine-loader': 7.3.1_graphql@15.8.0 - '@graphql-tools/code-file-loader': 7.3.0_graphql@15.8.0 - '@graphql-tools/git-loader': 7.2.0_graphql@15.8.0 - '@graphql-tools/github-loader': 7.3.1_graphql@15.8.0 - '@graphql-tools/graphql-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/load': 7.7.0_graphql@15.8.0 - '@graphql-tools/prisma-loader': 7.2.2_graphql@15.8.0 - '@graphql-tools/url-loader': 7.12.1_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-codegen/core': 2.6.0(graphql@15.8.0) + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-tools/apollo-engine-loader': 7.3.1(graphql@15.8.0) + '@graphql-tools/code-file-loader': 7.3.0(graphql@15.8.0) + '@graphql-tools/git-loader': 7.2.0(graphql@15.8.0) + '@graphql-tools/github-loader': 7.3.1(graphql@15.8.0) + '@graphql-tools/graphql-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/json-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/load': 7.7.0(graphql@15.8.0) + '@graphql-tools/prisma-loader': 7.2.2(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/url-loader': 7.12.1(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 @@ -3662,7 +4077,7 @@ packages: debounce: 1.2.1 detect-indent: 6.1.0 graphql: 15.8.0 - graphql-config: 4.3.1_h5eoywvcjsa4emif44kddonyyu + graphql-config: 4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.9.3) inquirer: 8.2.4 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3683,7 +4098,7 @@ packages: - utf-8-validate dev: true - /@graphql-codegen/cli/3.0.0_rf2sx74yjwgv4c7f6t6izlk5dy: + /@graphql-codegen/cli@3.0.0(@babel/core@7.18.6)(@types/node@18.11.10)(graphql@16.6.0)(typescript@4.9.3): resolution: {integrity: sha512-16nuFabHCfPQ/d+v52OvR1ueL8eiJvS/nRuvuEV8d9T1fkborHKRw4lhyKVebu9izFBs6G0CvVCLhgVzQwHSLw==} hasBin: true peerDependencies: @@ -3692,27 +4107,27 @@ packages: '@babel/generator': 7.21.1 '@babel/template': 7.20.7 '@babel/types': 7.20.7 - '@graphql-codegen/core': 3.1.0_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-tools/apollo-engine-loader': 7.3.26_graphql@16.6.0 - '@graphql-tools/code-file-loader': 7.3.21_graphql@16.6.0 - '@graphql-tools/git-loader': 7.2.20_graphql@16.6.0 - '@graphql-tools/github-loader': 7.3.27_graphql@16.6.0 - '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 - '@graphql-tools/load': 7.8.12_graphql@16.6.0 - '@graphql-tools/prisma-loader': 7.2.64_graphql@16.6.0 - '@graphql-tools/url-loader': 7.17.13_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.6.9 + '@graphql-codegen/core': 3.1.0(graphql@16.6.0) + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-tools/apollo-engine-loader': 7.3.26(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/code-file-loader': 7.3.21(@babel/core@7.18.6)(graphql@16.6.0) + '@graphql-tools/git-loader': 7.2.20(@babel/core@7.18.6)(graphql@16.6.0) + '@graphql-tools/github-loader': 7.3.27(@babel/core@7.18.6)(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/graphql-file-loader': 7.5.16(graphql@16.6.0) + '@graphql-tools/json-file-loader': 7.4.17(graphql@16.6.0) + '@graphql-tools/load': 7.8.12(graphql@16.6.0) + '@graphql-tools/prisma-loader': 7.2.64(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/url-loader': 7.17.13(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) + '@whatwg-node/fetch': 0.6.9(@types/node@18.11.10) chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 4.3.0_qilgflazl3ul6lmrg6ergratta + cosmiconfig-typescript-loader: 4.3.0(@types/node@18.11.10)(cosmiconfig@7.0.1)(ts-node@10.9.1)(typescript@4.9.3) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.6.0 - graphql-config: 4.4.1_ul246jct24iapssnbw5f5pr2vu + graphql-config: 4.4.1(@types/node@18.11.10)(cosmiconfig-typescript-loader@4.3.0)(graphql@16.6.0) inquirer: 8.2.4 is-glob: 4.0.3 json-to-pretty-yaml: 1.2.2 @@ -3721,7 +4136,7 @@ packages: shell-quote: 1.7.3 string-env-interpolation: 1.0.1 ts-log: 2.2.4 - ts-node: 10.9.1_typescript@4.9.3 + ts-node: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) tslib: 2.4.1 yaml: 1.10.2 yargs: 17.5.1 @@ -3739,23 +4154,23 @@ packages: - utf-8-validate dev: true - /@graphql-codegen/client-preset/2.1.0_graphql@16.6.0: + /@graphql-codegen/client-preset@2.1.0(graphql@16.6.0): resolution: {integrity: sha512-mt5CyPwZmOUP+ifC56xMjeEyfywu0P6HSWbhWPn1Jbv7n3TMILXMDfgOAufnOmrU1Ian8wu72I9A5IMRGqmW1w==} 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 dependencies: '@babel/helper-plugin-utils': 7.20.2 '@babel/template': 7.20.7 - '@graphql-codegen/add': 4.0.1_graphql@16.6.0 - '@graphql-codegen/gql-tag-operations': 2.0.1_graphql@16.6.0 - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-codegen/typed-document-node': 3.0.1_graphql@16.6.0 - '@graphql-codegen/typescript': 3.0.1_graphql@16.6.0 - '@graphql-codegen/typescript-operations': 3.0.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0 - '@graphql-tools/documents': 0.1.0_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-codegen/add': 4.0.1(graphql@16.6.0) + '@graphql-codegen/gql-tag-operations': 2.0.1(graphql@16.6.0) + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-codegen/typed-document-node': 3.0.1(graphql@16.6.0) + '@graphql-codegen/typescript': 3.0.1(graphql@16.6.0) + '@graphql-codegen/typescript-operations': 3.0.1(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0) + '@graphql-tools/documents': 0.1.0(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) + '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -3763,38 +4178,38 @@ packages: - supports-color dev: true - /@graphql-codegen/core/2.6.0_graphql@15.8.0: + /@graphql-codegen/core@2.6.0(graphql@15.8.0): resolution: {integrity: sha512-7uZGnLCMR/pnh/5CsyI4y5bBvRndNHFs+AWpMUUjDBcjMRrMaavu37VyyYDz4/ob0BnQJt8RTBN9eArS9PLYAQ==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-tools/schema': 8.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-tools/schema': 8.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.4.1 dev: true - /@graphql-codegen/core/3.1.0_graphql@16.6.0: + /@graphql-codegen/core@3.1.0(graphql@16.6.0): resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-tools/schema': 9.0.16(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: true - /@graphql-codegen/gql-tag-operations/2.0.1_graphql@16.6.0: + /@graphql-codegen/gql-tag-operations@2.0.1(graphql@16.6.0): resolution: {integrity: sha512-BGJRfRYJo566x3nPoEwiU0KkhbBAB2i4UsUg2wAlzC+z8uoL1JtCI2besa7RoWxjvEpmjrn23O5CnUzD933JLg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.5.0 @@ -3803,13 +4218,13 @@ packages: - supports-color dev: true - /@graphql-codegen/introspection/3.0.0_graphql@16.6.0: + /@graphql-codegen/introspection@3.0.0(graphql@16.6.0): resolution: {integrity: sha512-PwHPcCg3svkLhcBd88KDHVpj0FuWMPfbx8RxTnLIH6jFyI5QkSSctQavGLO0o4IYiiQjgftEcfbNRtadvEmxtg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.4.1 transitivePeerDependencies: @@ -3817,12 +4232,12 @@ packages: - supports-color dev: true - /@graphql-codegen/plugin-helpers/2.5.0_graphql@15.8.0: + /@graphql-codegen/plugin-helpers@2.5.0(graphql@15.8.0): resolution: {integrity: sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==} 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 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 15.8.0 @@ -3831,12 +4246,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers/2.5.0_graphql@16.6.0: + /@graphql-codegen/plugin-helpers@2.5.0(graphql@16.6.0): resolution: {integrity: sha512-0jM5/14EdM4yow5v8OGOnUmRqfA1gaWkh+J5berqQUpcFYfSQXD6+Idnkiju/jjIypEN7UvbPkC7BgryWVxexA==} 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 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@16.6.0 + '@graphql-tools/utils': 8.8.0(graphql@16.6.0) change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 16.6.0 @@ -3845,12 +4260,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers/2.7.2_graphql@16.6.0: + /@graphql-codegen/plugin-helpers@2.7.2(graphql@16.6.0): resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} 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 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@16.6.0 + '@graphql-tools/utils': 8.8.0(graphql@16.6.0) change-case-all: 1.0.14 common-tags: 1.8.2 graphql: 16.6.0 @@ -3859,12 +4274,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers/4.0.0_graphql@16.6.0: + /@graphql-codegen/plugin-helpers@4.0.0(graphql@16.6.0): resolution: {integrity: sha512-vgNGTanT36hC4RAC/LAThMEjDvnu3WCyx6MtKZcPUtfCWFxbUAr88+OarGl1LAEiOef0agIREC7tIBXCqjKkJA==} 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 dependencies: - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.6.0 @@ -3873,12 +4288,12 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/plugin-helpers/4.1.0_graphql@16.6.0: + /@graphql-codegen/plugin-helpers@4.1.0(graphql@16.6.0): resolution: {integrity: sha512-xvSHJb9OGb5CODIls0AI1rCenLz+FuiaNPCsfHMCNsLDjOZK2u0jAQ9zUBdc/Wb+21YXZujBCc0Vm1QX+Zz0nw==} 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 dependencies: - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.6.0 @@ -3887,35 +4302,35 @@ packages: tslib: 2.5.0 dev: true - /@graphql-codegen/schema-ast/2.5.0_graphql@15.8.0: + /@graphql-codegen/schema-ast@2.5.0(graphql@15.8.0): resolution: {integrity: sha512-nlF4Yc7h90nmogG2E11TeFJ3/hCkb4SDMSdbJX68b1mhvVEji/kq3zWYKAQ+lAzjZ7HF94Eylm3MrZAjjpCKIA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.4.1 dev: true - /@graphql-codegen/schema-ast/3.0.1_graphql@16.6.0: + /@graphql-codegen/schema-ast@3.0.1(graphql@16.6.0): resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: true - /@graphql-codegen/typed-document-node/2.3.1_graphql@15.8.0: + /@graphql-codegen/typed-document-node@2.3.1(graphql@15.8.0): resolution: {integrity: sha512-8EnxV1lYAuWmoPRdc8iSI1odEpiNwaR4kRxgCYuNaCjQsCrGRnF46Vb1rCWG+6veODA3BmOjp0g0sCLM5b6EAA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.11.1(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 15.8.0 @@ -3925,13 +4340,13 @@ packages: - supports-color dev: true - /@graphql-codegen/typed-document-node/2.3.1_graphql@16.6.0: + /@graphql-codegen/typed-document-node@2.3.1(graphql@16.6.0): resolution: {integrity: sha512-8EnxV1lYAuWmoPRdc8iSI1odEpiNwaR4kRxgCYuNaCjQsCrGRnF46Vb1rCWG+6veODA3BmOjp0g0sCLM5b6EAA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 2.11.1(graphql@16.6.0) auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 16.6.0 @@ -3941,13 +4356,13 @@ packages: - supports-color dev: true - /@graphql-codegen/typed-document-node/3.0.1_graphql@16.6.0: + /@graphql-codegen/typed-document-node@3.0.1(graphql@16.6.0): resolution: {integrity: sha512-2plPBbAJZtR72BU6n07N3nIJYlwnCWbFNoe++MQ33S2ML4KwpCiflGEJnTpiwOEhCklQLWg1FEUdEOYS2iluqw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.6.0 @@ -3957,13 +4372,13 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-document-nodes/3.0.0_graphql@16.6.0: + /@graphql-codegen/typescript-document-nodes@3.0.0(graphql@16.6.0): resolution: {integrity: sha512-IxBqVcFw+8wRqbs4Jd/WkoCT0PnFst1Qq0JsDEGFoqNnc5Bjs+BS5g3OYvSJTP04QUi6G8iTKr91FgEUubfI7Q==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.1 @@ -3972,14 +4387,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-operations/2.5.1_graphql@15.8.0: + /@graphql-codegen/typescript-operations@2.5.1(graphql@15.8.0): resolution: {integrity: sha512-lGv+sPDXGcp/vDdIh7SoQjz8BRCZhLats4Hbqnf6gB7UtIasMvGuFDQyrKb3XAkQQYWqx/xtmEo0rBN8syV+Wg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-codegen/typescript': 2.7.1_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-codegen/typescript': 2.7.1(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.11.1(graphql@15.8.0) auto-bind: 4.0.0 graphql: 15.8.0 tslib: 2.4.0 @@ -3988,14 +4403,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-operations/3.0.0_graphql@16.6.0: + /@graphql-codegen/typescript-operations@3.0.0(graphql@16.6.0): resolution: {integrity: sha512-t+Lk+lxkUFDh6F0t8CErowOccP3bZwxhl66qmEeBcOrC7jQrSCnRZoFvOXhFKFBJe/y4DIJiizgSr34AqjiJIQ==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-codegen/typescript': 3.0.0_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-codegen/typescript': 3.0.0(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.1 @@ -4004,14 +4419,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-operations/3.0.1_graphql@16.6.0: + /@graphql-codegen/typescript-operations@3.0.1(graphql@16.6.0): resolution: {integrity: sha512-Td1d483cQr7XJj/zXrbqVUEi2QK56DT7EToFheZrBFArIQCUEGK+Xgw6GhEmZaTwWYODxavzy1jmTTJC2fEuTw==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-codegen/typescript': 3.0.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-codegen/typescript': 3.0.1(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.5.0 @@ -4020,52 +4435,34 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-urql-graphcache/2.3.1_52tgh2q4afbldbawprm4p57eiu: + /@graphql-codegen/typescript-urql-graphcache@2.3.1(@urql/exchange-graphcache@4.4.3)(graphql-tag@2.12.6)(graphql@15.8.0): resolution: {integrity: sha512-Q7bHSRqZ3Lg4C1AlCRRgVQL4jQTSnKbyO1E7L92126fTz8vfCl9x1UKCu18/1qCP71KkqtC/ipAhyNAlq5/soQ==} peerDependencies: '@urql/exchange-graphcache': ^4.1.1 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 graphql-tag: ^2.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@15.8.0 - '@urql/exchange-graphcache': 4.4.3_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.11.1(graphql@15.8.0) + '@urql/exchange-graphcache': 4.4.3(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.14 graphql: 15.8.0 - graphql-tag: 2.12.6_graphql@15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) tslib: 2.4.0 transitivePeerDependencies: - encoding - supports-color dev: true - /@graphql-codegen/typescript-urql-graphcache/2.3.1_graphql@15.8.0: - resolution: {integrity: sha512-Q7bHSRqZ3Lg4C1AlCRRgVQL4jQTSnKbyO1E7L92126fTz8vfCl9x1UKCu18/1qCP71KkqtC/ipAhyNAlq5/soQ==} - peerDependencies: - '@urql/exchange-graphcache': ^4.1.1 - 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 - graphql-tag: ^2.0.0 - dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@15.8.0 - auto-bind: 4.0.0 - change-case-all: 1.0.14 - graphql: 15.8.0 - tslib: 2.4.0 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - - /@graphql-codegen/typescript/2.7.1_graphql@15.8.0: + /@graphql-codegen/typescript@2.7.1(graphql@15.8.0): resolution: {integrity: sha512-qF4SBMgBnLcegba2s9+zC3NwgRhU0Kv+eS8kl9G5ldEHx9Bpu2tft+lk6fjqqhExDzJT+MEOU3Ecog3BzL2R1g==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-codegen/schema-ast': 2.5.0_graphql@15.8.0 - '@graphql-codegen/visitor-plugin-common': 2.11.1_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-codegen/schema-ast': 2.5.0(graphql@15.8.0) + '@graphql-codegen/visitor-plugin-common': 2.11.1(graphql@15.8.0) auto-bind: 4.0.0 graphql: 15.8.0 tslib: 2.4.0 @@ -4074,14 +4471,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript/3.0.0_graphql@16.6.0: + /@graphql-codegen/typescript@3.0.0(graphql@16.6.0): resolution: {integrity: sha512-FQWyuIUy1y+fxb9+EZfvdBHBQpYExlIBHV5sg2WGNCsyVyCqBTl0mO8icyOtsQPVg6YFMFe8JJO69vQbwHma5w==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.0(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.4.1 @@ -4090,14 +4487,14 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript/3.0.1_graphql@16.6.0: + /@graphql-codegen/typescript@3.0.1(graphql@16.6.0): resolution: {integrity: sha512-HvozJg7eHqywmYvXa7+nmjw+v3+f8ilFv9VbRvmjhj/zBw3VKGT2n/85ZhVyuWjY2KrDLzl6BqeXttWsW5Wo4w==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-codegen/schema-ast': 3.0.1_graphql@16.6.0 - '@graphql-codegen/visitor-plugin-common': 3.0.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0) + '@graphql-codegen/visitor-plugin-common': 3.0.1(graphql@16.6.0) auto-bind: 4.0.0 graphql: 16.6.0 tslib: 2.5.0 @@ -4106,42 +4503,42 @@ packages: - supports-color dev: true - /@graphql-codegen/urql-introspection/2.2.0_graphql@15.8.0: + /@graphql-codegen/urql-introspection@2.2.0(graphql@15.8.0): resolution: {integrity: sha512-QinRBTfH2vSjoL3Lv2a8p+SjgZJFHIdkbncpvQw8i5+KyxMKIP8OGk8m+mZ/nYz8+i+2ZIf42wROBhKkG50OTA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@urql/introspection': 0.3.3_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@urql/introspection': 0.3.3(graphql@15.8.0) graphql: 15.8.0 tslib: 2.4.0 dev: true - /@graphql-codegen/urql-introspection/2.2.1_graphql@16.6.0: + /@graphql-codegen/urql-introspection@2.2.1(graphql@16.6.0): resolution: {integrity: sha512-/KjHSf4dQNoYZZ+G10b3lbw304ik9xHzRf/syNvoYehmwdYE5J7RnO1v1Cz78LDm2NEdsFas6vJHi0sJd/pOHg==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.7.2_graphql@16.6.0 - '@urql/introspection': 0.3.3_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 2.7.2(graphql@16.6.0) + '@urql/introspection': 0.3.3(graphql@16.6.0) graphql: 16.6.0 tslib: 2.4.1 dev: true - /@graphql-codegen/visitor-plugin-common/2.11.1_graphql@15.8.0: + /@graphql-codegen/visitor-plugin-common@2.11.1(graphql@15.8.0): resolution: {integrity: sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@15.8.0 - '@graphql-tools/optimize': 1.3.0_graphql@15.8.0 - '@graphql-tools/relay-operation-optimizer': 6.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@15.8.0) + '@graphql-tools/optimize': 1.3.0(graphql@15.8.0) + '@graphql-tools/relay-operation-optimizer': 6.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 graphql: 15.8.0 - graphql-tag: 2.12.6_graphql@15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) parse-filepath: 1.0.2 tslib: 2.4.1 transitivePeerDependencies: @@ -4149,20 +4546,20 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common/2.11.1_graphql@16.6.0: + /@graphql-codegen/visitor-plugin-common@2.11.1(graphql@16.6.0): resolution: {integrity: sha512-AlrtGWKn2o89SPna75ATEHYAu95MUMucgBqLgcRvK9n/PHhVAbkDrNCH5pL03fE0HLOup3GpjX8DcnFBMU46IA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 2.5.0_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.0_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.0_graphql@16.6.0 - '@graphql-tools/utils': 8.8.0_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 2.5.0(graphql@16.6.0) + '@graphql-tools/optimize': 1.3.0(graphql@16.6.0) + '@graphql-tools/relay-operation-optimizer': 6.5.0(graphql@16.6.0) + '@graphql-tools/utils': 8.8.0(graphql@16.6.0) auto-bind: 4.0.0 change-case-all: 1.0.14 dependency-graph: 0.11.0 graphql: 16.6.0 - graphql-tag: 2.12.6_graphql@16.6.0 + graphql-tag: 2.12.6(graphql@16.6.0) parse-filepath: 1.0.2 tslib: 2.4.1 transitivePeerDependencies: @@ -4170,20 +4567,20 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common/3.0.0_graphql@16.6.0: + /@graphql-codegen/visitor-plugin-common@3.0.0(graphql@16.6.0): resolution: {integrity: sha512-ZoNlCmmkGClB137SpJT9og/nkihLN7Z4Ynl9Ir3OlbDuI20dbpyXsclpr9QGLcxEcfQeVfhGw9CooW7wZJJ8LA==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.0.0_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.0_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.0_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.0.0(graphql@16.6.0) + '@graphql-tools/optimize': 1.3.0(graphql@16.6.0) + '@graphql-tools/relay-operation-optimizer': 6.5.0(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 graphql: 16.6.0 - graphql-tag: 2.12.6_graphql@16.6.0 + graphql-tag: 2.12.6(graphql@16.6.0) parse-filepath: 1.0.2 tslib: 2.4.1 transitivePeerDependencies: @@ -4191,20 +4588,20 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common/3.0.1_graphql@16.6.0: + /@graphql-codegen/visitor-plugin-common@3.0.1(graphql@16.6.0): resolution: {integrity: sha512-Qek+Ywy094Km7Vc1TzKBN9ICvtYwPdqZUliPO77urMSveP+2+G2O9Tjx546dW4A1O6rhEfexbenc2DqTAe7iLQ==} 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 dependencies: - '@graphql-codegen/plugin-helpers': 4.1.0_graphql@16.6.0 - '@graphql-tools/optimize': 1.3.0_graphql@16.6.0 - '@graphql-tools/relay-operation-optimizer': 6.5.0_graphql@16.6.0 - '@graphql-tools/utils': 9.1.1_graphql@16.6.0 + '@graphql-codegen/plugin-helpers': 4.1.0(graphql@16.6.0) + '@graphql-tools/optimize': 1.3.0(graphql@16.6.0) + '@graphql-tools/relay-operation-optimizer': 6.5.0(graphql@16.6.0) + '@graphql-tools/utils': 9.1.1(graphql@16.6.0) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 graphql: 16.6.0 - graphql-tag: 2.12.6_graphql@16.6.0 + graphql-tag: 2.12.6(graphql@16.6.0) parse-filepath: 1.0.2 tslib: 2.5.0 transitivePeerDependencies: @@ -4212,12 +4609,12 @@ packages: - supports-color dev: true - /@graphql-tools/apollo-engine-loader/7.3.1_graphql@15.8.0: + /@graphql-tools/apollo-engine-loader@7.3.1(graphql@15.8.0): resolution: {integrity: sha512-PJhX4gQeoPtR2BJFYHYVLdLYkqQHB94r9IC64GamFV+kxR+jzQYZJdDTgnFZxvpvGJ7rEgYKNjcfWS+r+CQisQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) cross-undici-fetch: 0.4.11 graphql: 15.8.0 sync-fetch: 0.4.1 @@ -4226,14 +4623,14 @@ packages: - encoding dev: true - /@graphql-tools/apollo-engine-loader/7.3.26_graphql@16.6.0: + /@graphql-tools/apollo-engine-loader@7.3.26(@types/node@18.11.10)(graphql@16.6.0): resolution: {integrity: sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.8.1 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) + '@whatwg-node/fetch': 0.8.1(@types/node@18.11.10) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -4241,36 +4638,36 @@ packages: - encoding dev: true - /@graphql-tools/batch-execute/8.5.0_graphql@15.8.0: + /@graphql-tools/batch-execute@8.5.0(graphql@15.8.0): resolution: {integrity: sha512-S9/76X4uYIbVlJyRzXhCBbTJvVD0VvaWNqGiKgkITxlq4aBsTOHVuE84OSi3E1QKP3PTiJYrgMIn220iFOkyQw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) dataloader: 2.1.0 graphql: 15.8.0 tslib: 2.5.0 value-or-promise: 1.0.11 - /@graphql-tools/batch-execute/8.5.18_graphql@16.6.0: + /@graphql-tools/batch-execute@8.5.18(graphql@16.6.0): resolution: {integrity: sha512-mNv5bpZMLLwhkmPA6+RP81A6u3KF4CSKLf3VX9hbomOkQR4db8pNs8BOvpZU54wKsUzMzdlws/2g/Dabyb2Vsg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 graphql: 16.6.0 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/code-file-loader/7.3.0_graphql@15.8.0: + /@graphql-tools/code-file-loader@7.3.0(graphql@15.8.0): resolution: {integrity: sha512-mzevVv5JYyyRIbE6R0mxIniCAZWUGdoNYX97HdVgqChLOl2XRf9I8MarVPewHLmjLTZuWrdQx4ta4sPTLk4tUQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) globby: 11.1.0 graphql: 15.8.0 tslib: 2.5.0 @@ -4279,13 +4676,13 @@ packages: - supports-color dev: true - /@graphql-tools/code-file-loader/7.3.21_graphql@16.6.0: + /@graphql-tools/code-file-loader@7.3.21(@babel/core@7.18.6)(graphql@16.6.0): resolution: {integrity: sha512-dj+OLnz1b8SYkXcuiy0CUQ25DWnOEyandDlOcdBqU3WVwh5EEVbn0oXUYm90fDlq2/uut00OrtC5Wpyhi3tAvA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.5.0(@babel/core@7.18.6)(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) globby: 11.1.0 graphql: 16.6.0 tslib: 2.5.0 @@ -4295,35 +4692,35 @@ packages: - supports-color dev: true - /@graphql-tools/delegate/8.8.0_graphql@15.8.0: + /@graphql-tools/delegate@8.8.0(graphql@15.8.0): resolution: {integrity: sha512-dbhfOI8rQXPcowXrbwHLOBY9oGi7qxtlrXF4RuRXmjqGTs2AgogdOE3Ep1+6wFD7qYTuFmHXZ8Cl0PmhoZUgrg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 8.5.0_graphql@15.8.0 - '@graphql-tools/schema': 8.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/batch-execute': 8.5.0(graphql@15.8.0) + '@graphql-tools/schema': 8.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) dataloader: 2.1.0 graphql: 15.8.0 tslib: 2.4.1 value-or-promise: 1.0.11 - /@graphql-tools/delegate/9.0.28_graphql@16.6.0: + /@graphql-tools/delegate@9.0.28(graphql@16.6.0): resolution: {integrity: sha512-8j23JCs2mgXqnp+5K0v4J3QBQU/5sXd9miaLvMfRf/6963DznOXTECyS9Gcvj1VEeR5CXIw6+aX/BvRDKDdN1g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/batch-execute': 8.5.18_graphql@16.6.0 - '@graphql-tools/executor': 0.0.15_graphql@16.6.0 - '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/batch-execute': 8.5.18(graphql@16.6.0) + '@graphql-tools/executor': 0.0.15(graphql@16.6.0) + '@graphql-tools/schema': 9.0.16(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dataloader: 2.2.2 graphql: 16.6.0 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/documents/0.1.0_graphql@16.6.0: + /@graphql-tools/documents@0.1.0(graphql@16.6.0): resolution: {integrity: sha512-1WQeovHv5S1M3xMzQxbSrG3yl6QOnsq2JUBnlg5/0aMM5R4GNMx6Ms+ROByez/dnuA81kstRuSK+2qpe+GaRIw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4333,17 +4730,17 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/executor-graphql-ws/0.0.11_graphql@16.6.0: + /@graphql-tools/executor-graphql-ws@0.0.11(graphql@16.6.0): resolution: {integrity: sha512-muRj6j897ks2iKqe3HchWFFzd+jFInSRuLPvHJ7e4WPrejFvaZx3BQ9gndfJvVkfYUZIFm13stCGXaJJTbVM0Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 '@types/ws': 8.5.3 graphql: 16.6.0 - graphql-ws: 5.11.3_graphql@16.6.0 - isomorphic-ws: 5.0.0_ws@8.12.1 + graphql-ws: 5.11.3(graphql@16.6.0) + isomorphic-ws: 5.0.0(ws@8.12.1) tslib: 2.5.0 ws: 8.12.1 transitivePeerDependencies: @@ -4351,33 +4748,33 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-http/0.1.9_graphql@16.6.0: + /@graphql-tools/executor-http@0.1.9(@types/node@18.11.10)(graphql@16.6.0): resolution: {integrity: sha512-tNzMt5qc1ptlHKfpSv9wVBVKCZ7gks6Yb/JcYJluxZIT4qRV+TtOFjpptfBU63usgrGVOVcGjzWc/mt7KhmmpQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.8.1 + '@whatwg-node/fetch': 0.8.1(@types/node@18.11.10) dset: 3.1.2 extract-files: 11.0.0 graphql: 16.6.0 - meros: 1.2.1 + meros: 1.2.1(@types/node@18.11.10) tslib: 2.5.0 value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' dev: true - /@graphql-tools/executor-legacy-ws/0.0.9_graphql@16.6.0: + /@graphql-tools/executor-legacy-ws@0.0.9(graphql@16.6.0): resolution: {integrity: sha512-L7oDv7R5yoXzMH+KLKDB2WHVijfVW4dB2H+Ae1RdW3MFvwbYjhnIB6QzHqKEqksjp/FndtxZkbuTIuAOsYGTYw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@types/ws': 8.5.3 graphql: 16.6.0 - isomorphic-ws: 5.0.0_ws@8.12.1 + isomorphic-ws: 5.0.0(ws@8.12.1) tslib: 2.5.0 ws: 8.12.1 transitivePeerDependencies: @@ -4385,26 +4782,26 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor/0.0.15_graphql@16.6.0: + /@graphql-tools/executor@0.0.15(graphql@16.6.0): resolution: {integrity: sha512-6U7QLZT8cEUxAMXDP4xXVplLi6RBwx7ih7TevlBto66A/qFp3PDb6o/VFo07yBKozr8PGMZ4jMfEWBGxmbGdxA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 - '@graphql-typed-document-node/core': 3.1.2_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) + '@graphql-typed-document-node/core': 3.1.2(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/git-loader/7.2.0_graphql@15.8.0: + /@graphql-tools/git-loader@7.2.0(graphql@15.8.0): resolution: {integrity: sha512-aFJ5Py9sCIhiSyE+EK4zC+mQ4zRUNGGNwosqlCYNcmhtGFwlXArB13/rdj2b4p3RsmTe31Mso9VfsEZXQ6CGCw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 is-glob: 4.0.3 micromatch: 4.0.5 @@ -4414,13 +4811,13 @@ packages: - supports-color dev: true - /@graphql-tools/git-loader/7.2.20_graphql@16.6.0: + /@graphql-tools/git-loader@7.2.20(@babel/core@7.18.6)(graphql@16.6.0): resolution: {integrity: sha512-D/3uwTzlXxG50HI8BEixqirT4xiUp6AesTdfotRXAs2d4CT9wC6yuIWOHkSBqgI1cwKWZb6KXZr467YPS5ob1w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/graphql-tag-pluck': 7.5.0(@babel/core@7.18.6)(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 is-glob: 4.0.3 micromatch: 4.0.5 @@ -4431,13 +4828,13 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader/7.3.1_graphql@15.8.0: + /@graphql-tools/github-loader@7.3.1(graphql@15.8.0): resolution: {integrity: sha512-sus/YOZKhhbcBQTCWFvUdIzFThm/LiAlSh9+Bt+hNz2K05PWzR6XD7Fo2ejh6bSAZvevJBvsH/4xf1YSK86Fkg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/graphql-tag-pluck': 7.3.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/graphql-tag-pluck': 7.3.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) cross-undici-fetch: 0.4.11 graphql: 15.8.0 sync-fetch: 0.4.1 @@ -4447,15 +4844,15 @@ packages: - supports-color dev: true - /@graphql-tools/github-loader/7.3.27_graphql@16.6.0: + /@graphql-tools/github-loader@7.3.27(@babel/core@7.18.6)(@types/node@18.11.10)(graphql@16.6.0): resolution: {integrity: sha512-fFFC35qenyhjb8pfcYXKknAt0CXP5CkQYtLfJXgTXSgBjIsfAVMrqxQ/Y0ejeM19XNF/C3VWJ7rE308yOX6ywA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/graphql-tag-pluck': 7.5.0_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 - '@whatwg-node/fetch': 0.8.1 + '@graphql-tools/graphql-tag-pluck': 7.5.0(@babel/core@7.18.6)(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) + '@whatwg-node/fetch': 0.8.1(@types/node@18.11.10) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -4465,32 +4862,32 @@ packages: - supports-color dev: true - /@graphql-tools/graphql-file-loader/7.4.0_graphql@15.8.0: + /@graphql-tools/graphql-file-loader@7.4.0(graphql@15.8.0): resolution: {integrity: sha512-r1lslE5GlWO/nbDX82enHjvva7qQiZEIPm+LC9JSgKaYuVoYHuIuIAVYkpBHeaRK1Kbh/86pEhL7PuBZ/cIWSA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 6.7.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/import': 6.7.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) globby: 11.1.0 graphql: 15.8.0 tslib: 2.5.0 unixify: 1.0.0 - /@graphql-tools/graphql-file-loader/7.5.16_graphql@16.6.0: + /@graphql-tools/graphql-file-loader@7.5.16(graphql@16.6.0): resolution: {integrity: sha512-lK1N3Y2I634FS12nd4bu7oAJbai3bUc28yeX+boT+C83KTO4ujGHm+6hPC8X/FRGwhKOnZBxUM7I5nvb3HiUxw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/import': 6.7.17_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/import': 6.7.17(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) globby: 11.1.0 graphql: 16.6.0 tslib: 2.5.0 unixify: 1.0.0 dev: true - /@graphql-tools/graphql-tag-pluck/7.3.0_graphql@15.8.0: + /@graphql-tools/graphql-tag-pluck@7.3.0(graphql@15.8.0): resolution: {integrity: sha512-GxtgGTSOiQuFc/yNWXsPJ5QEgGlH+4qBf1paqUJtjFpm89dZA+VkdjoIDiFg8fyXGivjZ37+XAUbuu6UlsT+6Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4498,23 +4895,23 @@ packages: '@babel/parser': 7.18.6 '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 transitivePeerDependencies: - supports-color dev: true - /@graphql-tools/graphql-tag-pluck/7.5.0_graphql@16.6.0: + /@graphql-tools/graphql-tag-pluck@7.5.0(@babel/core@7.18.6)(graphql@16.6.0): resolution: {integrity: sha512-76SYzhSlH50ZWkhWH6OI94qrxa8Ww1ZeOU04MdtpSeQZVT2rjGWeTb3xM3kjTVWQJsr/YJBhDeNPGlwNUWfX4Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@babel/parser': 7.20.15 - '@babel/plugin-syntax-import-assertions': 7.20.0 + '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.18.6) '@babel/traverse': 7.18.6 '@babel/types': 7.21.2 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -4522,125 +4919,125 @@ packages: - supports-color dev: true - /@graphql-tools/import/6.7.0_graphql@15.8.0: + /@graphql-tools/import@6.7.0(graphql@15.8.0): resolution: {integrity: sha512-u9JL4fClKKyBTQpgb4QFacYUwgBCs4lW1NaHX0hD2zBdahIYidokBY0QkOqOCEAnWeFqpEmAjB62ulLiAJWc2g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 resolve-from: 5.0.0 tslib: 2.5.0 - /@graphql-tools/import/6.7.17_graphql@16.6.0: + /@graphql-tools/import@6.7.17(graphql@16.6.0): resolution: {integrity: sha512-bn9SgrECXq3WIasgNP7ful/uON51wBajPXtxdY+z/ce7jLWaFE6lzwTDB/GAgiZ+jo7nb0ravlxteSAz2qZmuA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 resolve-from: 5.0.0 tslib: 2.5.0 dev: true - /@graphql-tools/json-file-loader/7.4.0_graphql@15.8.0: + /@graphql-tools/json-file-loader@7.4.0(graphql@15.8.0): resolution: {integrity: sha512-6oR7Ulc5iZc5SM3g1Yj91DqSu3TNbfGK/0baE8KyUlvq6KiIuWFWDy13RGnNesftt4RSWvZqGzu/kzXcBHtt+A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) globby: 11.1.0 graphql: 15.8.0 tslib: 2.5.0 unixify: 1.0.0 - /@graphql-tools/json-file-loader/7.4.17_graphql@16.6.0: + /@graphql-tools/json-file-loader@7.4.17(graphql@16.6.0): resolution: {integrity: sha512-KOSTP43nwjPfXgas90rLHAFgbcSep4nmiYyR9xRVz4ZAmw8VYHcKhOLTSGylCAzi7KUfyBXajoW+6Z7dQwdn3g==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) globby: 11.1.0 graphql: 16.6.0 tslib: 2.5.0 unixify: 1.0.0 dev: true - /@graphql-tools/load/7.7.0_graphql@15.8.0: + /@graphql-tools/load@7.7.0(graphql@15.8.0): resolution: {integrity: sha512-6KX7Z8BtlFScDr0pIac92QZWlPGbHcpNMesX/6Y3Vsp3FeFnAYfzZldXZQcJoW7Yl+gHdFwYVq683wSH64kNrw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 8.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/schema': 8.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 p-limit: 3.1.0 tslib: 2.5.0 - /@graphql-tools/load/7.8.12_graphql@16.6.0: + /@graphql-tools/load@7.8.12(graphql@16.6.0): resolution: {integrity: sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/schema': 9.0.16(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 p-limit: 3.1.0 tslib: 2.5.0 dev: true - /@graphql-tools/merge/8.3.0_graphql@15.8.0: + /@graphql-tools/merge@8.3.0(graphql@15.8.0): resolution: {integrity: sha512-xRa7RAQok/0DD2YnjuqikMrr7dUAxTpdGtZ7BkvUUGhYs3B3p7reCAfvOVr1DJAqVToP7hdlMk+S5+Ylk+AaqA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 - /@graphql-tools/merge/8.3.11_graphql@15.8.0: + /@graphql-tools/merge@8.3.11(graphql@15.8.0): resolution: {integrity: sha512-IpZh8r8e8FycXaUv04xe5HQH9siD1tkS8MvaO8Wb2FaPXv15XSYP+Wsb2MUStpIqGfQxa6xY/+eEuxv+VqwXyg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.1.0_graphql@15.8.0 + '@graphql-tools/utils': 9.1.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 dev: false - /@graphql-tools/merge/8.3.12_graphql@15.8.0: + /@graphql-tools/merge@8.3.12(graphql@15.8.0): resolution: {integrity: sha512-BFL8r4+FrqecPnIW0H8UJCBRQ4Y8Ep60aujw9c/sQuFmQTiqgWgpphswMGfaosP2zUinDE3ojU5wwcS2IJnumA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.1.1_graphql@15.8.0 + '@graphql-tools/utils': 9.1.1(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 dev: false - /@graphql-tools/merge/8.3.18_graphql@16.6.0: + /@graphql-tools/merge@8.3.18(graphql@16.6.0): resolution: {integrity: sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: true - /@graphql-tools/mock/8.7.12_graphql@15.8.0: + /@graphql-tools/mock@8.7.12(graphql@15.8.0): resolution: {integrity: sha512-bEjj52T5idjzqFXfDZPFfPZDPFEjVmayYA6RYqMxM3Qdv5JJ8pSMEGDBcXhinbQudPKdRkLmR17usNmRMpUQEg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 9.0.10_graphql@15.8.0 - '@graphql-tools/utils': 9.1.1_graphql@15.8.0 + '@graphql-tools/schema': 9.0.10(graphql@15.8.0) + '@graphql-tools/utils': 9.1.1(graphql@15.8.0) fast-json-stable-stringify: 2.1.0 graphql: 15.8.0 tslib: 2.5.0 dev: false - /@graphql-tools/optimize/1.3.0_graphql@15.8.0: + /@graphql-tools/optimize@1.3.0(graphql@15.8.0): resolution: {integrity: sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4649,7 +5046,7 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/optimize/1.3.0_graphql@16.6.0: + /@graphql-tools/optimize@1.3.0(graphql@16.6.0): resolution: {integrity: sha512-30QOWJoMJEt1De7tAFtWJ6VPrP6SLq+tSQrA3x+WMvCW3q2exq5wPDpvAXOakVKu0y8L2E+YkipC0hcQPBQdLg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4658,21 +5055,21 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/prisma-loader/7.2.2_graphql@15.8.0: + /@graphql-tools/prisma-loader@7.2.2(@types/node@17.0.45)(graphql@15.8.0): resolution: {integrity: sha512-f5txUBRwwZmPQYL5g5CNdOjOglFE/abtnEVOvUCq+nET0BRuxcuxUD5vykfZnkql9sNvnCFAfrZuBVe5S2n3bA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.12.1_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/url-loader': 7.12.1(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 '@types/jsonwebtoken': 8.5.9 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) dotenv: 16.0.3 graphql: 15.8.0 - graphql-request: 4.3.0_graphql@15.8.0 + graphql-request: 4.3.0(graphql@15.8.0) http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 isomorphic-fetch: 3.0.0 @@ -4692,21 +5089,21 @@ packages: - utf-8-validate dev: true - /@graphql-tools/prisma-loader/7.2.64_graphql@16.6.0: + /@graphql-tools/prisma-loader@7.2.64(@types/node@18.11.10)(graphql@16.6.0): resolution: {integrity: sha512-W8GfzfBKiBSIEgw+/nJk6zUlF6k/jterlNoFhM27mBsbeMtWxKnm1+gEU6KA0N1PNEdq2RIa2W4AfVfVBl2GgQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/url-loader': 7.17.13_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/url-loader': 7.17.13(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@types/js-yaml': 4.0.5 '@types/json-stable-stringify': 1.0.34 '@types/jsonwebtoken': 9.0.1 chalk: 4.1.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) dotenv: 16.0.3 graphql: 16.6.0 - graphql-request: 5.1.0_graphql@16.6.0 + graphql-request: 5.1.0(graphql@16.6.0) http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 isomorphic-fetch: 3.0.0 @@ -4725,13 +5122,13 @@ packages: - utf-8-validate dev: true - /@graphql-tools/relay-operation-optimizer/6.5.0_graphql@15.8.0: + /@graphql-tools/relay-operation-optimizer@6.5.0(graphql@15.8.0): resolution: {integrity: sha512-snqmdPiM2eBex6pijRFx4H9MPumVd8ZWM3y+aaRwzc73VUNnjHE4NyVZEEIdlbmJ2HoQ9Zrm9aFlHVMK7B59zg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@ardatan/relay-compiler': 12.0.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 transitivePeerDependencies: @@ -4739,13 +5136,13 @@ packages: - supports-color dev: true - /@graphql-tools/relay-operation-optimizer/6.5.0_graphql@16.6.0: + /@graphql-tools/relay-operation-optimizer@6.5.0(graphql@16.6.0): resolution: {integrity: sha512-snqmdPiM2eBex6pijRFx4H9MPumVd8ZWM3y+aaRwzc73VUNnjHE4NyVZEEIdlbmJ2HoQ9Zrm9aFlHVMK7B59zg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@ardatan/relay-compiler': 12.0.0_graphql@16.6.0 - '@graphql-tools/utils': 8.8.0_graphql@16.6.0 + '@ardatan/relay-compiler': 12.0.0(graphql@16.6.0) + '@graphql-tools/utils': 8.8.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -4753,70 +5150,70 @@ packages: - supports-color dev: true - /@graphql-tools/schema/8.5.0_graphql@15.8.0: + /@graphql-tools/schema@8.5.0(graphql@15.8.0): resolution: {integrity: sha512-VeFtKjM3SA9/hCJJfr95aEdC3G0xIKM9z0Qdz4i+eC1g2fdZYnfWFt2ucW4IME+2TDd0enHlKzaV0qk2SLVUww==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/merge': 8.3.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 value-or-promise: 1.0.11 - /@graphql-tools/schema/9.0.10_graphql@15.8.0: + /@graphql-tools/schema@9.0.10(graphql@15.8.0): resolution: {integrity: sha512-lV0o4df9SpPiaeeDAzgdCJ2o2N9Wvsp0SMHlF2qDbh9aFCFQRsXuksgiDm2yTgT3TG5OtUes/t0D6uPjPZFUbQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.12_graphql@15.8.0 - '@graphql-tools/utils': 9.1.1_graphql@15.8.0 + '@graphql-tools/merge': 8.3.12(graphql@15.8.0) + '@graphql-tools/utils': 9.1.1(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/schema/9.0.16_graphql@16.6.0: + /@graphql-tools/schema@9.0.16(graphql@16.6.0): resolution: {integrity: sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.18_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/merge': 8.3.18(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-tools/schema/9.0.9_graphql@15.8.0: + /@graphql-tools/schema@9.0.9(graphql@15.8.0): resolution: {integrity: sha512-hwg8trUytO5ayQ8bzL3+sAyXcu2rhKt5pLXpLO0/TMTN2nXd3DBO4mqx+Ra4Er2mE/msInGQ5EmZbxVBPv+hSg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.3.11_graphql@15.8.0 - '@graphql-tools/utils': 9.1.0_graphql@15.8.0 + '@graphql-tools/merge': 8.3.11(graphql@15.8.0) + '@graphql-tools/utils': 9.1.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/url-loader/7.12.1_graphql@15.8.0: + /@graphql-tools/url-loader@7.12.1(@types/node@17.0.45)(graphql@15.8.0): resolution: {integrity: sha512-Fd3ZZLEEr9GGFHEbdrcaMHFQu01BLpFnNDBkISupvjokd497O5Uh0xZvsZGC6mxVt0WWQWpgaK2ef+oLuOdLqQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 8.8.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 - '@graphql-tools/wrap': 8.5.0_graphql@15.8.0 - '@n1ru4l/graphql-live-query': 0.9.0_graphql@15.8.0 + '@graphql-tools/delegate': 8.8.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) + '@graphql-tools/wrap': 8.5.0(graphql@15.8.0) + '@n1ru4l/graphql-live-query': 0.9.0(graphql@15.8.0) '@types/ws': 8.5.3 cross-undici-fetch: 0.4.11 dset: 3.1.2 extract-files: 11.0.0 graphql: 15.8.0 - graphql-ws: 5.9.1_graphql@15.8.0 - isomorphic-ws: 5.0.0_ws@8.12.1 - meros: 1.2.0 + graphql-ws: 5.9.1(graphql@15.8.0) + isomorphic-ws: 5.0.0(ws@8.12.1) + meros: 1.2.0(@types/node@17.0.45) sync-fetch: 0.4.1 tslib: 2.5.0 value-or-promise: 1.0.11 @@ -4827,22 +5224,22 @@ packages: - encoding - utf-8-validate - /@graphql-tools/url-loader/7.17.13_graphql@16.6.0: + /@graphql-tools/url-loader@7.17.13(@types/node@18.11.10)(graphql@16.6.0): resolution: {integrity: sha512-FEmbvw68kxeZLn4VYGAl+NuBPk09ZnxymjW07A6mCtiDayFgYfHdWeRzXn/iM5PzsEuCD73R1sExtNQ/ISiajg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.28_graphql@16.6.0 - '@graphql-tools/executor-graphql-ws': 0.0.11_graphql@16.6.0 - '@graphql-tools/executor-http': 0.1.9_graphql@16.6.0 - '@graphql-tools/executor-legacy-ws': 0.0.9_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 - '@graphql-tools/wrap': 9.3.7_graphql@16.6.0 + '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) + '@graphql-tools/executor-graphql-ws': 0.0.11(graphql@16.6.0) + '@graphql-tools/executor-http': 0.1.9(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/executor-legacy-ws': 0.0.9(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) + '@graphql-tools/wrap': 9.3.7(graphql@16.6.0) '@types/ws': 8.5.3 - '@whatwg-node/fetch': 0.8.1 + '@whatwg-node/fetch': 0.8.1(@types/node@18.11.10) graphql: 16.6.0 - isomorphic-ws: 5.0.0_ws@8.12.1 + isomorphic-ws: 5.0.0(ws@8.12.1) tslib: 2.5.0 value-or-promise: 1.0.11 ws: 8.12.1 @@ -4853,7 +5250,7 @@ packages: - utf-8-validate dev: true - /@graphql-tools/utils/8.8.0_graphql@15.8.0: + /@graphql-tools/utils@8.8.0(graphql@15.8.0): resolution: {integrity: sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4861,7 +5258,7 @@ packages: graphql: 15.8.0 tslib: 2.5.0 - /@graphql-tools/utils/8.8.0_graphql@16.6.0: + /@graphql-tools/utils@8.8.0(graphql@16.6.0): resolution: {integrity: sha512-KJrtx05uSM/cPYFdTnGAS1doL5bftJLAiFCDMZ8Vkifztz3BFn3gpFiy/o4wDtM8s39G46mxmt2Km/RmeltfGw==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4870,7 +5267,7 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/utils/9.1.0_graphql@15.8.0: + /@graphql-tools/utils@9.1.0(graphql@15.8.0): resolution: {integrity: sha512-4Ketxo98IwKA/56LP6cI6PgQBwUCujszQcTNkzjq7liJPa2mLjKnmVOJ0bauMwKcEazeYuZagceljb0POmEGvQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4879,7 +5276,7 @@ packages: tslib: 2.5.0 dev: false - /@graphql-tools/utils/9.1.1_graphql@15.8.0: + /@graphql-tools/utils@9.1.1(graphql@15.8.0): resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4888,7 +5285,7 @@ packages: tslib: 2.5.0 dev: false - /@graphql-tools/utils/9.1.1_graphql@16.6.0: + /@graphql-tools/utils@9.1.1(graphql@16.6.0): resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -4897,56 +5294,56 @@ packages: tslib: 2.5.0 dev: true - /@graphql-tools/utils/9.2.1_graphql@16.6.0: + /@graphql-tools/utils@9.2.1(graphql@16.6.0): resolution: {integrity: sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: true - /@graphql-tools/wrap/8.5.0_graphql@15.8.0: + /@graphql-tools/wrap@8.5.0(graphql@15.8.0): resolution: {integrity: sha512-I+x9dBNzC135WWPi04ejqurR/zDmhfeGbCftCaYKF4CvgWd+ZaJx4Uc74n1SBegQtrj+KDrOS4HgKwf9vAVR7A==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 8.8.0_graphql@15.8.0 - '@graphql-tools/schema': 8.5.0_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@graphql-tools/delegate': 8.8.0(graphql@15.8.0) + '@graphql-tools/schema': 8.5.0(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) graphql: 15.8.0 tslib: 2.5.0 value-or-promise: 1.0.11 - /@graphql-tools/wrap/9.3.7_graphql@16.6.0: + /@graphql-tools/wrap@9.3.7(graphql@16.6.0): resolution: {integrity: sha512-gavfiWLKgvmC2VPamnMzml3zmkBoo0yt+EmOLIHY6O92o4uMTR281WGM77tZIfq+jzLtjoIOThUSjC/cN/6XKg==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/delegate': 9.0.28_graphql@16.6.0 - '@graphql-tools/schema': 9.0.16_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/delegate': 9.0.28(graphql@16.6.0) + '@graphql-tools/schema': 9.0.16(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 value-or-promise: 1.0.12 dev: true - /@graphql-typed-document-node/core/3.1.1_graphql@15.8.0: + /@graphql-typed-document-node/core@3.1.1(graphql@15.8.0): resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} 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 dependencies: graphql: 15.8.0 - /@graphql-typed-document-node/core/3.1.1_graphql@16.6.0: + /@graphql-typed-document-node/core@3.1.1(graphql@16.6.0): resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} 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 dependencies: graphql: 16.6.0 - /@graphql-typed-document-node/core/3.1.2_graphql@16.6.0: + /@graphql-typed-document-node/core@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-9anpBMM9mEgZN4wr2v8wHJI2/u5TnnggewRN6OlvXTTnuVyoY19X6rOv9XTqKRw6dcGKwZsBi8n0kDE2I5i4VA==} 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 @@ -4954,7 +5351,7 @@ packages: graphql: 16.6.0 dev: true - /@grpc/grpc-js/1.6.7: + /@grpc/grpc-js@1.6.7: resolution: {integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: @@ -4962,7 +5359,7 @@ packages: '@types/node': 17.0.45 dev: false - /@grpc/proto-loader/0.6.13: + /@grpc/proto-loader@0.6.13: resolution: {integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==} engines: {node: '>=6'} hasBin: true @@ -4974,11 +5371,11 @@ packages: yargs: 16.2.0 dev: false - /@histoire/app/0.12.4_vite@3.2.4: + /@histoire/app@0.12.4(vite@3.2.4): resolution: {integrity: sha512-noemJQ3q5ofHbBJGJ9FgLIdoV4Feyn3zHMhOQjHZRPETdoAak2adALO4UWKVnFu75+R43SLtoV7HnK0TAPx5kw==} dependencies: '@histoire/controls': 0.12.4 - '@histoire/shared': 0.12.4_vite@3.2.4 + '@histoire/shared': 0.12.4(vite@3.2.4) '@histoire/vendors': 0.12.4 '@types/flexsearch': 0.7.3 flexsearch: 0.7.21 @@ -4987,7 +5384,7 @@ packages: - vite dev: true - /@histoire/controls/0.12.4: + /@histoire/controls@0.12.4: resolution: {integrity: sha512-p4qa11vXqhSMsnXW1p+n7ZqawoHVErLFL24yNnA9peMuXnR306/0cvdAnsLMQJdq5mDNayOY5Di69YKVQ0Shqg==} dependencies: '@codemirror/commands': 6.2.0 @@ -5000,22 +5397,22 @@ packages: '@histoire/vendors': 0.12.4 dev: true - /@histoire/plugin-vue/0.12.4_3ztk7oukhtctodvtf5427xwgjy: + /@histoire/plugin-vue@0.12.4(histoire@0.12.4)(vite@3.2.4)(vue@3.2.45): resolution: {integrity: sha512-2xgBDwEHmiY053hPWy4rKnnMjntVcg8qfIYJGyITwFWSfNTq+6ez/HjWzUcHT6qwFMglUHq+rDlQb9gYZF+Edw==} peerDependencies: histoire: ^0.12.4 vue: ^3.2.31 dependencies: '@histoire/controls': 0.12.4 - '@histoire/shared': 0.12.4_vite@3.2.4 + '@histoire/shared': 0.12.4(vite@3.2.4) '@histoire/vendors': 0.12.4 - histoire: 0.12.4_sass@1.53.0+vite@3.2.4 + histoire: 0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4) vue: 3.2.45 transitivePeerDependencies: - vite dev: true - /@histoire/shared/0.12.4_vite@3.2.4: + /@histoire/shared@0.12.4(vite@3.2.4): resolution: {integrity: sha512-dVSrfsEu17KczjyHVW8yPvSlguhEV7hWjDSwsjlUrRdbe7hwztX4GbbcCIWvG5hy5gASpKpQq6FJa5uTs0HOsg==} peerDependencies: vite: ^2.9.0 || ^3.0.0 || ^4.0.0 @@ -5025,14 +5422,14 @@ packages: chokidar: 3.5.3 pathe: 0.2.0 picocolors: 1.0.0 - vite: 3.2.4_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) dev: true - /@histoire/vendors/0.12.4: + /@histoire/vendors@0.12.4: resolution: {integrity: sha512-NIi0krz19iSjPHhIsGLrW4Q3tvrCLfvCet2kFA8crKPX6inaMZm8g/+pDQBqlh9DRCXVbxV5RWQKcumrIFbrmw==} dev: true - /@hoppscotch/vue-toasted/0.1.0_vue@3.2.37: + /@hoppscotch/vue-toasted@0.1.0(vue@3.2.37): resolution: {integrity: sha512-DIgmeTHxWwX5UeaHLEqDYNLJFGRosx/5N1fCHkaO8zt+sZv8GrHlkrIpjfKF2drmA3kKw5cY42Cw7WuCoabR3g==} peerDependencies: vue: ^3.2.37 @@ -5040,7 +5437,7 @@ packages: vue: 3.2.37 dev: false - /@hoppscotch/vue-toasted/0.1.0_vue@3.2.45: + /@hoppscotch/vue-toasted@0.1.0(vue@3.2.45): resolution: {integrity: sha512-DIgmeTHxWwX5UeaHLEqDYNLJFGRosx/5N1fCHkaO8zt+sZv8GrHlkrIpjfKF2drmA3kKw5cY42Cw7WuCoabR3g==} peerDependencies: vue: ^3.2.37 @@ -5048,91 +5445,91 @@ packages: vue: 3.2.45 dev: false - /@humanwhocodes/config-array/0.10.7: + /@humanwhocodes/config-array@0.10.7: resolution: {integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) minimatch: 3.1.2 transitivePeerDependencies: - supports-color dev: true - /@humanwhocodes/config-array/0.11.7: + /@humanwhocodes/config-array@0.11.7: resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) minimatch: 3.1.2 transitivePeerDependencies: - supports-color - /@humanwhocodes/config-array/0.9.5: + /@humanwhocodes/config-array@0.9.5: resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) minimatch: 3.1.2 transitivePeerDependencies: - supports-color dev: true - /@humanwhocodes/gitignore-to-minimatch/1.0.2: + /@humanwhocodes/gitignore-to-minimatch@1.0.2: resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==} dev: true - /@humanwhocodes/module-importer/1.0.1: + /@humanwhocodes/module-importer@1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - /@humanwhocodes/object-schema/1.2.1: + /@humanwhocodes/object-schema@1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - /@iarna/toml/2.2.5: + /@iarna/toml@2.2.5: resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==} - /@iconify-json/lucide/1.1.40: + /@iconify-json/lucide@1.1.40: resolution: {integrity: sha512-4GeQtaiv3mJ+b0sn/c2KL8Tgf4XQvsX1AHDOseuGRhgoLCWG+ZdNRFxF5sp1I6T/VcQccegLPOp5XHn3NC1mmA==} dependencies: '@iconify/types': 1.1.0 dev: true - /@iconify/types/1.1.0: + /@iconify/types@1.1.0: resolution: {integrity: sha512-Jh0llaK2LRXQoYsorIH8maClebsnzTcve+7U3rQUSnC11X4jtPnFuyatqFLvMxZ8MLG8dB4zfHsbPfuvxluONw==} - /@iconify/types/2.0.0: + /@iconify/types@2.0.0: resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} dev: true - /@iconify/utils/1.0.33: + /@iconify/utils@1.0.33: resolution: {integrity: sha512-vGeAqo7aGPxOQmGdVoXFUOuyN+0V7Lcrx2EvaiRjxUD1x6Om0Tvq2bdm7E24l2Pz++4S0mWMCVFXe/17EtKImQ==} dependencies: '@antfu/install-pkg': 0.1.0 '@antfu/utils': 0.5.2 '@iconify/types': 1.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.5.1 local-pkg: 0.4.2 transitivePeerDependencies: - supports-color - /@iconify/utils/2.1.4: + /@iconify/utils@2.1.4: resolution: {integrity: sha512-7vzsYIvxv5Hng0MNEtSSnyMBD/+zqnORqmKiYsSgpMBGSz1r93URgBZHPYCZ1/gpoaVstYW4/SVLGCMJBNMCLQ==} dependencies: '@antfu/install-pkg': 0.1.1 '@antfu/utils': 0.7.2 '@iconify/types': 2.0.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.7.0 local-pkg: 0.4.3 transitivePeerDependencies: - supports-color dev: true - /@intlify/bundle-utils/6.0.0: + /@intlify/bundle-utils@6.0.0(vue-i18n@9.2.2): resolution: {integrity: sha512-c8nTDgsTrBqVk3LPoF/YEarqeqcW0XAY5Y0UmFl5VKWKRNQh47jzvHRDmeRWhos5bUw1zIdiTixrs99FMJ9j5g==} engines: {node: '>= 14.16'} peerDependencies: @@ -5153,35 +5550,11 @@ packages: magic-string: 0.30.0 mlly: 1.2.0 source-map: 0.6.1 + vue-i18n: 9.2.2(vue@3.2.37) yaml-eslint-parser: 0.3.2 dev: true - /@intlify/bundle-utils/6.0.0_vue-i18n@9.2.2: - resolution: {integrity: sha512-c8nTDgsTrBqVk3LPoF/YEarqeqcW0XAY5Y0UmFl5VKWKRNQh47jzvHRDmeRWhos5bUw1zIdiTixrs99FMJ9j5g==} - engines: {node: '>= 14.16'} - peerDependencies: - petite-vue-i18n: '*' - vue-i18n: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vue-i18n: - optional: true - dependencies: - '@intlify/message-compiler': 9.3.0-beta.17 - '@intlify/shared': 9.3.0-beta.17 - acorn: 8.8.2 - escodegen: 2.0.0 - estree-walker: 2.0.2 - jsonc-eslint-parser: 1.4.1 - magic-string: 0.30.0 - mlly: 1.2.0 - source-map: 0.6.1 - vue-i18n: 9.2.2_vue@3.2.37 - yaml-eslint-parser: 0.3.2 - dev: true - - /@intlify/core-base/9.2.2: + /@intlify/core-base@9.2.2: resolution: {integrity: sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==} engines: {node: '>= 14'} dependencies: @@ -5190,20 +5563,20 @@ packages: '@intlify/shared': 9.2.2 '@intlify/vue-devtools': 9.2.2 - /@intlify/devtools-if/9.2.2: + /@intlify/devtools-if@9.2.2: resolution: {integrity: sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==} engines: {node: '>= 14'} dependencies: '@intlify/shared': 9.2.2 - /@intlify/message-compiler/9.2.2: + /@intlify/message-compiler@9.2.2: resolution: {integrity: sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==} engines: {node: '>= 14'} dependencies: '@intlify/shared': 9.2.2 source-map: 0.6.1 - /@intlify/message-compiler/9.3.0-beta.17: + /@intlify/message-compiler@9.3.0-beta.17: resolution: {integrity: sha512-i7hvVIRk1Ax2uKa9xLRJCT57to08OhFMhFXXjWN07rmx5pWQYQ23MfX1xgggv9drnWTNhqEiD+u4EJeHoS5+Ww==} engines: {node: '>= 14'} dependencies: @@ -5211,16 +5584,16 @@ packages: source-map: 0.6.1 dev: true - /@intlify/shared/9.2.2: + /@intlify/shared@9.2.2: resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==} engines: {node: '>= 14'} - /@intlify/shared/9.3.0-beta.17: + /@intlify/shared@9.3.0-beta.17: resolution: {integrity: sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ==} engines: {node: '>= 14'} dev: true - /@intlify/vite-plugin-vue-i18n/6.0.1_vite@3.1.4+vue-i18n@9.2.2: + /@intlify/vite-plugin-vue-i18n@6.0.1(vite@3.1.4)(vue-i18n@9.2.2): resolution: {integrity: sha512-FFVcxVU4bR9vdDLNbltM5mrhndnXMErO01i0RrpdyMegEt3Nu/YLoH0sFdjRun7/RY4vaEnhTnFvVf9uO0dQvg==} engines: {node: '>= 14.6'} peerDependencies: @@ -5235,56 +5608,30 @@ packages: vue-i18n: optional: true dependencies: - '@intlify/bundle-utils': 6.0.0_vue-i18n@9.2.2 + '@intlify/bundle-utils': 6.0.0(vue-i18n@9.2.2) '@intlify/shared': 9.3.0-beta.17 '@rollup/pluginutils': 4.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 source-map: 0.6.1 - vite: 3.1.4_sass@1.53.0 - vue-i18n: 9.2.2_vue@3.2.37 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) + vue-i18n: 9.2.2(vue@3.2.37) transitivePeerDependencies: - supports-color dev: true - /@intlify/vite-plugin-vue-i18n/6.0.1_vite@3.2.4: - resolution: {integrity: sha512-FFVcxVU4bR9vdDLNbltM5mrhndnXMErO01i0RrpdyMegEt3Nu/YLoH0sFdjRun7/RY4vaEnhTnFvVf9uO0dQvg==} - engines: {node: '>= 14.6'} - peerDependencies: - petite-vue-i18n: '*' - vite: ^2.9.0 || ^3.0.0 - vue-i18n: '*' - peerDependenciesMeta: - petite-vue-i18n: - optional: true - vite: - optional: true - vue-i18n: - optional: true - dependencies: - '@intlify/bundle-utils': 6.0.0 - '@intlify/shared': 9.3.0-beta.17 - '@rollup/pluginutils': 4.2.1 - debug: 4.3.4 - fast-glob: 3.2.11 - source-map: 0.6.1 - vite: 3.2.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@intlify/vue-devtools/9.2.2: + /@intlify/vue-devtools@9.2.2: resolution: {integrity: sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==} engines: {node: '>= 14'} dependencies: '@intlify/core-base': 9.2.2 '@intlify/shared': 9.2.2 - /@ioredis/commands/1.2.0: + /@ioredis/commands@1.2.0: resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} dev: false - /@istanbuljs/load-nyc-config/1.1.0: + /@istanbuljs/load-nyc-config@1.1.0: resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} engines: {node: '>=8'} dependencies: @@ -5295,12 +5642,12 @@ packages: resolve-from: 5.0.0 dev: true - /@istanbuljs/schema/0.1.3: + /@istanbuljs/schema@0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} dev: true - /@jest/console/27.5.1: + /@jest/console@27.5.1: resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5312,7 +5659,7 @@ packages: slash: 3.0.0 dev: true - /@jest/console/29.4.1: + /@jest/console@29.4.1: resolution: {integrity: sha512-m+XpwKSi3PPM9znm5NGS8bBReeAJJpSkL1OuFCqaMaJL2YX9YXLkkI+MBchMPwu+ZuM2rynL51sgfkQteQ1CKQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5324,7 +5671,7 @@ packages: slash: 3.0.0 dev: true - /@jest/core/27.5.1: + /@jest/core@27.5.1: resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -5369,7 +5716,7 @@ packages: - utf-8-validate dev: true - /@jest/core/29.4.1_ts-node@10.9.1: + /@jest/core@29.4.1(ts-node@10.9.1): resolution: {integrity: sha512-RXFTohpBqpaTebNdg5l3I5yadnKo9zLBajMT0I38D0tDhreVBYv3fA8kywthI00sWxPztWLD3yjiUkewwu/wKA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -5390,7 +5737,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.4.0 - jest-config: 29.4.1_j5wyyouvf5aixckc7ltaxrydha + jest-config: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) jest-haste-map: 29.4.1 jest-message-util: 29.4.1 jest-regex-util: 29.2.0 @@ -5411,7 +5758,7 @@ packages: - ts-node dev: true - /@jest/environment/27.5.1: + /@jest/environment@27.5.1: resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5421,7 +5768,7 @@ packages: jest-mock: 27.5.1 dev: true - /@jest/environment/29.4.1: + /@jest/environment@29.4.1: resolution: {integrity: sha512-pJ14dHGSQke7Q3mkL/UZR9ZtTOxqskZaC91NzamEH4dlKRt42W+maRBXiw/LWkdJe+P0f/zDR37+SPMplMRlPg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5431,28 +5778,28 @@ packages: jest-mock: 29.4.1 dev: true - /@jest/expect-utils/28.1.1: + /@jest/expect-utils@28.1.1: resolution: {integrity: sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: jest-get-type: 28.0.2 dev: true - /@jest/expect-utils/29.3.1: + /@jest/expect-utils@29.3.1: resolution: {integrity: sha512-wlrznINZI5sMjwvUoLVk617ll/UYfGIZNxmbU+Pa7wmkL4vYzhV9R2pwVqUh4NWWuLQWkI8+8mOkxs//prKQ3g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.2.0 dev: true - /@jest/expect-utils/29.4.1: + /@jest/expect-utils@29.4.1: resolution: {integrity: sha512-w6YJMn5DlzmxjO00i9wu2YSozUYRBhIoJ6nQwpMYcBMtiqMGJm1QBzOf6DDgRao8dbtpDoaqLg6iiQTvv0UHhQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: jest-get-type: 29.2.0 dev: true - /@jest/expect/29.4.1: + /@jest/expect@29.4.1: resolution: {integrity: sha512-ZxKJP5DTUNF2XkpJeZIzvnzF1KkfrhEF6Rz0HGG69fHl6Bgx5/GoU3XyaeFYEjuuKSOOsbqD/k72wFvFxc3iTw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5462,7 +5809,7 @@ packages: - supports-color dev: true - /@jest/fake-timers/27.5.1: + /@jest/fake-timers@27.5.1: resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5474,7 +5821,7 @@ packages: jest-util: 27.5.1 dev: true - /@jest/fake-timers/29.4.1: + /@jest/fake-timers@29.4.1: resolution: {integrity: sha512-/1joI6rfHFmmm39JxNfmNAO3Nwm6Y0VoL5fJDy7H1AtWrD1CgRtqJbN9Ld6rhAkGO76qqp4cwhhxJ9o9kYjQMw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5486,7 +5833,7 @@ packages: jest-util: 29.4.1 dev: true - /@jest/globals/27.5.1: + /@jest/globals@27.5.1: resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5495,7 +5842,7 @@ packages: expect: 27.5.1 dev: true - /@jest/globals/29.4.1: + /@jest/globals@29.4.1: resolution: {integrity: sha512-znoK2EuFytbHH0ZSf2mQK2K1xtIgmaw4Da21R2C/NE/+NnItm5mPEFQmn8gmF3f0rfOlmZ3Y3bIf7bFj7DHxAA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5507,7 +5854,7 @@ packages: - supports-color dev: true - /@jest/reporters/27.5.1: + /@jest/reporters@27.5.1: resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -5545,7 +5892,7 @@ packages: - supports-color dev: true - /@jest/reporters/29.4.1: + /@jest/reporters@29.4.1: resolution: {integrity: sha512-AISY5xpt2Xpxj9R6y0RF1+O6GRy9JsGa8+vK23Lmzdy1AYcpQn5ItX79wJSsTmfzPKSAcsY1LNt/8Y5Xe5LOSg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -5582,28 +5929,28 @@ packages: - supports-color dev: true - /@jest/schemas/28.0.2: + /@jest/schemas@28.0.2: resolution: {integrity: sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@sinclair/typebox': 0.23.5 dev: true - /@jest/schemas/29.0.0: + /@jest/schemas@29.0.0: resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.24.51 dev: true - /@jest/schemas/29.4.0: + /@jest/schemas@29.4.0: resolution: {integrity: sha512-0E01f/gOZeNTG76i5eWWSupvSHaIINrTie7vCyjiYFKgzNdyEGd12BUv4oNBFHOqlHDbtoJi3HrQ38KCC90NsQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.25.21 dev: true - /@jest/source-map/27.5.1: + /@jest/source-map@27.5.1: resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5612,7 +5959,7 @@ packages: source-map: 0.6.1 dev: true - /@jest/source-map/29.2.0: + /@jest/source-map@29.2.0: resolution: {integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5621,7 +5968,7 @@ packages: graceful-fs: 4.2.10 dev: true - /@jest/test-result/27.5.1: + /@jest/test-result@27.5.1: resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5631,7 +5978,7 @@ packages: collect-v8-coverage: 1.0.1 dev: true - /@jest/test-result/29.4.1: + /@jest/test-result@29.4.1: resolution: {integrity: sha512-WRt29Lwt+hEgfN8QDrXqXGgCTidq1rLyFqmZ4lmJOpVArC8daXrZWkWjiaijQvgd3aOUj2fM8INclKHsQW9YyQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5641,7 +5988,7 @@ packages: collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/27.5.1: + /@jest/test-sequencer@27.5.1: resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5653,7 +6000,7 @@ packages: - supports-color dev: true - /@jest/test-sequencer/29.4.1: + /@jest/test-sequencer@29.4.1: resolution: {integrity: sha512-v5qLBNSsM0eHzWLXsQ5fiB65xi49A3ILPSFQKPXzGL4Vyux0DPZAIN7NAFJa9b4BiTDP9MBF/Zqc/QA1vuiJ0w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5663,7 +6010,7 @@ packages: slash: 3.0.0 dev: true - /@jest/transform/27.5.1: + /@jest/transform@27.5.1: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5686,7 +6033,7 @@ packages: - supports-color dev: true - /@jest/transform/29.4.1: + /@jest/transform@29.4.1: resolution: {integrity: sha512-5w6YJrVAtiAgr0phzKjYd83UPbCXsBRTeYI4BXokv9Er9CcrH9hfXL/crCvP2d2nGOcovPUnlYiLPFLZrkG5Hg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5709,7 +6056,7 @@ packages: - supports-color dev: true - /@jest/types/27.5.1: + /@jest/types@27.5.1: resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -5720,7 +6067,7 @@ packages: chalk: 4.1.2 dev: true - /@jest/types/28.1.1: + /@jest/types@28.1.1: resolution: {integrity: sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -5732,7 +6079,7 @@ packages: chalk: 4.1.2 dev: true - /@jest/types/29.4.1: + /@jest/types@29.4.1: resolution: {integrity: sha512-zbrAXDUOnpJ+FMST2rV7QZOgec8rskg2zv8g2ajeqitp4tvZiyqTCYXANrKsM+ryj5o+LI+ZN2EgU9drrkiwSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -5744,15 +6091,15 @@ packages: chalk: 4.1.2 dev: true - /@jonkemp/package-utils/1.0.8: + /@jonkemp/package-utils@1.0.8: resolution: {integrity: sha512-bIcKnH5YmtTYr7S6J3J86dn/rFiklwRpOqbTOQ9C0WMmR9FKHVb3bxs2UYfqEmNb93O4nbA97sb6rtz33i9SyA==} dev: false - /@josephg/resolvable/1.0.1: + /@josephg/resolvable@1.0.1: resolution: {integrity: sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==} dev: false - /@jridgewell/gen-mapping/0.1.1: + /@jridgewell/gen-mapping@0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} dependencies: @@ -5760,67 +6107,62 @@ packages: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /@jridgewell/gen-mapping/0.3.2: + /@jridgewell/gen-mapping@0.3.2: resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.14 - dev: true - /@jridgewell/resolve-uri/3.0.8: + /@jridgewell/resolve-uri@3.0.8: resolution: {integrity: sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==} engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/resolve-uri/3.1.0: + /@jridgewell/resolve-uri@3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} engines: {node: '>=6.0.0'} - /@jridgewell/set-array/1.1.2: + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} - dev: true - /@jridgewell/source-map/0.3.2: + /@jridgewell/source-map@0.3.2: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.14 - dev: true - /@jridgewell/sourcemap-codec/1.4.14: + /@jridgewell/sourcemap-codec@1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.14: + /@jridgewell/trace-mapping@0.3.14: resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} dependencies: '@jridgewell/resolve-uri': 3.0.8 '@jridgewell/sourcemap-codec': 1.4.14 - dev: true - /@jridgewell/trace-mapping/0.3.17: + /@jridgewell/trace-mapping@0.3.17: resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /@jridgewell/trace-mapping/0.3.9: + /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 - /@jsdevtools/ono/7.1.3: + /@jsdevtools/ono@7.1.3: resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} dev: false - /@lezer/common/1.0.0: + /@lezer/common@1.0.0: resolution: {integrity: sha512-ohydQe+Hb+w4oMDvXzs8uuJd2NoA3D8YDcLiuDsLqH+yflDTPEpgCsWI3/6rH5C3BAedtH1/R51dxENldQceEA==} - /@lezer/generator/1.1.0: + /@lezer/generator@1.1.0: resolution: {integrity: sha512-o8LRCpckMKzCRn/uSybiZZG/gXNP8ETTutOAD4VOvuSzB91LO/u3vC7j9PBprr1Yq92x1INMKfX6S7a0YI7Sig==} hasBin: true dependencies: @@ -5828,37 +6170,37 @@ packages: '@lezer/lr': 1.2.0 dev: true - /@lezer/highlight/1.0.0: + /@lezer/highlight@1.0.0: resolution: {integrity: sha512-nsCnNtim90UKsB5YxoX65v3GEIw3iCHw9RM2DtdgkiqAbKh9pCdvi8AWNwkYf10Lu6fxNhXPpkpHbW6mihhvJA==} dependencies: '@lezer/common': 1.0.0 - /@lezer/javascript/1.0.1: + /@lezer/javascript@1.0.1: resolution: {integrity: sha512-t7fpf3+gi/jiAtW+Gv734TbKdpPg6b8qATH01/jprW9H2oR++Tb688IHwJvZbk9F4GjpCEv86beuHMpUyC1b5g==} dependencies: '@lezer/highlight': 1.0.0 '@lezer/lr': 1.2.0 dev: false - /@lezer/json/1.0.0: + /@lezer/json@1.0.0: resolution: {integrity: sha512-zbAuUY09RBzCoCA3lJ1+ypKw5WSNvLqGMtasdW6HvVOqZoCpPr8eWrsGnOVWGKGn8Rh21FnrKRVlJXrGAVUqRw==} dependencies: '@lezer/highlight': 1.0.0 '@lezer/lr': 1.2.0 - /@lezer/lr/1.2.0: + /@lezer/lr@1.2.0: resolution: {integrity: sha512-TgEpfm9br2SX8JwtwKT8HsQZKuFkLRg6g+IRxObk9nVKQLKnkP3oMh+QGcTBL9GQsfQ2ADtKPbj2iGSMf3ytiA==} dependencies: '@lezer/common': 1.0.0 - /@lezer/xml/1.0.0: + /@lezer/xml@1.0.0: resolution: {integrity: sha512-73iI9UK8iqSvWtLlOEl/g+50ivwQn8Ge6foHVN66AXUS1RccFnAoc7BYU8b3c8/rP6dfCOGqAGaWLxBzhj60MA==} dependencies: '@lezer/highlight': 1.0.0 '@lezer/lr': 1.2.0 dev: false - /@mapbox/node-pre-gyp/1.0.10: + /@mapbox/node-pre-gyp@1.0.10: resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==} hasBin: true dependencies: @@ -5875,28 +6217,28 @@ packages: - encoding - supports-color - /@mdn/browser-compat-data/4.2.1: + /@mdn/browser-compat-data@4.2.1: resolution: {integrity: sha512-EWUguj2kd7ldmrF9F+vI5hUOralPd+sdsUnYbRy33vZTuZkduC1shE9TtEMEjAQwyfyMb4ole5KtjF8MsnQOlA==} dev: true - /@microsoft/api-extractor-model/7.26.4: + /@microsoft/api-extractor-model@7.26.4(@types/node@17.0.45): resolution: {integrity: sha512-PDCgCzXDo+SLY5bsfl4bS7hxaeEtnXj7XtuzEE+BtALp7B5mK/NrS2kHWU69pohgsRmEALycQdaQPXoyT2i5MQ==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.55.2 + '@rushstack/node-core-library': 3.55.2(@types/node@17.0.45) transitivePeerDependencies: - '@types/node' dev: true - /@microsoft/api-extractor/7.34.4: + /@microsoft/api-extractor@7.34.4(@types/node@17.0.45): resolution: {integrity: sha512-HOdcci2nT40ejhwPC3Xja9G+WSJmWhCUKKryRfQYsmE9cD+pxmBaKBKCbuS9jUcl6bLLb4Gz+h7xEN5r0QiXnQ==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.26.4 + '@microsoft/api-extractor-model': 7.26.4(@types/node@17.0.45) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.55.2 + '@rushstack/node-core-library': 3.55.2(@types/node@17.0.45) '@rushstack/rig-package': 0.3.18 '@rushstack/ts-command-line': 4.13.2 colors: 1.2.5 @@ -5909,7 +6251,7 @@ packages: - '@types/node' dev: true - /@microsoft/tsdoc-config/0.16.2: + /@microsoft/tsdoc-config@0.16.2: resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==} dependencies: '@microsoft/tsdoc': 0.14.2 @@ -5918,26 +6260,26 @@ packages: resolve: 1.19.0 dev: true - /@microsoft/tsdoc/0.14.2: + /@microsoft/tsdoc@0.14.2: resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} dev: true - /@n1ru4l/graphql-live-query/0.9.0_graphql@15.8.0: + /@n1ru4l/graphql-live-query@0.9.0(graphql@15.8.0): resolution: {integrity: sha512-BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg==} peerDependencies: graphql: ^15.4.0 || ^16.0.0 dependencies: graphql: 15.8.0 - /@nestjs-modules/mailer/1.8.1_x5rh2wwt6qit6v327365jmvnye: + /@nestjs-modules/mailer@1.8.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(nodemailer@6.9.1): resolution: {integrity: sha512-rNlKzNB+Vr/aRDVcTibj2JCJQcTSE59EBQIpCwh/FkKg0Be1xoF3dQDZ4dmc9X1j396fkIBI5aQ5XAtJNPdxpw==} peerDependencies: '@nestjs/common': ^7.0.9 || ^8.0.0 || ^9.0.0 '@nestjs/core': ^7.0.9 || ^8.0.0 || ^9.0.0 nodemailer: ^6.4.6 dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) glob: 8.0.3 inline-css: 4.0.1 mjml: 4.13.0 @@ -5954,7 +6296,7 @@ packages: - supports-color dev: false - /@nestjs/apollo/10.1.6_s6pw6ravicthrbuw7ih3vbxenu: + /@nestjs/apollo@10.1.6(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(@nestjs/graphql@10.1.6)(apollo-server-express@3.11.1)(graphql@15.8.0): resolution: {integrity: sha512-BQJBBUTjEQ6roCHPC2io/OV+4n/ph1kyN38FFHtTiGHAgWx+YdeMT4LEGcaM1qBOuGC7PyNYTL3Cm2gzsGPSdg==} peerDependencies: '@apollo/gateway': ^0.44.1 || ^0.46.0 || ^0.48.0 || ^0.49.0 || ^0.50.0 || ^2.0.0 @@ -5975,30 +6317,30 @@ packages: apollo-server-fastify: optional: true dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i - '@nestjs/graphql': 10.1.6_2khsk5ahlt4vlkrgib4soffmwu - apollo-server-express: 3.11.1_4mq2c443wwzwcb6dpxnwkfvrzm + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/graphql': 10.1.6(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(graphql@15.8.0)(reflect-metadata@0.1.13) + apollo-server-express: 3.11.1(express@4.18.2)(graphql@15.8.0) graphql: 15.8.0 iterall: 1.3.0 lodash.omit: 4.5.0 tslib: 2.4.1 dev: false - /@nestjs/cli/9.1.5: + /@nestjs/cli@9.1.5: resolution: {integrity: sha512-rSp26+Nv7PFtYrRSP18Gv5ZK8rRSc2SCCF5wh4SdZaVGgkxShpNq9YEfI+ik/uziN3KC5o74ppYRXGj+aHGVsA==} engines: {node: '>= 12.9.0'} hasBin: true dependencies: - '@angular-devkit/core': 14.2.2_chokidar@3.5.3 - '@angular-devkit/schematics': 14.2.2_chokidar@3.5.3 - '@angular-devkit/schematics-cli': 14.2.2_chokidar@3.5.3 - '@nestjs/schematics': 9.0.3_ar2on76c45aosuucycxzxivxgm + '@angular-devkit/core': 14.2.2(chokidar@3.5.3) + '@angular-devkit/schematics': 14.2.2(chokidar@3.5.3) + '@angular-devkit/schematics-cli': 14.2.2(chokidar@3.5.3) + '@nestjs/schematics': 9.0.3(chokidar@3.5.3)(typescript@4.8.4) chalk: 3.0.0 chokidar: 3.5.3 cli-table3: 0.6.2 commander: 4.1.1 - fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e + fork-ts-checker-webpack-plugin: 7.2.13(typescript@4.8.4)(webpack@5.74.0) inquirer: 7.3.3 node-emoji: 1.11.0 ora: 5.4.1 @@ -6010,7 +6352,7 @@ packages: tsconfig-paths: 4.1.0 tsconfig-paths-webpack-plugin: 4.0.0 typescript: 4.8.4 - webpack: 5.74.0 + webpack: 5.74.0(esbuild@0.15.15) webpack-node-externals: 3.0.0 transitivePeerDependencies: - '@swc/core' @@ -6020,7 +6362,7 @@ packages: - webpack-cli dev: true - /@nestjs/common/9.2.1_whg6pvy6vwu66ypq7idiq2suxq: + /@nestjs/common@9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0): resolution: {integrity: sha512-nZuo3oDsSSlC5mti/M2aCWTEIfHPGDXmBwWgPeCpRbrNz3IWd109rkajll+yxgidVjznAdBS9y00JkAVJblNYw==} peerDependencies: cache-manager: <=5 @@ -6042,7 +6384,7 @@ packages: tslib: 2.4.1 uuid: 9.0.0 - /@nestjs/core/9.2.1_ajc4cvdydchgvxyi4xnoij5t4i: + /@nestjs/core@9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0): resolution: {integrity: sha512-a9GkXuu8uXgNgCVW+17iI8kLCltO+HwHpU2IhR+32JKnN2WEQ1YEWU4t3GJ2MNq44YkjIw9zrKvFkjJBlYrNbQ==} requiresBuild: true peerDependencies: @@ -6060,8 +6402,8 @@ packages: '@nestjs/websockets': optional: true dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/platform-express': 9.2.1_hjcqpoaebdr7gdo5hgc22hthbe + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/platform-express': 9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1) '@nuxtjs/opencollective': 0.3.2 fast-safe-stringify: 2.1.1 iterare: 1.2.1 @@ -6074,7 +6416,7 @@ packages: transitivePeerDependencies: - encoding - /@nestjs/graphql/10.1.6_2khsk5ahlt4vlkrgib4soffmwu: + /@nestjs/graphql@10.1.6(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(graphql@15.8.0)(reflect-metadata@0.1.13): resolution: {integrity: sha512-RiDTqyBqk+qolcMMKBANuG5zw0q0zbVmkwWydB2F1ObvUyl5t/GOAcR8mbq3gvpfYzylQ5t5/svWUDq/7dcpaQ==} peerDependencies: '@apollo/subgraph': ^0.1.5 || ^0.3.0 || ^0.4.0 || ^2.0.0 @@ -6089,21 +6431,21 @@ packages: ts-morph: optional: true dependencies: - '@graphql-tools/merge': 8.3.11_graphql@15.8.0 - '@graphql-tools/schema': 9.0.9_graphql@15.8.0 - '@graphql-tools/utils': 9.1.0_graphql@15.8.0 - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i - '@nestjs/mapped-types': 1.2.0_n3ccvzwmui2f6jwh4xeqysew6i + '@graphql-tools/merge': 8.3.11(graphql@15.8.0) + '@graphql-tools/schema': 9.0.9(graphql@15.8.0) + '@graphql-tools/utils': 9.1.0(graphql@15.8.0) + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/mapped-types': 1.2.0(@nestjs/common@9.2.1)(reflect-metadata@0.1.13) chokidar: 3.5.3 fast-glob: 3.2.12 graphql: 15.8.0 - graphql-tag: 2.12.6_graphql@15.8.0 - graphql-ws: 5.5.5_graphql@15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) + graphql-ws: 5.5.5(graphql@15.8.0) lodash: 4.17.21 normalize-path: 3.0.0 reflect-metadata: 0.1.13 - subscriptions-transport-ws: 0.11.0_graphql@15.8.0 + subscriptions-transport-ws: 0.11.0(graphql@15.8.0) tslib: 2.4.1 uuid: 9.0.0 ws: 8.11.0 @@ -6114,17 +6456,17 @@ packages: - utf-8-validate dev: false - /@nestjs/jwt/10.0.1_@nestjs+common@9.2.1: + /@nestjs/jwt@10.0.1(@nestjs/common@9.2.1): resolution: {integrity: sha512-LwXBKVYHnFeX6GH/Wt0WDjsWCmNDC6tEdLlwNMAvJgYp+TkiCpEmQLkgRpifdUE29mvYSbjSnVs2kW2ob935NA==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) '@types/jsonwebtoken': 8.5.9 jsonwebtoken: 9.0.0 dev: false - /@nestjs/mapped-types/1.2.0_n3ccvzwmui2f6jwh4xeqysew6i: + /@nestjs/mapped-types@1.2.0(@nestjs/common@9.2.1)(reflect-metadata@0.1.13): resolution: {integrity: sha512-NTFwPZkQWsArQH8QSyFWGZvJ08gR+R4TofglqZoihn/vU+ktHEJjMqsIsADwb7XD97DhiD+TVv5ac+jG33BHrg==} peerDependencies: '@nestjs/common': ^7.0.8 || ^8.0.0 || ^9.0.0 @@ -6137,28 +6479,28 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) reflect-metadata: 0.1.13 dev: false - /@nestjs/passport/9.0.0_6o47igfla2pj7yzh7agpvpttka: + /@nestjs/passport@9.0.0(@nestjs/common@9.2.1)(passport@0.6.0): resolution: {integrity: sha512-Gnh8n1wzFPOLSS/94X1sUP4IRAoXTgG4odl7/AO5h+uwscEGXxJFercrZfqdAwkWhqkKWbsntM3j5mRy/6ZQDA==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 passport: ^0.4.0 || ^0.5.0 || ^0.6.0 dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) passport: 0.6.0 dev: false - /@nestjs/platform-express/9.2.1_hjcqpoaebdr7gdo5hgc22hthbe: + /@nestjs/platform-express@9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1): resolution: {integrity: sha512-7PecaXt8lrdS1p6Vb1X/am3GGv+EO1VahyDzaEGOK6C0zwhc0VPfLtwihkjjfhS6BjpRIXXgviwEjONUvxVZnA==} peerDependencies: '@nestjs/common': ^9.0.0 '@nestjs/core': ^9.0.0 dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) body-parser: 1.20.1 cors: 2.8.5 express: 4.18.2 @@ -6167,13 +6509,13 @@ packages: transitivePeerDependencies: - supports-color - /@nestjs/schematics/9.0.3_ar2on76c45aosuucycxzxivxgm: + /@nestjs/schematics@9.0.3(chokidar@3.5.3)(typescript@4.8.4): resolution: {integrity: sha512-kZrU/lrpVd2cnK8I3ibDb3Wi1ppl3wX3U3lVWoL+DzRRoezWKkh8upEL4q0koKmuXnsmLiu3UPxFeMOrJV7TSA==} peerDependencies: typescript: ^4.3.5 dependencies: - '@angular-devkit/core': 14.2.1_chokidar@3.5.3 - '@angular-devkit/schematics': 14.2.1_chokidar@3.5.3 + '@angular-devkit/core': 14.2.1(chokidar@3.5.3) + '@angular-devkit/schematics': 14.2.1(chokidar@3.5.3) fs-extra: 10.1.0 jsonc-parser: 3.2.0 pluralize: 8.0.0 @@ -6182,22 +6524,7 @@ packages: - chokidar dev: true - /@nestjs/schematics/9.0.3_typescript@4.9.3: - resolution: {integrity: sha512-kZrU/lrpVd2cnK8I3ibDb3Wi1ppl3wX3U3lVWoL+DzRRoezWKkh8upEL4q0koKmuXnsmLiu3UPxFeMOrJV7TSA==} - peerDependencies: - typescript: ^4.3.5 - dependencies: - '@angular-devkit/core': 14.2.1 - '@angular-devkit/schematics': 14.2.1 - fs-extra: 10.1.0 - jsonc-parser: 3.2.0 - pluralize: 8.0.0 - typescript: 4.9.3 - transitivePeerDependencies: - - chokidar - dev: true - - /@nestjs/testing/9.2.1_wdbvfsxfdwzlwdfiyh2gynjl4m: + /@nestjs/testing@9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(@nestjs/platform-express@9.2.1): resolution: {integrity: sha512-lemXZdRSuqoZ87l0orCrS/c7gqwxeduIFOd21g9g2RUeQ4qlWPegbQDKASzbfC28klPyrgJLW4MNq7uv2JwV8w==} peerDependencies: '@nestjs/common': ^9.0.0 @@ -6210,44 +6537,44 @@ packages: '@nestjs/platform-express': optional: true dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i - '@nestjs/platform-express': 9.2.1_hjcqpoaebdr7gdo5hgc22hthbe + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/platform-express': 9.2.1(@nestjs/common@9.2.1)(@nestjs/core@9.2.1) tslib: 2.4.1 dev: true - /@nestjs/throttler/4.0.0_dntc3uqqknzoduyjojusds5kla: + /@nestjs/throttler@4.0.0(@nestjs/common@9.2.1)(@nestjs/core@9.2.1)(reflect-metadata@0.1.13): resolution: {integrity: sha512-2T2S/hFhxROa/PZRZhHWFkrukxg3T8Db32Y04m6U6j6N2XqFGSKXhjfIbORO8kk/S2jswa9oTX/K12E120tgaQ==} peerDependencies: '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 '@nestjs/core': ^7.0.0 || ^8.0.0 || ^9.0.0 reflect-metadata: ^0.1.13 dependencies: - '@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq - '@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i + '@nestjs/common': 9.2.1(reflect-metadata@0.1.13)(rxjs@7.6.0) + '@nestjs/core': 9.2.1(@nestjs/common@9.2.1)(@nestjs/platform-express@9.2.1)(reflect-metadata@0.1.13)(rxjs@7.6.0) md5: 2.3.0 reflect-metadata: 0.1.13 dev: false - /@nodelib/fs.scandir/2.1.5: + /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 - /@nodelib/fs.stat/2.0.5: + /@nodelib/fs.stat@2.0.5: resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} engines: {node: '>= 8'} - /@nodelib/fs.walk/1.2.8: + /@nodelib/fs.walk@1.2.8: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.13.0 - /@nuxtjs/opencollective/0.3.2: + /@nuxtjs/opencollective@0.3.2: resolution: {integrity: sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==} engines: {node: '>=8.0.0', npm: '>=5.0.0'} hasBin: true @@ -6258,7 +6585,7 @@ packages: transitivePeerDependencies: - encoding - /@peculiar/asn1-schema/2.3.3: + /@peculiar/asn1-schema@2.3.3: resolution: {integrity: sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==} dependencies: asn1js: 3.0.5 @@ -6266,14 +6593,14 @@ packages: tslib: 2.5.0 dev: true - /@peculiar/json-schema/1.1.12: + /@peculiar/json-schema@1.1.12: resolution: {integrity: sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==} engines: {node: '>=8.0.0'} dependencies: tslib: 2.5.0 dev: true - /@peculiar/webcrypto/1.4.1: + /@peculiar/webcrypto@1.4.1: resolution: {integrity: sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==} engines: {node: '>=10.12.0'} dependencies: @@ -6284,19 +6611,19 @@ packages: webcrypto-core: 1.7.6 dev: true - /@phc/format/1.0.0: + /@phc/format@1.0.0: resolution: {integrity: sha512-m7X9U6BG2+J+R1lSOdCiITLLrxm+cWlNI3HUFA92oLO77ObGNzaKdh8pMLqdZcshtkKuV84olNNXDfMc4FezBQ==} engines: {node: '>=10'} - /@polka/url/1.0.0-next.21: + /@polka/url@1.0.0-next.21: resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} dev: true - /@popperjs/core/2.11.5: + /@popperjs/core@2.11.5: resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==} dev: false - /@prisma/client/4.8.1_prisma@4.8.1: + /@prisma/client@4.8.1(prisma@4.8.1): resolution: {integrity: sha512-d4xhZhETmeXK/yZ7K0KcVOzEfI5YKGGEr4F5SBV04/MU4ncN/HcE28sy3e4Yt8UFW0ZuImKFQJE+9rWt9WbGSQ==} engines: {node: '>=14.17'} requiresBuild: true @@ -6310,59 +6637,59 @@ packages: prisma: 4.8.1 dev: false - /@prisma/engines-version/4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe: + /@prisma/engines-version@4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe: resolution: {integrity: sha512-MHSOSexomRMom8QN4t7bu87wPPD+pa+hW9+71JnVcF3DqyyO/ycCLhRL1we3EojRpZxKvuyGho2REQsMCvxcJw==} dev: false - /@prisma/engines/4.8.1: + /@prisma/engines@4.8.1: resolution: {integrity: sha512-93tctjNXcIS+i/e552IO6tqw17sX8liivv8WX9lDMCpEEe3ci+nT9F+1oHtAafqruXLepKF80i/D20Mm+ESlOw==} requiresBuild: true dev: false - /@protobufjs/aspromise/1.1.2: + /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} dev: false - /@protobufjs/base64/1.1.2: + /@protobufjs/base64@1.1.2: resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} dev: false - /@protobufjs/codegen/2.0.4: + /@protobufjs/codegen@2.0.4: resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} dev: false - /@protobufjs/eventemitter/1.1.0: + /@protobufjs/eventemitter@1.1.0: resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} dev: false - /@protobufjs/fetch/1.1.0: + /@protobufjs/fetch@1.1.0: resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/inquire': 1.1.0 dev: false - /@protobufjs/float/1.0.2: + /@protobufjs/float@1.0.2: resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} dev: false - /@protobufjs/inquire/1.1.0: + /@protobufjs/inquire@1.1.0: resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} dev: false - /@protobufjs/path/1.1.2: + /@protobufjs/path@1.1.2: resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} dev: false - /@protobufjs/pool/1.1.0: + /@protobufjs/pool@1.1.0: resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} dev: false - /@protobufjs/utf8/1.1.0: + /@protobufjs/utf8@1.1.0: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@relmify/jest-fp-ts/2.0.2_fp-ts@2.12.1+io-ts@2.2.16: + /@relmify/jest-fp-ts@2.0.2(fp-ts@2.12.1)(io-ts@2.2.16): resolution: {integrity: sha512-qhQOfn9q5YsylD9qNCiizrA8w/i3A015hDk3P46fYPe48yLSB6BJaBImSvECUY9nCjeiEp4YP2sPopNyqDYwjw==} peerDependencies: fp-ts: 2.x @@ -6371,12 +6698,12 @@ packages: '@jest/expect-utils': 28.1.1 expect: 28.1.1 fp-ts: 2.12.1 - io-ts: 2.2.16_fp-ts@2.12.1 + io-ts: 2.2.16(fp-ts@2.12.1) jest-get-type: 28.0.2 jest-matcher-utils: 28.1.1 dev: true - /@relmify/jest-fp-ts/2.0.2_fp-ts@2.13.1+io-ts@2.2.16: + /@relmify/jest-fp-ts@2.0.2(fp-ts@2.13.1)(io-ts@2.2.16): resolution: {integrity: sha512-qhQOfn9q5YsylD9qNCiizrA8w/i3A015hDk3P46fYPe48yLSB6BJaBImSvECUY9nCjeiEp4YP2sPopNyqDYwjw==} peerDependencies: fp-ts: 2.x @@ -6385,16 +6712,16 @@ packages: '@jest/expect-utils': 28.1.1 expect: 28.1.1 fp-ts: 2.13.1 - io-ts: 2.2.16_fp-ts@2.13.1 + io-ts: 2.2.16(fp-ts@2.13.1) jest-get-type: 28.0.2 jest-matcher-utils: 28.1.1 dev: true - /@repeaterjs/repeater/3.0.4: + /@repeaterjs/repeater@3.0.4: resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==} dev: true - /@rollup/plugin-babel/5.3.1_p5rdeczgubbtv4lfg2mcoxxnwm: + /@rollup/plugin-babel@5.3.1(@babel/core@7.18.6)(rollup@2.79.1): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -6407,57 +6734,47 @@ packages: dependencies: '@babel/core': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 dev: true - /@rollup/plugin-inject/4.0.4: + /@rollup/plugin-inject@4.0.4(rollup@2.79.1): resolution: {integrity: sha512-4pbcU4J/nS+zuHk+c+OL3WtmEQhqxlZ9uqfjQMQDOHOPld7PsCd8k5LWs8h5wjwJN7MgnAn768F2sDxEP4eNFQ==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) estree-walker: 2.0.2 magic-string: 0.25.9 + rollup: 2.79.1 dev: true - /@rollup/plugin-node-resolve/11.2.1_rollup@2.79.1: + /@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1): resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) '@types/resolve': 1.17.1 builtin-modules: 3.3.0 - deepmerge: 4.2.2 + deepmerge: 4.3.0 is-module: 1.0.0 resolve: 1.22.1 rollup: 2.79.1 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.79.1: + /@rollup/plugin-replace@2.4.2(rollup@2.79.1): resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.79.1 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) magic-string: 0.25.9 rollup: 2.79.1 dev: true - /@rollup/pluginutils/3.1.0: - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} - engines: {node: '>= 8.0.0'} - peerDependencies: - rollup: ^1.20.0||^2.0.0 - dependencies: - '@types/estree': 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - dev: true - - /@rollup/pluginutils/3.1.0_rollup@2.79.1: + /@rollup/pluginutils@3.1.0(rollup@2.79.1): resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -6469,14 +6786,14 @@ packages: rollup: 2.79.1 dev: true - /@rollup/pluginutils/4.2.1: + /@rollup/pluginutils@4.2.1: resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} engines: {node: '>= 8.0.0'} dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 - /@rollup/pluginutils/5.0.2: + /@rollup/pluginutils@5.0.2(rollup@2.79.1): resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -6488,13 +6805,14 @@ packages: '@types/estree': 1.0.0 estree-walker: 2.0.2 picomatch: 2.3.1 + rollup: 2.79.1 dev: true - /@rushstack/eslint-patch/1.1.4: + /@rushstack/eslint-patch@1.1.4: resolution: {integrity: sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==} dev: true - /@rushstack/node-core-library/3.55.2: + /@rushstack/node-core-library@3.55.2(@types/node@17.0.45): resolution: {integrity: sha512-SaLe/x/Q/uBVdNFK5V1xXvsVps0y7h1sN7aSJllQyFbugyOaxhNRF25bwEDnicARNEjJw0pk0lYnJQ9Kr6ev0A==} peerDependencies: '@types/node': '*' @@ -6502,6 +6820,7 @@ packages: '@types/node': optional: true dependencies: + '@types/node': 17.0.45 colors: 1.2.5 fs-extra: 7.0.1 import-lazy: 4.0.0 @@ -6511,14 +6830,14 @@ packages: z-schema: 5.0.5 dev: true - /@rushstack/rig-package/0.3.18: + /@rushstack/rig-package@0.3.18: resolution: {integrity: sha512-SGEwNTwNq9bI3pkdd01yCaH+gAsHqs0uxfGvtw9b0LJXH52qooWXnrFTRRLG1aL9pf+M2CARdrA9HLHJys3jiQ==} dependencies: resolve: 1.22.1 strip-json-comments: 3.1.1 dev: true - /@rushstack/ts-command-line/4.13.2: + /@rushstack/ts-command-line@4.13.2: resolution: {integrity: sha512-bCU8qoL9HyWiciltfzg7GqdfODUeda/JpI0602kbN5YH22rzTxyqYvv7aRLENCM7XCQ1VRs7nMkEqgJUOU8Sag==} dependencies: '@types/argparse': 1.0.38 @@ -6527,14 +6846,14 @@ packages: string-argv: 0.3.1 dev: true - /@selderee/plugin-htmlparser2/0.10.0: + /@selderee/plugin-htmlparser2@0.10.0: resolution: {integrity: sha512-gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA==} dependencies: domhandler: 5.0.3 selderee: 0.10.0 dev: false - /@sentry/browser/7.13.0: + /@sentry/browser@7.13.0: resolution: {integrity: sha512-WbgClHPYe8TKsdVVbuzd6alxwh3maFQNuljMkSTnYvPx2P+NT0wHljTs37D39FGfSmAwaqn7D/1ZHAtC+6mWxA==} engines: {node: '>=8'} dependencies: @@ -6544,7 +6863,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/core/7.13.0: + /@sentry/core@7.13.0: resolution: {integrity: sha512-hB46fklmKrSDMEvZOF8qBHhys7PONBFyxQtbNDZUlv/kabs4gF3VEg1ftCaXnjx4lLNlsUl/ScFdM6194RvISg==} engines: {node: '>=8'} dependencies: @@ -6554,7 +6873,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/hub/7.13.0: + /@sentry/hub@7.13.0: resolution: {integrity: sha512-88/GsD1BoyrBwRKJCmVHZtSH5rizOsImUHWEXc1AOa1aR8nanfn56JdAbd6tC55pA+nT4R4H4vN/PrUaomTbtg==} engines: {node: '>=8'} dependencies: @@ -6563,7 +6882,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/tracing/7.13.0: + /@sentry/tracing@7.13.0: resolution: {integrity: sha512-/MKSd25rGv6Pc0FPBLXJifkfvSaYVPA8XUOLzVeDN0gl07h8AXli4qG9amTh/4Wb5h4dFpbcscOvW2VC+pxkIA==} engines: {node: '>=8'} dependencies: @@ -6573,12 +6892,12 @@ packages: tslib: 1.14.1 dev: false - /@sentry/types/7.13.0: + /@sentry/types@7.13.0: resolution: {integrity: sha512-ttckM1XaeyHRLMdr79wmGA5PFbTGx2jio9DCD/mkEpSfk6OGfqfC7gpwy7BNstDH/VKyQj/lDCJPnwvWqARMoQ==} engines: {node: '>=8'} dev: false - /@sentry/utils/7.13.0: + /@sentry/utils@7.13.0: resolution: {integrity: sha512-jnR85LgRLSk7IQe2OhKOPMY4fasJCNQNW0iCXsH+S2R1qnsF+N4ksNkQ+7JyyM9E7F03YpI2qd76bKY0VIn5iA==} engines: {node: '>=8'} dependencies: @@ -6586,7 +6905,7 @@ packages: tslib: 1.14.1 dev: false - /@sentry/vue/7.13.0_vue@3.2.37: + /@sentry/vue@7.13.0(vue@3.2.37): resolution: {integrity: sha512-+OP0h4hE8Gz8xwN3rcHrbQpqhNQGQJoM8f7cOPw7TU7TCXj4apMsR4o5xPVlvSZl3TG0J9SBUPrZdd0Va9gptw==} engines: {node: '>=8'} peerDependencies: @@ -6600,173 +6919,160 @@ packages: vue: 3.2.37 dev: false - /@sinclair/typebox/0.23.5: + /@sinclair/typebox@0.23.5: resolution: {integrity: sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==} dev: true - /@sinclair/typebox/0.24.51: + /@sinclair/typebox@0.24.51: resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} dev: true - /@sinclair/typebox/0.25.21: + /@sinclair/typebox@0.25.21: resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==} dev: true - /@sinonjs/commons/1.8.3: + /@sinonjs/commons@1.8.3: resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==} dependencies: type-detect: 4.0.8 dev: true - /@sinonjs/commons/2.0.0: + /@sinonjs/commons@2.0.0: resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==} dependencies: type-detect: 4.0.8 dev: true - /@sinonjs/fake-timers/10.0.2: + /@sinonjs/fake-timers@10.0.2: resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==} dependencies: '@sinonjs/commons': 2.0.0 dev: true - /@sinonjs/fake-timers/8.1.0: + /@sinonjs/fake-timers@8.1.0: resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} dependencies: '@sinonjs/commons': 1.8.3 dev: true - /@socket.io/component-emitter/3.1.0: + /@socket.io/component-emitter@3.1.0: resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==} dev: false - /@surma/rollup-plugin-off-main-thread/2.2.3: + /@surma/rollup-plugin-off-main-thread@2.2.3: resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} dependencies: ejs: 3.1.8 - json5: 2.2.1 + json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.7 dev: true - /@swc/core-android-arm-eabi/1.2.213: + /@swc/core-android-arm-eabi@1.2.213: resolution: {integrity: sha512-ZxMQf21E5Vvcd40TJH8x9GqXDbn5DLU3EI9cRgnhJTzC4LEk4YPYw2bO9jaqmYzWIosWyquenNkomuVD+PNHCA==} engines: {node: '>=10'} cpu: [arm] os: [android] requiresBuild: true - dev: true optional: true - /@swc/core-android-arm64/1.2.213: + /@swc/core-android-arm64@1.2.213: resolution: {integrity: sha512-TIWJfxr669G4odbmZwKcaxy6TnenTL2Lux6G+nBmFsCJtGxgLWoH8fm3A7Yc+C2VG+bvlnP1FQsh2flnpehlUA==} engines: {node: '>=10'} cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true - /@swc/core-darwin-arm64/1.2.213: + /@swc/core-darwin-arm64@1.2.213: resolution: {integrity: sha512-vTEZcL69S8dXcnqtGKomHUFIMpgbTH8ImnYTS48x8h79FuAhWor5t/G+lISXlaTxmteEf1RWDOeUPXNCefN6mQ==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] requiresBuild: true - dev: true optional: true - /@swc/core-darwin-x64/1.2.213: + /@swc/core-darwin-x64@1.2.213: resolution: {integrity: sha512-nkgm9QM7J9IajKYqHXCN4V1pjkxga+e0SX4r28zHFt3O+sR55QVXrf0GI+MvSCvtmMXqr5+R/gifqxO72OGqXw==} engines: {node: '>=10'} cpu: [x64] os: [darwin] requiresBuild: true - dev: true optional: true - /@swc/core-freebsd-x64/1.2.213: + /@swc/core-freebsd-x64@1.2.213: resolution: {integrity: sha512-4Jyb6fWtfjBK/AMmmA46jp2y6ObsnE5CpCwJs1MKLZhi4Tj+EayM7ZVNzlw14tDDEhH1h8fss8mAsxDOEXCz5g==} engines: {node: '>=10'} cpu: [x64] os: [freebsd] requiresBuild: true - dev: true optional: true - /@swc/core-linux-arm-gnueabihf/1.2.213: + /@swc/core-linux-arm-gnueabihf@1.2.213: resolution: {integrity: sha512-vB++qSrgPmnPJt+X5hDXy3rsfv/s5Wi5sbN+iurz05A+ay3Hd1d3HMFEGVkpwZIoCNHq8x5JO2NqgkFqXZ7+7A==} engines: {node: '>=10'} cpu: [arm] os: [linux] requiresBuild: true - dev: true optional: true - /@swc/core-linux-arm64-gnu/1.2.213: + /@swc/core-linux-arm64-gnu@1.2.213: resolution: {integrity: sha512-ffjbXQc4N5OIfuscE+c84Ped8Zi/CWjYo0ZLM/m1wHYNjrP3oWVY6i7GDKUP2GFWGBXRmbqWicseNxy9NUhadg==} engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true - /@swc/core-linux-arm64-musl/1.2.213: + /@swc/core-linux-arm64-musl@1.2.213: resolution: {integrity: sha512-S5bHS8Bn9QRvfdMHL6Rd76V0giQDsd+Z6khRjz8AN9+kTaQz6bFOwxbwkEMQyRyaTX83RTQeOgDJy9EBI9d4xQ==} engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true - /@swc/core-linux-x64-gnu/1.2.213: + /@swc/core-linux-x64-gnu@1.2.213: resolution: {integrity: sha512-E9Nq/PzGLeO7jMkhLu3auj+heI6Wg8dpdnWKzF0Fn6H7N86NDoSWdaC7ZfktiJTsqatdj7x359X3i57pm99LLw==} engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true - /@swc/core-linux-x64-musl/1.2.213: + /@swc/core-linux-x64-musl@1.2.213: resolution: {integrity: sha512-vHUFx48ezU02biB7MhT53MN7gDnDeA573kQCahElh8pUQOEYAVMsXKWjFsdA+bLe4eXpCntTqrRoYbikaVQNCQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true - /@swc/core-win32-arm64-msvc/1.2.213: + /@swc/core-win32-arm64-msvc@1.2.213: resolution: {integrity: sha512-R+h0JNzTKi/IpjQUN5ERnYCmYwxF/moiXREqAkog5z6ymxn3wkMlNjwJ2Y4HKcD2lMZYq6JoWBXG6RKx+wVYcQ==} engines: {node: '>=10'} cpu: [arm64] os: [win32] requiresBuild: true - dev: true optional: true - /@swc/core-win32-ia32-msvc/1.2.213: + /@swc/core-win32-ia32-msvc@1.2.213: resolution: {integrity: sha512-SDktv1cRHaRJRKSKx2sqgJp9c6anErnvYwWwSEQYaG0BQ4POABOWLIDf1DdNZVE/n4+8ANoP40DVG4ZdIvbTuw==} engines: {node: '>=10'} cpu: [ia32] os: [win32] requiresBuild: true - dev: true optional: true - /@swc/core-win32-x64-msvc/1.2.213: + /@swc/core-win32-x64-msvc@1.2.213: resolution: {integrity: sha512-VXLyIl6Fo/OOryxD4kESX6WgQugK3C25mTcHAmWNkAgflOqoL9ILWmToxMrpTPAoso+w5U6xsdvCzhlJ4xR9Cg==} engines: {node: '>=10'} cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true - /@swc/core/1.2.213: + /@swc/core@1.2.213: resolution: {integrity: sha512-nK168bJB6VaYicBC2M/UTSODo3u+k+Y9IgbSVsxV+y8t/ZDODa5MazXEiGhFuWj8fCLR1lhsLXVpZHV6ICfc4w==} engines: {node: '>=10'} hasBin: true @@ -6784,18 +7090,17 @@ packages: '@swc/core-win32-arm64-msvc': 1.2.213 '@swc/core-win32-ia32-msvc': 1.2.213 '@swc/core-win32-x64-msvc': 1.2.213 - dev: true - /@tootallnate/once/1.1.2: + /@tootallnate/once@1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} - /@tootallnate/once/2.0.0: + /@tootallnate/once@2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} dev: true - /@ts-morph/common/0.18.1: + /@ts-morph/common@0.18.1: resolution: {integrity: sha512-RVE+zSRICWRsfrkAw5qCAK+4ZH9kwEFv5h0+/YeHTLieWP7F4wWq4JsKFuNWG+fYh/KF+8rAtgdj5zb2mm+DVA==} dependencies: fast-glob: 3.2.12 @@ -6804,25 +7109,25 @@ packages: path-browserify: 1.0.1 dev: true - /@tsconfig/node10/1.0.9: + /@tsconfig/node10@1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} - /@tsconfig/node12/1.0.11: + /@tsconfig/node12@1.0.11: resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - /@tsconfig/node14/1.0.3: + /@tsconfig/node14@1.0.3: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - /@tsconfig/node16/1.0.3: + /@tsconfig/node16@1.0.3: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} - /@types/accepts/1.3.5: + /@types/accepts@1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: '@types/node': 18.11.10 dev: false - /@types/argon2/0.15.0: + /@types/argon2@0.15.0: resolution: {integrity: sha512-AKQ8LR6bgmNHF7vhIQjD4EEbxITc1+1sTS9OKvkT5SaTfKw9OhFFExriod+H92biWIm23k7UT5VcF5ja9D+FIg==} deprecated: This is a stub types definition for Argon2 (https://github.com/ranisalt/node-argon2). Argon2 provides its own type definitions, so you don't need @types/argon2 installed! dependencies: @@ -6832,11 +7137,11 @@ packages: - supports-color dev: true - /@types/argparse/1.0.38: + /@types/argparse@1.0.38: resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} dev: true - /@types/axios/0.14.0: + /@types/axios@0.14.0: resolution: {integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==} deprecated: This is a stub types definition for axios (https://github.com/mzabriskie/axios). axios provides its own type definitions, so you don't need @types/axios installed! dependencies: @@ -6845,7 +7150,7 @@ packages: - debug dev: true - /@types/babel__core/7.1.19: + /@types/babel__core@7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: '@babel/parser': 7.18.6 @@ -6855,138 +7160,137 @@ packages: '@types/babel__traverse': 7.17.1 dev: true - /@types/babel__generator/7.6.4: + /@types/babel__generator@7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: '@babel/types': 7.18.7 dev: true - /@types/babel__template/7.4.1: + /@types/babel__template@7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.18.6 '@babel/types': 7.18.7 dev: true - /@types/babel__traverse/7.17.1: + /@types/babel__traverse@7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: '@babel/types': 7.18.7 dev: true - /@types/bcrypt/5.0.0: + /@types/bcrypt@5.0.0: resolution: {integrity: sha512-agtcFKaruL8TmcvqbndlqHPSJgsolhf/qPWchFlgnW1gECTN/nKbFcoFnvKAQRFfKbh+BO6A3SWdJu9t+xF3Lw==} dependencies: '@types/node': 18.11.10 dev: true - /@types/body-parser/1.19.2: + /@types/body-parser@1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 '@types/node': 18.11.10 - /@types/chai-subset/1.3.3: + /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: '@types/chai': 4.3.4 dev: true - /@types/chai/4.3.4: + /@types/chai@4.3.4: resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} dev: true - /@types/chalk/2.2.0: + /@types/chalk@2.2.0: resolution: {integrity: sha512-1zzPV9FDe1I/WHhRkf9SNgqtRJWZqrBWgu7JGveuHmmyR9CnAPCie2N/x+iHrgnpYBIcCJWHBoMRv2TRWktsvw==} deprecated: This is a stub types definition for chalk (https://github.com/chalk/chalk). chalk provides its own type definitions, so you don't need @types/chalk installed! dependencies: chalk: 4.1.2 dev: true - /@types/commander/2.12.2: + /@types/commander@2.12.2: resolution: {integrity: sha512-0QEFiR8ljcHp9bAbWxecjVRuAMr16ivPiGOw6KFQBVrVd0RQIcM3xKdRisH2EDWgVWujiYtHwhSkSUoAAGzH7Q==} deprecated: This is a stub types definition for commander (https://github.com/tj/commander.js). commander provides its own type definitions, so you don't need @types/commander installed! dependencies: commander: 8.3.0 dev: true - /@types/component-emitter/1.2.11: + /@types/component-emitter@1.2.11: resolution: {integrity: sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==} dev: false - /@types/connect/3.4.35: + /@types/connect@3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: '@types/node': 18.11.10 - /@types/cookie-parser/1.4.3: + /@types/cookie-parser@1.4.3: resolution: {integrity: sha512-CqSKwFwefj4PzZ5n/iwad/bow2hTCh0FlNAeWLtQM3JA/NX/iYagIpWG2cf1bQKQ2c9gU2log5VUCrn7LDOs0w==} dependencies: '@types/express': 4.17.14 dev: true - /@types/cookie/0.5.1: + /@types/cookie@0.5.1: resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} dev: true - /@types/cookiejar/2.1.2: + /@types/cookiejar@2.1.2: resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==} dev: true - /@types/cors/2.8.12: + /@types/cors@2.8.12: resolution: {integrity: sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw==} dev: false - /@types/cors/2.8.13: + /@types/cors@2.8.13: resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} dependencies: '@types/node': 18.11.10 dev: false - /@types/debug/4.1.7: + /@types/debug@4.1.7: resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} dependencies: '@types/ms': 0.7.31 dev: true - /@types/ejs/3.1.2: + /@types/ejs@3.1.2: resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==} requiresBuild: true dev: false optional: true - /@types/eslint-scope/3.7.4: + /@types/eslint-scope@3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.4.10 '@types/estree': 0.0.51 - dev: true - /@types/eslint/8.4.10: + /@types/eslint@8.4.10: resolution: {integrity: sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.9 - /@types/estree/0.0.39: + /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree/0.0.51: + /@types/estree@0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - /@types/estree/1.0.0: + /@types/estree@1.0.0: resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} dev: true - /@types/express-serve-static-core/4.17.31: + /@types/express-serve-static-core@4.17.31: resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} dependencies: '@types/node': 18.11.10 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 - /@types/express/4.17.14: + /@types/express@4.17.14: resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==} dependencies: '@types/body-parser': 1.19.2 @@ -6994,7 +7298,7 @@ packages: '@types/qs': 6.9.7 '@types/serve-static': 1.15.0 - /@types/express/4.17.16: + /@types/express@4.17.16: resolution: {integrity: sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==} dependencies: '@types/body-parser': 1.19.2 @@ -7003,168 +7307,168 @@ packages: '@types/serve-static': 1.15.0 dev: false - /@types/flexsearch/0.7.3: + /@types/flexsearch@0.7.3: resolution: {integrity: sha512-HXwADeHEP4exXkCIwy2n1+i0f1ilP1ETQOH5KDOugjkTFZPntWo0Gr8stZOaebkxsdx+k0X/K6obU/+it07ocg==} dev: true - /@types/fs-extra/9.0.13: + /@types/fs-extra@9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: '@types/node': 18.11.10 dev: true - /@types/graceful-fs/4.1.5: + /@types/graceful-fs@4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: '@types/node': 18.11.10 dev: true - /@types/istanbul-lib-coverage/2.0.4: + /@types/istanbul-lib-coverage@2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} dev: true - /@types/istanbul-lib-report/3.0.0: + /@types/istanbul-lib-report@3.0.0: resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} dependencies: '@types/istanbul-lib-coverage': 2.0.4 dev: true - /@types/istanbul-reports/3.0.1: + /@types/istanbul-reports@3.0.1: resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} dependencies: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.5.2: + /@types/jest@27.5.2: resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 dev: true - /@types/jest/29.4.0: + /@types/jest@29.4.0: resolution: {integrity: sha512-VaywcGQ9tPorCX/Jkkni7RWGFfI11whqzs8dvxF41P17Z+z872thvEvlIbznjPJ02kl1HMX3LmLOonsj2n7HeQ==} dependencies: expect: 29.3.1 pretty-format: 29.3.1 dev: true - /@types/js-yaml/4.0.5: + /@types/js-yaml@4.0.5: resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} dev: true - /@types/json-schema/7.0.9: + /@types/json-schema@7.0.9: resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} - /@types/json-stable-stringify/1.0.34: + /@types/json-stable-stringify@1.0.34: resolution: {integrity: sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==} dev: true - /@types/jsonwebtoken/8.5.9: + /@types/jsonwebtoken@8.5.9: resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} dependencies: '@types/node': 18.11.10 - /@types/jsonwebtoken/9.0.1: + /@types/jsonwebtoken@9.0.1: resolution: {integrity: sha512-c5ltxazpWabia/4UzhIoaDcIza4KViOQhdbjRlfcIGVnsE3c3brkz9Z+F/EeJIECOQP7W7US2hNE930cWWkPiw==} dependencies: '@types/node': 18.11.10 dev: true - /@types/linkify-it/3.0.2: + /@types/linkify-it@3.0.2: resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==} dev: true - /@types/lodash-es/4.17.6: + /@types/lodash-es@4.17.6: resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==} dependencies: '@types/lodash': 4.14.182 dev: true - /@types/lodash/4.14.182: + /@types/lodash@4.14.182: resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==} dev: true - /@types/long/4.0.2: + /@types/long@4.0.2: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} dev: false - /@types/lossless-json/1.0.1: + /@types/lossless-json@1.0.1: resolution: {integrity: sha512-zPE8kmpeL5/6L5gtTQHSOkAW/OSYYNTDRt6/2oEgLO1Zd3Rj5WVDoMloTtLJxQJhZGLGbL4pktKSh3NbzdaWdw==} dev: true - /@types/luxon/3.2.0: + /@types/luxon@3.2.0: resolution: {integrity: sha512-lGmaGFoaXHuOLXFvuju2bfvZRqxAqkHPx9Y9IQdQABrinJJshJwfNCKV+u7rR3kJbiqfTF/NhOkcxxAFrObyaA==} dev: true - /@types/markdown-it/12.2.3: + /@types/markdown-it@12.2.3: resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==} dependencies: '@types/linkify-it': 3.0.2 '@types/mdurl': 1.0.2 dev: true - /@types/mdurl/1.0.2: + /@types/mdurl@1.0.2: resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} dev: true - /@types/mime/3.0.1: + /@types/mime@3.0.1: resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} - /@types/minimist/1.2.2: + /@types/minimist@1.2.2: resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} dev: true - /@types/ms/0.7.31: + /@types/ms@0.7.31: resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} dev: true - /@types/node/10.17.60: + /@types/node@10.17.60: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: false - /@types/node/16.11.43: + /@types/node@16.11.43: resolution: {integrity: sha512-GqWykok+3uocgfAJM8imbozrqLnPyTrpFlrryURQlw1EesPUCx5XxTiucWDSFF9/NUEXDuD4bnvHm8xfVGWTpQ==} dev: true - /@types/node/17.0.45: + /@types/node@17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - /@types/node/18.11.10: + /@types/node@18.11.10: resolution: {integrity: sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==} - /@types/nodemailer/6.4.7: + /@types/nodemailer@6.4.7: resolution: {integrity: sha512-f5qCBGAn/f0qtRcd4SEn88c8Fp3Swct1731X4ryPKqS61/A3LmmzN8zaEz7hneJvpjFbUUgY7lru/B/7ODTazg==} dependencies: '@types/node': 18.11.10 dev: true - /@types/normalize-package-data/2.4.1: + /@types/normalize-package-data@2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} dev: true - /@types/nprogress/0.2.0: + /@types/nprogress@0.2.0: resolution: {integrity: sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A==} dev: true - /@types/oauth/0.9.1: + /@types/oauth@0.9.1: resolution: {integrity: sha512-a1iY62/a3yhZ7qH7cNUsxoI3U/0Fe9+RnuFrpTKr+0WVOzbKlSLojShCKe20aOD1Sppv+i8Zlq0pLDuTJnwS4A==} dependencies: '@types/node': 18.11.10 dev: true - /@types/object-path/0.11.1: + /@types/object-path@0.11.1: resolution: {integrity: sha512-219LSCO9HPcoXcRTC6DbCs0FRhZgBnEMzf16RRqkT40WbkKx3mOeQuz3e2XqbfhOz/AHfbru0kzB1n1RCAsIIg==} dev: true - /@types/paho-mqtt/1.0.6: + /@types/paho-mqtt@1.0.6: resolution: {integrity: sha512-d6CXsdv2fEruyZLe5DUtgGsF8ROp0358OrEmVgqtFxO/kiCvP9KhYen9N6ReKBkMdR/d0parLQq6DMn2qe6d9Q==} dev: true - /@types/parse-json/4.0.0: + /@types/parse-json@4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - /@types/passport-github2/1.2.5: + /@types/passport-github2@1.2.5: resolution: {integrity: sha512-+WLyrd8JPsCxroK34EjegR0j3FMxp6wqB9cw/sRCFkWT9qic1dymAn021gr336EpyjzdhjUd2KKrqyxvdFSvOA==} dependencies: '@types/express': 4.17.14 @@ -7172,7 +7476,7 @@ packages: '@types/passport-oauth2': 1.4.11 dev: true - /@types/passport-google-oauth20/2.0.11: + /@types/passport-google-oauth20@2.0.11: resolution: {integrity: sha512-9XMT1GfwhZL7UQEiCepLef55RNPHkbrCtsU7rsWPTEOsmu5qVIW8nSemtB4p+P24CuOhA+IKkv8LsPThYghGww==} dependencies: '@types/express': 4.17.14 @@ -7180,7 +7484,7 @@ packages: '@types/passport-oauth2': 1.4.11 dev: true - /@types/passport-jwt/3.0.8: + /@types/passport-jwt@3.0.8: resolution: {integrity: sha512-VKJZDJUAHFhPHHYvxdqFcc5vlDht8Q2pL1/ePvKAgqRThDaCc84lSYOTQmnx3+JIkDlN+2KfhFhXIzlcVT+Pcw==} dependencies: '@types/express': 4.17.14 @@ -7188,13 +7492,13 @@ packages: '@types/passport-strategy': 0.2.35 dev: true - /@types/passport-microsoft/0.0.0: + /@types/passport-microsoft@0.0.0: resolution: {integrity: sha512-jfkltRosn+P/+RoFMTl+mCyBTgPTFhjDEF832j7fmlYpuf+5yuzPLz7Rm5XMKN/Gqpro6myCyGPTuCc4yBQ2jQ==} dependencies: '@types/passport-oauth2': 1.4.11 dev: true - /@types/passport-oauth2/1.4.11: + /@types/passport-oauth2@1.4.11: resolution: {integrity: sha512-KUNwmGhe/3xPbjkzkPwwcPmyFwfyiSgtV1qOrPBLaU4i4q9GSCdAOyCbkFG0gUxAyEmYwqo9OAF/rjPjJ6ImdA==} dependencies: '@types/express': 4.17.14 @@ -7202,133 +7506,133 @@ packages: '@types/passport': 1.0.11 dev: true - /@types/passport-strategy/0.2.35: + /@types/passport-strategy@0.2.35: resolution: {integrity: sha512-o5D19Jy2XPFoX2rKApykY15et3Apgax00RRLf0RUotPDUsYrQa7x4howLYr9El2mlUApHmCMv5CZ1IXqKFQ2+g==} dependencies: '@types/express': 4.17.14 '@types/passport': 1.0.11 dev: true - /@types/passport/1.0.11: + /@types/passport@1.0.11: resolution: {integrity: sha512-pz1cx9ptZvozyGKKKIPLcVDVHwae4hrH5d6g5J+DkMRRjR3cVETb4jMabhXAUbg3Ov7T22nFHEgaK2jj+5CBpw==} dependencies: '@types/express': 4.17.14 dev: true - /@types/postman-collection/3.5.7: + /@types/postman-collection@3.5.7: resolution: {integrity: sha512-wqZ/MlGEYP+RoiofnAnKDJAHxRzmMK97CeFLoHPNoHdHX0uyBLCDl+uZV9x4xuPVRjkeM4xcarIaUaUk47c7SQ==} dependencies: '@types/node': 17.0.45 dev: true - /@types/prettier/2.6.3: + /@types/prettier@2.6.3: resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} dev: true - /@types/pug/2.0.6: + /@types/pug@2.0.6: resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} requiresBuild: true dev: false optional: true - /@types/qs/6.9.7: + /@types/qs@6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - /@types/range-parser/1.2.4: + /@types/range-parser@1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - /@types/resolve/1.17.1: + /@types/resolve@1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 17.0.45 + '@types/node': 18.11.10 dev: true - /@types/semver/7.3.10: + /@types/semver@7.3.10: resolution: {integrity: sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==} dev: true - /@types/semver/7.3.13: + /@types/semver@7.3.13: resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} dev: true - /@types/serve-static/1.15.0: + /@types/serve-static@1.15.0: resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: '@types/mime': 3.0.1 '@types/node': 18.11.10 - /@types/splitpanes/2.2.1: + /@types/splitpanes@2.2.1: resolution: {integrity: sha512-H5BgO6UdJRzz5ddRzuGvLBiPSPEuuHXb5ET+7avLLrEx1uc7f5Ut5oLMDQsfvGtHBBAFczt1QNYuDf27wHbvDQ==} dependencies: vue: 2.7.1 dev: true - /@types/stack-utils/2.0.1: + /@types/stack-utils@2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} dev: true - /@types/strip-bom/3.0.0: + /@types/strip-bom@3.0.0: resolution: {integrity: sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==} dev: false - /@types/strip-json-comments/0.0.30: + /@types/strip-json-comments@0.0.30: resolution: {integrity: sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==} dev: false - /@types/superagent/4.1.16: + /@types/superagent@4.1.16: resolution: {integrity: sha512-tLfnlJf6A5mB6ddqF159GqcDizfzbMUB1/DeT59/wBNqzRTNNKsaw79A/1TZ84X+f/EwWH8FeuSkjlCLyqS/zQ==} dependencies: '@types/cookiejar': 2.1.2 '@types/node': 18.11.10 dev: true - /@types/supertest/2.0.12: + /@types/supertest@2.0.12: resolution: {integrity: sha512-X3HPWTwXRerBZS7Mo1k6vMVR1Z6zmJcDVn5O/31whe0tnjE4te6ZJSJGq1RiqHPjzPdMTfjCFogDJmwng9xHaQ==} dependencies: '@types/superagent': 4.1.16 dev: true - /@types/trusted-types/2.0.2: + /@types/trusted-types@2.0.2: resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==} - /@types/ua-parser-js/0.7.36: + /@types/ua-parser-js@0.7.36: resolution: {integrity: sha512-N1rW+njavs70y2cApeIw1vLMYXRwfBy+7trgavGuuTfOd7j1Yh7QTRc/yqsPl6ncokt72ZXuxEU0PiCp9bSwNQ==} dev: true - /@types/uuid/8.3.4: + /@types/uuid@8.3.4: resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} dev: true - /@types/web-bluetooth/0.0.14: + /@types/web-bluetooth@0.0.14: resolution: {integrity: sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==} dev: false - /@types/web-bluetooth/0.0.16: + /@types/web-bluetooth@0.0.16: resolution: {integrity: sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==} dev: false - /@types/ws/8.5.3: + /@types/ws@8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: '@types/node': 18.11.10 - /@types/yargs-parser/21.0.0: + /@types/yargs-parser@21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} dev: true - /@types/yargs/16.0.4: + /@types/yargs@16.0.4: resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} dependencies: '@types/yargs-parser': 21.0.0 dev: true - /@types/yargs/17.0.10: + /@types/yargs@17.0.10: resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==} dependencies: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.30.6_2vt5mtrqleafs33qg2bhpmbaqm: + /@typescript-eslint/eslint-plugin@5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.19.0)(typescript@4.7.4): resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7339,23 +7643,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/parser': 5.30.6(eslint@8.19.0)(typescript@4.7.4) '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/type-utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.30.6(eslint@8.19.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.30.6(eslint@8.19.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.19.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.30.6_hu4fhyobdl4qfb4p4ewioh73ay: + /@typescript-eslint/eslint-plugin@5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7366,23 +7670,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_oma37ntcsyoxqn5sr4l7ekf4na + '@typescript-eslint/parser': 5.30.6(eslint@8.24.0)(typescript@4.7.4) '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/type-utils': 5.30.6_oma37ntcsyoxqn5sr4l7ekf4na - '@typescript-eslint/utils': 5.30.6_oma37ntcsyoxqn5sr4l7ekf4na - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.30.6(eslint@8.24.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.30.6(eslint@8.24.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.30.6_tzuem642amzz36tmpo2cu7h24a: + /@typescript-eslint/eslint-plugin@5.30.6(@typescript-eslint/parser@5.30.6)(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7393,23 +7697,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_tqvwk7sh3taph5wf7sr5z34mke + '@typescript-eslint/parser': 5.30.6(eslint@8.28.0)(typescript@4.7.4) '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/type-utils': 5.30.6_tqvwk7sh3taph5wf7sr5z34mke - '@typescript-eslint/utils': 5.30.6_tqvwk7sh3taph5wf7sr5z34mke - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.30.6(eslint@8.28.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.30.6(eslint@8.28.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.28.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.45.0_5x6w6dgnwpn3o2sup6j7kp37u4: + /@typescript-eslint/eslint-plugin@5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7420,23 +7724,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_oma37ntcsyoxqn5sr4l7ekf4na + '@typescript-eslint/parser': 5.45.0(eslint@8.24.0)(typescript@4.7.4) '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/type-utils': 5.45.0_oma37ntcsyoxqn5sr4l7ekf4na - '@typescript-eslint/utils': 5.45.0_oma37ntcsyoxqn5sr4l7ekf4na - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.45.0(eslint@8.24.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.45.0(eslint@8.24.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.45.0_rzogma7jas7eybztjbadqqleea: + /@typescript-eslint/eslint-plugin@5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7447,23 +7751,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_tqvwk7sh3taph5wf7sr5z34mke + '@typescript-eslint/parser': 5.45.0(eslint@8.28.0)(typescript@4.7.4) '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/type-utils': 5.45.0_tqvwk7sh3taph5wf7sr5z34mke - '@typescript-eslint/utils': 5.45.0_tqvwk7sh3taph5wf7sr5z34mke - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.45.0(eslint@8.28.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.45.0(eslint@8.28.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.28.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.45.0_yjegg5cyoezm3fzsmuszzhetym: + /@typescript-eslint/eslint-plugin@5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.29.0)(typescript@4.9.3): resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7474,23 +7778,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/parser': 5.45.0(eslint@8.29.0)(typescript@4.9.3) '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/type-utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - '@typescript-eslint/utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - debug: 4.3.4 + '@typescript-eslint/type-utils': 5.45.0(eslint@8.29.0)(typescript@4.9.3) + '@typescript-eslint/utils': 5.45.0(eslint@8.29.0)(typescript@4.9.3) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.29.0 ignore: 5.2.0 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.3 + tsutils: 3.21.0(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.30.6_4x5o4skxv6sl53vpwefgt23khm: + /@typescript-eslint/parser@5.30.6(eslint@8.19.0)(typescript@4.7.4): resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7502,15 +7806,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.19.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.30.6_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/parser@5.30.6(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7522,15 +7826,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.30.6_tqvwk7sh3taph5wf7sr5z34mke: + /@typescript-eslint/parser@5.30.6(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7542,15 +7846,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.28.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.45.0_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/parser@5.45.0(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7562,15 +7866,15 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.45.0 '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.45.0_s5ps7njkmjlaqajutnox5ntcla: + /@typescript-eslint/parser@5.45.0(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7582,35 +7886,35 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.45.0 '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) + eslint: 8.28.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.45.0(eslint@8.29.0)(typescript@4.9.3): + resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.9.3) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.29.0 typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.45.0_tqvwk7sh3taph5wf7sr5z34mke: - resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 - debug: 4.3.4 - eslint: 8.28.0 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/scope-manager/5.30.6: + /@typescript-eslint/scope-manager@5.30.6: resolution: {integrity: sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -7618,7 +7922,7 @@ packages: '@typescript-eslint/visitor-keys': 5.30.6 dev: true - /@typescript-eslint/scope-manager/5.45.0: + /@typescript-eslint/scope-manager@5.45.0: resolution: {integrity: sha512-noDMjr87Arp/PuVrtvN3dXiJstQR1+XlQ4R1EvzG+NMgXi8CuMCXpb8JqNtFHKceVSQ985BZhfRdowJzbv4yKw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -7626,7 +7930,7 @@ packages: '@typescript-eslint/visitor-keys': 5.45.0 dev: true - /@typescript-eslint/type-utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm: + /@typescript-eslint/type-utils@5.30.6(eslint@8.19.0)(typescript@4.7.4): resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7636,16 +7940,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - debug: 4.3.4 + '@typescript-eslint/utils': 5.30.6(eslint@8.19.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.19.0 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.30.6_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/type-utils@5.30.6(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7655,16 +7959,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.6_oma37ntcsyoxqn5sr4l7ekf4na - debug: 4.3.4 + '@typescript-eslint/utils': 5.30.6(eslint@8.24.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.30.6_tqvwk7sh3taph5wf7sr5z34mke: + /@typescript-eslint/type-utils@5.30.6(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7674,16 +7978,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.6_tqvwk7sh3taph5wf7sr5z34mke - debug: 4.3.4 + '@typescript-eslint/utils': 5.30.6(eslint@8.28.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.28.0 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.45.0_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/type-utils@5.45.0(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7693,17 +7997,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 - '@typescript-eslint/utils': 5.45.0_oma37ntcsyoxqn5sr4l7ekf4na - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) + '@typescript-eslint/utils': 5.45.0(eslint@8.24.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.45.0_s5ps7njkmjlaqajutnox5ntcla: + /@typescript-eslint/type-utils@5.45.0(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7713,47 +8017,47 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 - '@typescript-eslint/utils': 5.45.0_s5ps7njkmjlaqajutnox5ntcla - debug: 4.3.4 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) + '@typescript-eslint/utils': 5.45.0(eslint@8.28.0)(typescript@4.7.4) + debug: 4.3.4(supports-color@9.2.2) + eslint: 8.28.0 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils@5.45.0(eslint@8.29.0)(typescript@4.9.3): + resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.9.3) + '@typescript-eslint/utils': 5.45.0(eslint@8.29.0)(typescript@4.9.3) + debug: 4.3.4(supports-color@9.2.2) eslint: 8.29.0 - tsutils: 3.21.0_typescript@4.9.3 + tsutils: 3.21.0(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.45.0_tqvwk7sh3taph5wf7sr5z34mke: - resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 - '@typescript-eslint/utils': 5.45.0_tqvwk7sh3taph5wf7sr5z34mke - debug: 4.3.4 - eslint: 8.28.0 - tsutils: 3.21.0_typescript@4.7.4 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/types/5.30.6: + /@typescript-eslint/types@5.30.6: resolution: {integrity: sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.45.0: + /@typescript-eslint/types@5.45.0: resolution: {integrity: sha512-QQij+u/vgskA66azc9dCmx+rev79PzX8uDHpsqSjEFtfF2gBUTRCpvYMh2gw2ghkJabNkPlSUCimsyBEQZd1DA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.30.6_typescript@4.7.4: + /@typescript-eslint/typescript-estree@5.30.6(typescript@4.7.4): resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7764,17 +8068,17 @@ packages: dependencies: '@typescript-eslint/types': 5.30.6 '@typescript-eslint/visitor-keys': 5.30.6 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.45.0_typescript@4.7.4: + /@typescript-eslint/typescript-estree@5.45.0(typescript@4.7.4): resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7785,17 +8089,17 @@ packages: dependencies: '@typescript-eslint/types': 5.45.0 '@typescript-eslint/visitor-keys': 5.45.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.7.4 + tsutils: 3.21.0(typescript@4.7.4) typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.3: + /@typescript-eslint/typescript-estree@5.45.0(typescript@4.9.3): resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7806,17 +8110,17 @@ packages: dependencies: '@typescript-eslint/types': 5.45.0 '@typescript-eslint/visitor-keys': 5.45.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.3 + tsutils: 3.21.0(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm: + /@typescript-eslint/utils@5.30.6(eslint@8.19.0)(typescript@4.7.4): resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7825,16 +8129,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) eslint: 8.19.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint-utils: 3.0.0(eslint@8.19.0) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.30.6_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/utils@5.30.6(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7843,16 +8147,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) eslint: 8.24.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0(eslint@8.24.0) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.30.6_tqvwk7sh3taph5wf7sr5z34mke: + /@typescript-eslint/utils@5.30.6(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7861,16 +8165,16 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.30.6 '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 + '@typescript-eslint/typescript-estree': 5.30.6(typescript@4.7.4) eslint: 8.28.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.28.0 + eslint-utils: 3.0.0(eslint@8.28.0) transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.45.0_oma37ntcsyoxqn5sr4l7ekf4na: + /@typescript-eslint/utils@5.45.0(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7880,17 +8184,17 @@ packages: '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.45.0 '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) eslint: 8.24.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0(eslint@8.24.0) semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.45.0_s5ps7njkmjlaqajutnox5ntcla: + /@typescript-eslint/utils@5.45.0(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7900,37 +8204,37 @@ packages: '@types/semver': 7.3.13 '@typescript-eslint/scope-manager': 5.45.0 '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.3 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.7.4) + eslint: 8.28.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.28.0) + semver: 7.3.8 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils@5.45.0(eslint@8.29.0)(typescript@4.9.3): + resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.9 + '@types/semver': 7.3.13 + '@typescript-eslint/scope-manager': 5.45.0 + '@typescript-eslint/types': 5.45.0 + '@typescript-eslint/typescript-estree': 5.45.0(typescript@4.9.3) eslint: 8.29.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0(eslint@8.29.0) semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.45.0_tqvwk7sh3taph5wf7sr5z34mke: - resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.9 - '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.45.0 - '@typescript-eslint/types': 5.45.0 - '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.7.4 - eslint: 8.28.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.28.0 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/visitor-keys/5.30.6: + /@typescript-eslint/visitor-keys@5.30.6: resolution: {integrity: sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -7938,7 +8242,7 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@typescript-eslint/visitor-keys/5.45.0: + /@typescript-eslint/visitor-keys@5.45.0: resolution: {integrity: sha512-jc6Eccbn2RtQPr1s7th6jJWQHBHI6GBVQkCHoJFQ5UreaKm59Vxw+ynQUPPY2u2Amquc+7tmEoC2G52ApsGNNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: @@ -7946,20 +8250,20 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@ungap/promise-all-settled/1.1.2: + /@ungap/promise-all-settled@1.1.2: resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==} dev: true - /@urql/core/2.5.0_graphql@15.8.0: + /@urql/core@2.5.0(graphql@15.8.0): resolution: {integrity: sha512-xXdcgb0H3nNTP4OfC+5T3CHJ0iz7Jj0QQYSYhN/hvKrzFnisPz2n6WXmvsHmMXk5bJHsr39kx4eOHcpsJuyCew==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@15.8.0 + '@graphql-typed-document-node/core': 3.1.1(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - /@urql/core/3.1.1_graphql@16.6.0: + /@urql/core@3.1.1(graphql@16.6.0): resolution: {integrity: sha512-Mnxtq4I4QeFJsgs7Iytw+HyhiGxISR6qtyk66c9tipozLZ6QVxrCiUPF2HY4BxNIabaxcp+rivadvm8NAnXj4Q==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -7968,37 +8272,37 @@ packages: wonka: 6.1.2 dev: false - /@urql/devtools/2.0.3_orwd6brffn6tmxxcil5zw6uzri: + /@urql/devtools@2.0.3(@urql/core@2.5.0)(graphql@15.8.0): resolution: {integrity: sha512-TktPLiBS9LcBPHD6qcnb8wqOVcg3Bx0iCtvQ80uPpfofwwBGJmqnQTjUdEFU6kwaLOFZULQ9+Uo4831G823mQw==} peerDependencies: '@urql/core': '>= 1.14.0' graphql: '>= 0.11.0' dependencies: - '@urql/core': 2.5.0_graphql@15.8.0 + '@urql/core': 2.5.0(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 dev: false - /@urql/exchange-auth/0.1.7_graphql@15.8.0: + /@urql/exchange-auth@0.1.7(graphql@15.8.0): resolution: {integrity: sha512-4Bmmi6YMW1YjZnTdr0Gfp9IoIY1fpNGq/fo1XHWEFEYe+IEOEDQhKT1CyhztyvvKpFw2C46D32MJRWJHQUPo/g==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.5.0_graphql@15.8.0 + '@urql/core': 2.5.0(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 dev: false - /@urql/exchange-graphcache/4.4.3_graphql@15.8.0: + /@urql/exchange-graphcache@4.4.3(graphql@15.8.0): resolution: {integrity: sha512-EPXRCzq929RjVDym4NP4mO6bsyGE6J1JzUxE9vpm04VjZtK90Ag4bgftFdkHsMHh4ydvokLKQjCRVqGxKEBnEg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@urql/core': 2.5.0_graphql@15.8.0 + '@urql/core': 2.5.0(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - /@urql/introspection/0.3.3_graphql@15.8.0: + /@urql/introspection@0.3.3(graphql@15.8.0): resolution: {integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -8006,7 +8310,7 @@ packages: graphql: 15.8.0 dev: true - /@urql/introspection/0.3.3_graphql@16.6.0: + /@urql/introspection@0.3.3(graphql@16.6.0): resolution: {integrity: sha512-tekSLLqWnusfV6V7xaEnLJQSdXOD/lWy7f8JYQwrX+88Md+voGSCSx5WJXI7KLBN3Tat2OV08tAr8UROykls4Q==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -8014,19 +8318,19 @@ packages: graphql: 16.6.0 dev: true - /@urql/vue/1.0.4_graphql@16.6.0+vue@3.2.45: + /@urql/vue@1.0.4(graphql@16.6.0)(vue@3.2.45): resolution: {integrity: sha512-soycMzRekSUCa+QQYSc9gF9qMOeIkfKnirFySVlW8mVhCRBwyjKvb37Z9eksRCqzGerKsn54zmdsgR66LKrGng==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 vue: ^2.7.0 || ^3.0.0 dependencies: - '@urql/core': 3.1.1_graphql@16.6.0 + '@urql/core': 3.1.1(graphql@16.6.0) graphql: 16.6.0 vue: 3.2.45 wonka: 6.1.2 dev: false - /@vitejs/plugin-legacy/2.3.0_vite@3.1.4: + /@vitejs/plugin-legacy@2.3.0(terser@5.14.1)(vite@3.1.4): resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -8038,10 +8342,11 @@ packages: magic-string: 0.26.7 regenerator-runtime: 0.13.10 systemjs: 6.13.0 - vite: 3.1.4_sass@1.53.0 + terser: 5.14.1 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) dev: false - /@vitejs/plugin-legacy/2.3.0_vite@3.2.4: + /@vitejs/plugin-legacy@2.3.0(terser@5.14.1)(vite@3.2.4): resolution: {integrity: sha512-Bh62i0gzQvvT8AeAAb78nOnqSYXypkRmQmOTImdPZ39meHR9e2une3AIFmVo4s1SDmcmJ6qj18Sa/lRc/14KaA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -8053,31 +8358,32 @@ packages: magic-string: 0.26.7 regenerator-runtime: 0.13.10 systemjs: 6.13.0 - vite: 3.2.4 + terser: 5.14.1 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) - /@vitejs/plugin-vue/3.1.0_vite@3.1.4+vue@3.2.37: + /@vitejs/plugin-vue@3.1.0(vite@3.1.4)(vue@3.2.37): resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.2.25 dependencies: - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) vue: 3.2.37 dev: true - /@vitejs/plugin-vue/3.2.0_vite@3.2.4+vue@3.2.45: + /@vitejs/plugin-vue@3.2.0(vite@3.2.4)(vue@3.2.45): resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.2.25 dependencies: - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) vue: 3.2.45 dev: true - /@vitest/expect/0.29.8: + /@vitest/expect@0.29.8: resolution: {integrity: sha512-xlcVXn5I5oTq6NiZSY3ykyWixBxr5mG8HYtjvpgg6KaqHm0mvhX18xuwl5YGxIRNt/A5jidd7CWcNHrSvgaQqQ==} dependencies: '@vitest/spy': 0.29.8 @@ -8085,7 +8391,7 @@ packages: chai: 4.3.7 dev: true - /@vitest/runner/0.29.8: + /@vitest/runner@0.29.8: resolution: {integrity: sha512-FzdhnRDwEr/A3Oo1jtIk/B952BBvP32n1ObMEb23oEJNO+qO5cBet6M2XWIDQmA7BDKGKvmhUf2naXyp/2JEwQ==} dependencies: '@vitest/utils': 0.29.8 @@ -8093,13 +8399,13 @@ packages: pathe: 1.1.0 dev: true - /@vitest/spy/0.29.8: + /@vitest/spy@0.29.8: resolution: {integrity: sha512-VdjBe9w34vOMl5I5mYEzNX8inTxrZ+tYUVk9jxaZJmHFwmDFC/GV3KBFTA/JKswr3XHvZL+FE/yq5EVhb6pSAw==} dependencies: tinyspy: 1.1.1 dev: true - /@vitest/utils/0.29.8: + /@vitest/utils@0.29.8: resolution: {integrity: sha512-qGzuf3vrTbnoY+RjjVVIBYfuWMjn3UMUqyQtdGNZ6ZIIyte7B37exj6LaVkrZiUTvzSadVvO/tJm8AEgbGCBPg==} dependencies: cli-truncate: 3.1.0 @@ -8108,20 +8414,20 @@ packages: pretty-format: 27.5.1 dev: true - /@volar/code-gen/0.27.24: + /@volar/code-gen@0.27.24: resolution: {integrity: sha512-s4j/QqOZUW03PeD6LmVYI00Q1C3CfJEOePDOQwDvCTUov4lFk0iSBtFyYhjlLyQ1pdtV1+TDTErkj2aMQtc4PA==} dependencies: '@volar/shared': 0.27.24 '@volar/source-map': 0.27.24 dev: true - /@volar/code-gen/0.38.2: + /@volar/code-gen@0.38.2: resolution: {integrity: sha512-H81I6d7rZB7teqL+zhK/Xz1v0/kKkUwkB0Aq6b4+BTCqcJeiZkoWxd0gFhrhWTnUoqiM83lhoTGo2vkvx5YagQ==} dependencies: '@volar/source-map': 0.38.2 dev: true - /@volar/html2pug/0.27.13: + /@volar/html2pug@0.27.13: resolution: {integrity: sha512-3NYgNA5F3PDsKbbpOrVdGy2S7ZYmZIbFmbp1A/27DDzjj/uIC9Pj7HXVvbYOzi8HcOxUPt0BMrh4TVzBUaCFww==} deprecated: 'WARNING: This project has been renamed to @johnsoncodehk/html2pug. Install using @johnsoncodehk/html2pug instead.' dependencies: @@ -8131,7 +8437,7 @@ packages: pug: 3.0.2 dev: true - /@volar/language-core/1.0.9: + /@volar/language-core@1.0.9: resolution: {integrity: sha512-5Fty3slLet6svXiJw2YxhYeo6c7wFdtILrql5bZymYLM+HbiZtJbryW1YnUEKAP7MO9Mbeh+TNH4Z0HFxHgIqw==} dependencies: '@volar/source-map': 1.0.9 @@ -8139,7 +8445,7 @@ packages: muggle-string: 0.1.0 dev: true - /@volar/shared/0.27.24: + /@volar/shared@0.27.24: resolution: {integrity: sha512-Mi8a4GQaiorfb+o4EqOXDZm9E/uBJXgScFgF+NhtcMBOUKHNMKQyLI7YRGumtyJTTdaX7nSDJjGGTkv23tcOtQ==} dependencies: upath: 2.0.1 @@ -8147,36 +8453,36 @@ packages: vscode-uri: 3.0.3 dev: true - /@volar/source-map/0.27.24: + /@volar/source-map@0.27.24: resolution: {integrity: sha512-2I5a7cXqekZ66D6lHep7ttJgvVVtPEBUIe1hnpcGbnXWNA2ya6f6jKNNyTmrXQyfkh32IEuaUd4kocR+3AKMag==} dependencies: '@volar/shared': 0.27.24 dev: true - /@volar/source-map/0.38.2: + /@volar/source-map@0.38.2: resolution: {integrity: sha512-DWcYbYt9SPwk0r4VmXk1F0v4X5+hCqH1JRkAWSeJymQyXCQ2OQDEbY2PF12a7y2qn4FUBD2gOba2TynAqI8ZFQ==} dev: true - /@volar/source-map/1.0.9: + /@volar/source-map@1.0.9: resolution: {integrity: sha512-fazB/vy5ZEJ3yKx4fabJyGNI3CBkdLkfEIRVu6+1P3VixK0Mn+eqyUIkLBrzGYaeFM3GybhCLCvsVdNz0Fu/CQ==} dependencies: muggle-string: 0.1.0 dev: true - /@volar/transforms/0.27.24: + /@volar/transforms@0.27.24: resolution: {integrity: sha512-sOHi1ZSapFlxn7yPl4MO5TXd9aWC0BVq2CgXAJ2EESb+ddh2uJbGQgLLNocX+MDh419cUuuFT2QAJpuWHhJcng==} dependencies: '@volar/shared': 0.27.24 vscode-languageserver: 8.0.2 dev: true - /@volar/typescript/1.0.9: + /@volar/typescript@1.0.9: resolution: {integrity: sha512-dVziu+ShQUWuMukM6bvK2v2O446/gG6l1XkTh2vfkccw1IzjfbiP1TWQoNo1ipTfZOtu5YJGYAx+o5HNrGXWfQ==} dependencies: '@volar/language-core': 1.0.9 dev: true - /@volar/vue-code-gen/0.38.2: + /@volar/vue-code-gen@0.38.2: resolution: {integrity: sha512-whLunD6phSGWBUHZKdTxeglrpzQu26ii8CRVapFdjfyMaVhQ7ESNeIAhkTVyg2ovOPc0PiDYPQEPzfWAADIWog==} dependencies: '@volar/code-gen': 0.38.2 @@ -8186,7 +8492,7 @@ packages: '@vue/shared': 3.2.45 dev: true - /@volar/vue-language-core/1.0.9: + /@volar/vue-language-core@1.0.9: resolution: {integrity: sha512-tofNoR8ShPFenHT1YVMuvoXtXWwoQE+fiXVqSmW0dSKZqEDjWQ3YeXSd0a6aqyKaIbvR7kWWGp34WbpQlwf9Ww==} dependencies: '@volar/language-core': 1.0.9 @@ -8199,7 +8505,7 @@ packages: vue-template-compiler: 2.7.14 dev: true - /@volar/vue-typescript/0.38.2: + /@volar/vue-typescript@0.38.2: resolution: {integrity: sha512-5IKvSK2m5yUmH6iu/tNScVlvJGuiHawTfSmjxaMs+/tod25WeK37LEdf+pdKtlJ30bYTQmmkAuEfG01QvvBRGQ==} dependencies: '@volar/code-gen': 0.38.2 @@ -8209,14 +8515,14 @@ packages: '@vue/reactivity': 3.2.39 dev: true - /@volar/vue-typescript/1.0.9: + /@volar/vue-typescript@1.0.9: resolution: {integrity: sha512-ZLe4y9YNbviACa7uAMCilzxA76gbbSlKfjspXBzk6fCobd8QCIig+VyDYcjANIlm2HhgSCX8jYTzhCKlegh4mw==} dependencies: '@volar/typescript': 1.0.9 '@volar/vue-language-core': 1.0.9 dev: true - /@vscode/emmet-helper/2.8.6: + /@vscode/emmet-helper@2.8.6: resolution: {integrity: sha512-IIB8jbiKy37zN8bAIHx59YmnIelY78CGHtThnibD/d3tQOKRY83bYVi9blwmZVUZh6l9nfkYH3tvReaiNxY9EQ==} dependencies: emmet: 2.3.6 @@ -8226,7 +8532,7 @@ packages: vscode-uri: 2.1.2 dev: true - /@vue/compiler-core/3.2.37: + /@vue/compiler-core@3.2.37: resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} dependencies: '@babel/parser': 7.18.6 @@ -8234,16 +8540,15 @@ packages: estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-core/3.2.39: + /@vue/compiler-core@3.2.39: resolution: {integrity: sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==} dependencies: '@babel/parser': 7.18.6 '@vue/shared': 3.2.39 estree-walker: 2.0.2 source-map: 0.6.1 - dev: true - /@vue/compiler-core/3.2.45: + /@vue/compiler-core@3.2.45: resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} dependencies: '@babel/parser': 7.18.6 @@ -8251,26 +8556,25 @@ packages: estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom/3.2.37: + /@vue/compiler-dom@3.2.37: resolution: {integrity: sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==} dependencies: '@vue/compiler-core': 3.2.37 '@vue/shared': 3.2.37 - /@vue/compiler-dom/3.2.39: + /@vue/compiler-dom@3.2.39: resolution: {integrity: sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==} dependencies: '@vue/compiler-core': 3.2.39 '@vue/shared': 3.2.39 - dev: true - /@vue/compiler-dom/3.2.45: + /@vue/compiler-dom@3.2.45: resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} dependencies: '@vue/compiler-core': 3.2.45 '@vue/shared': 3.2.45 - /@vue/compiler-sfc/2.7.1: + /@vue/compiler-sfc@2.7.1: resolution: {integrity: sha512-YQRE2uYhlvyFgHmKAqySCdLm7O37XZc+yG9dujwD3h8em+rD1qGOthxc0H3XcijOy50gj/pYHgBO6C3MjV+oug==} dependencies: '@babel/parser': 7.18.6 @@ -8278,7 +8582,7 @@ packages: source-map: 0.6.1 dev: true - /@vue/compiler-sfc/3.2.37: + /@vue/compiler-sfc@3.2.37: resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} dependencies: '@babel/parser': 7.18.6 @@ -8292,7 +8596,7 @@ packages: postcss: 8.4.19 source-map: 0.6.1 - /@vue/compiler-sfc/3.2.39: + /@vue/compiler-sfc@3.2.39: resolution: {integrity: sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==} dependencies: '@babel/parser': 7.18.6 @@ -8305,9 +8609,8 @@ packages: magic-string: 0.25.9 postcss: 8.4.16 source-map: 0.6.1 - dev: true - /@vue/compiler-sfc/3.2.45: + /@vue/compiler-sfc@3.2.45: resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} dependencies: '@babel/parser': 7.18.6 @@ -8321,29 +8624,28 @@ packages: postcss: 8.4.21 source-map: 0.6.1 - /@vue/compiler-ssr/3.2.37: + /@vue/compiler-ssr@3.2.37: resolution: {integrity: sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==} dependencies: '@vue/compiler-dom': 3.2.37 '@vue/shared': 3.2.37 - /@vue/compiler-ssr/3.2.39: + /@vue/compiler-ssr@3.2.39: resolution: {integrity: sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==} dependencies: '@vue/compiler-dom': 3.2.39 '@vue/shared': 3.2.39 - dev: true - /@vue/compiler-ssr/3.2.45: + /@vue/compiler-ssr@3.2.45: resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} dependencies: '@vue/compiler-dom': 3.2.45 '@vue/shared': 3.2.45 - /@vue/devtools-api/6.2.1: + /@vue/devtools-api@6.2.1: resolution: {integrity: sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==} - /@vue/eslint-config-typescript/11.0.1_kpxf5iryryrlim2ejhkirkiuey: + /@vue/eslint-config-typescript@11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.24.0)(typescript@4.7.4): resolution: {integrity: sha512-0U+nL0nA7ahnGPk3rTN49x76miUwuQtQPQNWOFvAcjg6nFJkIkA8qbGNtXwsuHtwBwRtWpHhShL3zK07v+632w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -8354,17 +8656,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.45.0_5x6w6dgnwpn3o2sup6j7kp37u4 - '@typescript-eslint/parser': 5.45.0_oma37ntcsyoxqn5sr4l7ekf4na + '@typescript-eslint/eslint-plugin': 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.24.0)(typescript@4.7.4) + '@typescript-eslint/parser': 5.45.0(eslint@8.24.0)(typescript@4.7.4) eslint: 8.24.0 - eslint-plugin-vue: 9.5.1_eslint@8.24.0 + eslint-plugin-vue: 9.5.1(eslint@8.24.0) typescript: 4.7.4 - vue-eslint-parser: 9.1.0_eslint@8.24.0 + vue-eslint-parser: 9.1.0(eslint@8.24.0) transitivePeerDependencies: - supports-color dev: true - /@vue/eslint-config-typescript/11.0.1_mzvf2l7eswg27fegtooheusjzu: + /@vue/eslint-config-typescript@11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.28.0)(typescript@4.7.4): resolution: {integrity: sha512-0U+nL0nA7ahnGPk3rTN49x76miUwuQtQPQNWOFvAcjg6nFJkIkA8qbGNtXwsuHtwBwRtWpHhShL3zK07v+632w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -8375,17 +8677,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.45.0_rzogma7jas7eybztjbadqqleea - '@typescript-eslint/parser': 5.45.0_tqvwk7sh3taph5wf7sr5z34mke + '@typescript-eslint/eslint-plugin': 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.28.0)(typescript@4.7.4) + '@typescript-eslint/parser': 5.45.0(eslint@8.28.0)(typescript@4.7.4) eslint: 8.28.0 - eslint-plugin-vue: 9.5.1_eslint@8.28.0 + eslint-plugin-vue: 9.5.1(eslint@8.28.0) typescript: 4.7.4 - vue-eslint-parser: 9.1.0_eslint@8.28.0 + vue-eslint-parser: 9.1.0(eslint@8.28.0) transitivePeerDependencies: - supports-color dev: true - /@vue/eslint-config-typescript/11.0.1_qqryy2txu6s5xvbi2exjrxstfu: + /@vue/eslint-config-typescript@11.0.1(eslint-plugin-vue@9.5.1)(eslint@8.29.0)(typescript@4.9.3): resolution: {integrity: sha512-0U+nL0nA7ahnGPk3rTN49x76miUwuQtQPQNWOFvAcjg6nFJkIkA8qbGNtXwsuHtwBwRtWpHhShL3zK07v+632w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: @@ -8396,17 +8698,17 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.45.0_yjegg5cyoezm3fzsmuszzhetym - '@typescript-eslint/parser': 5.45.0_s5ps7njkmjlaqajutnox5ntcla + '@typescript-eslint/eslint-plugin': 5.45.0(@typescript-eslint/parser@5.45.0)(eslint@8.29.0)(typescript@4.9.3) + '@typescript-eslint/parser': 5.45.0(eslint@8.29.0)(typescript@4.9.3) eslint: 8.29.0 - eslint-plugin-vue: 9.5.1_eslint@8.29.0 + eslint-plugin-vue: 9.5.1(eslint@8.29.0) typescript: 4.9.3 - vue-eslint-parser: 9.1.0_eslint@8.29.0 + vue-eslint-parser: 9.1.0(eslint@8.29.0) transitivePeerDependencies: - supports-color dev: true - /@vue/reactivity-transform/3.2.37: + /@vue/reactivity-transform@3.2.37: resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} dependencies: '@babel/parser': 7.18.6 @@ -8415,7 +8717,7 @@ packages: estree-walker: 2.0.2 magic-string: 0.25.9 - /@vue/reactivity-transform/3.2.39: + /@vue/reactivity-transform@3.2.39: resolution: {integrity: sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==} dependencies: '@babel/parser': 7.18.6 @@ -8423,9 +8725,8 @@ packages: '@vue/shared': 3.2.39 estree-walker: 2.0.2 magic-string: 0.25.9 - dev: true - /@vue/reactivity-transform/3.2.45: + /@vue/reactivity-transform@3.2.45: resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} dependencies: '@babel/parser': 7.18.6 @@ -8434,56 +8735,56 @@ packages: estree-walker: 2.0.2 magic-string: 0.25.9 - /@vue/reactivity/3.2.37: + /@vue/reactivity@3.2.37: resolution: {integrity: sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==} dependencies: '@vue/shared': 3.2.37 - /@vue/reactivity/3.2.39: + /@vue/reactivity@3.2.39: resolution: {integrity: sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==} dependencies: '@vue/shared': 3.2.39 dev: true - /@vue/reactivity/3.2.45: + /@vue/reactivity@3.2.45: resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==} dependencies: '@vue/shared': 3.2.45 - /@vue/runtime-core/3.2.37: + /@vue/runtime-core@3.2.37: resolution: {integrity: sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ==} dependencies: '@vue/reactivity': 3.2.37 '@vue/shared': 3.2.37 - /@vue/runtime-core/3.2.39: + /@vue/runtime-core@3.2.39: resolution: {integrity: sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==} dependencies: '@vue/reactivity': 3.2.39 '@vue/shared': 3.2.39 dev: true - /@vue/runtime-core/3.2.45: + /@vue/runtime-core@3.2.45: resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==} dependencies: '@vue/reactivity': 3.2.45 '@vue/shared': 3.2.45 - /@vue/runtime-dom/3.2.37: + /@vue/runtime-dom@3.2.37: resolution: {integrity: sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw==} dependencies: '@vue/runtime-core': 3.2.37 '@vue/shared': 3.2.37 csstype: 2.6.20 - /@vue/runtime-dom/3.2.45: + /@vue/runtime-dom@3.2.45: resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==} dependencies: '@vue/runtime-core': 3.2.45 '@vue/shared': 3.2.45 csstype: 2.6.20 - /@vue/server-renderer/3.2.37_vue@3.2.37: + /@vue/server-renderer@3.2.37(vue@3.2.37): resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==} peerDependencies: vue: 3.2.37 @@ -8492,7 +8793,7 @@ packages: '@vue/shared': 3.2.37 vue: 3.2.37 - /@vue/server-renderer/3.2.45_vue@3.2.45: + /@vue/server-renderer@3.2.45(vue@3.2.45): resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==} peerDependencies: vue: 3.2.45 @@ -8501,17 +8802,16 @@ packages: '@vue/shared': 3.2.45 vue: 3.2.45 - /@vue/shared/3.2.37: + /@vue/shared@3.2.37: resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==} - /@vue/shared/3.2.39: + /@vue/shared@3.2.39: resolution: {integrity: sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==} - dev: true - /@vue/shared/3.2.45: + /@vue/shared@3.2.45: resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} - /@vueuse/core/8.7.5_vue@3.2.37: + /@vueuse/core@8.7.5(vue@3.2.37): resolution: {integrity: sha512-tqgzeZGoZcXzoit4kOGLWJibDMLp0vdm6ZO41SSUQhkhtrPhAg6dbIEPiahhUu6sZAmSYvVrZgEr5aKD51nrLA==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -8524,12 +8824,12 @@ packages: dependencies: '@types/web-bluetooth': 0.0.14 '@vueuse/metadata': 8.7.5 - '@vueuse/shared': 8.7.5_vue@3.2.37 + '@vueuse/shared': 8.7.5(vue@3.2.37) vue: 3.2.37 - vue-demi: 0.13.1_vue@3.2.37 + vue-demi: 0.13.1(vue@3.2.37) dev: false - /@vueuse/core/8.7.5_vue@3.2.45: + /@vueuse/core@8.7.5(vue@3.2.45): resolution: {integrity: sha512-tqgzeZGoZcXzoit4kOGLWJibDMLp0vdm6ZO41SSUQhkhtrPhAg6dbIEPiahhUu6sZAmSYvVrZgEr5aKD51nrLA==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -8542,24 +8842,24 @@ packages: dependencies: '@types/web-bluetooth': 0.0.14 '@vueuse/metadata': 8.7.5 - '@vueuse/shared': 8.7.5_vue@3.2.45 + '@vueuse/shared': 8.7.5(vue@3.2.45) vue: 3.2.45 - vue-demi: 0.13.1_vue@3.2.45 + vue-demi: 0.13.1(vue@3.2.45) dev: false - /@vueuse/core/9.12.0_vue@3.2.45: + /@vueuse/core@9.12.0(vue@3.2.45): resolution: {integrity: sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==} dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.12.0 - '@vueuse/shared': 9.12.0_vue@3.2.45 - vue-demi: 0.13.1_vue@3.2.45 + '@vueuse/shared': 9.12.0(vue@3.2.45) + vue-demi: 0.13.1(vue@3.2.45) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/head/0.7.9_vue@3.2.37: + /@vueuse/head@0.7.9(vue@3.2.37): resolution: {integrity: sha512-5wnRiH2XIUSLLXJDLDDTcpvAg5QXgTIVZl46AU7to/T91KHsdBLHSE4WhRO7kP0jbkAhlxnx64E29cQtwBrMjg==} peerDependencies: vue: '>=3' @@ -8567,7 +8867,7 @@ packages: vue: 3.2.37 dev: false - /@vueuse/head/0.7.9_vue@3.2.45: + /@vueuse/head@0.7.9(vue@3.2.45): resolution: {integrity: sha512-5wnRiH2XIUSLLXJDLDDTcpvAg5QXgTIVZl46AU7to/T91KHsdBLHSE4WhRO7kP0jbkAhlxnx64E29cQtwBrMjg==} peerDependencies: vue: '>=3' @@ -8575,15 +8875,15 @@ packages: vue: 3.2.45 dev: false - /@vueuse/metadata/8.7.5: + /@vueuse/metadata@8.7.5: resolution: {integrity: sha512-emJZKRQSaEnVqmlu39NpNp8iaW+bPC2kWykWoWOZMSlO/0QVEmO/rt8A5VhOEJTKLX3vwTevqbiRy9WJRwVOQg==} dev: false - /@vueuse/metadata/9.12.0: + /@vueuse/metadata@9.12.0: resolution: {integrity: sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ==} dev: false - /@vueuse/shared/8.7.5_vue@3.2.37: + /@vueuse/shared@8.7.5(vue@3.2.37): resolution: {integrity: sha512-THXPvMBFmg6Gf6AwRn/EdTh2mhqwjGsB2Yfp374LNQSQVKRHtnJ0I42bsZTn7nuEliBxqUrGQm/lN6qUHmhJLw==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -8595,10 +8895,10 @@ packages: optional: true dependencies: vue: 3.2.37 - vue-demi: 0.13.1_vue@3.2.37 + vue-demi: 0.13.1(vue@3.2.37) dev: false - /@vueuse/shared/8.7.5_vue@3.2.45: + /@vueuse/shared@8.7.5(vue@3.2.45): resolution: {integrity: sha512-THXPvMBFmg6Gf6AwRn/EdTh2mhqwjGsB2Yfp374LNQSQVKRHtnJ0I42bsZTn7nuEliBxqUrGQm/lN6qUHmhJLw==} peerDependencies: '@vue/composition-api': ^1.1.0 @@ -8610,75 +8910,65 @@ packages: optional: true dependencies: vue: 3.2.45 - vue-demi: 0.13.1_vue@3.2.45 + vue-demi: 0.13.1(vue@3.2.45) dev: false - /@vueuse/shared/9.12.0_vue@3.2.45: + /@vueuse/shared@9.12.0(vue@3.2.45): resolution: {integrity: sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==} dependencies: - vue-demi: 0.13.1_vue@3.2.45 + vue-demi: 0.13.1(vue@3.2.45) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@webassemblyjs/ast/1.11.1: + /@webassemblyjs/ast@1.11.1: resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} dependencies: '@webassemblyjs/helper-numbers': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 - dev: true - /@webassemblyjs/floating-point-hex-parser/1.11.1: + /@webassemblyjs/floating-point-hex-parser@1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} - dev: true - /@webassemblyjs/helper-api-error/1.11.1: + /@webassemblyjs/helper-api-error@1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} - dev: true - /@webassemblyjs/helper-buffer/1.11.1: + /@webassemblyjs/helper-buffer@1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} - dev: true - /@webassemblyjs/helper-numbers/1.11.1: + /@webassemblyjs/helper-numbers@1.11.1: resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.1 '@webassemblyjs/helper-api-error': 1.11.1 '@xtuc/long': 4.2.2 - dev: true - /@webassemblyjs/helper-wasm-bytecode/1.11.1: + /@webassemblyjs/helper-wasm-bytecode@1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} - dev: true - /@webassemblyjs/helper-wasm-section/1.11.1: + /@webassemblyjs/helper-wasm-section@1.11.1: resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} dependencies: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 - dev: true - /@webassemblyjs/ieee754/1.11.1: + /@webassemblyjs/ieee754@1.11.1: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 - dev: true - /@webassemblyjs/leb128/1.11.1: + /@webassemblyjs/leb128@1.11.1: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: '@xtuc/long': 4.2.2 - dev: true - /@webassemblyjs/utf8/1.11.1: + /@webassemblyjs/utf8@1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} - dev: true - /@webassemblyjs/wasm-edit/1.11.1: + /@webassemblyjs/wasm-edit@1.11.1: resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} dependencies: '@webassemblyjs/ast': 1.11.1 @@ -8689,9 +8979,8 @@ packages: '@webassemblyjs/wasm-opt': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 '@webassemblyjs/wast-printer': 1.11.1 - dev: true - /@webassemblyjs/wasm-gen/1.11.1: + /@webassemblyjs/wasm-gen@1.11.1: resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} dependencies: '@webassemblyjs/ast': 1.11.1 @@ -8699,18 +8988,16 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: true - /@webassemblyjs/wasm-opt/1.11.1: + /@webassemblyjs/wasm-opt@1.11.1: resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} dependencies: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - dev: true - /@webassemblyjs/wasm-parser/1.11.1: + /@webassemblyjs/wasm-parser@1.11.1: resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} dependencies: '@webassemblyjs/ast': 1.11.1 @@ -8719,29 +9006,27 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 - dev: true - /@webassemblyjs/wast-printer/1.11.1: + /@webassemblyjs/wast-printer@1.11.1: resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} dependencies: '@webassemblyjs/ast': 1.11.1 '@xtuc/long': 4.2.2 - dev: true - /@wessberg/stringutil/1.0.19: + /@wessberg/stringutil@1.0.19: resolution: {integrity: sha512-9AZHVXWlpN8Cn9k5BC/O0Dzb9E9xfEMXzYrNunwvkUTvuK7xgQPVRZpLo+jWCOZ5r8oBa8NIrHuPEu1hzbb6bg==} engines: {node: '>=8.0.0'} dev: true - /@whatwg-node/events/0.0.2: + /@whatwg-node/events@0.0.2: resolution: {integrity: sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==} dev: true - /@whatwg-node/fetch/0.6.9: + /@whatwg-node/fetch@0.6.9(@types/node@18.11.10): resolution: {integrity: sha512-JfrBCJdMu9n9OARc0e/hPHcD98/8Nz1CKSdGYDg6VbObDkV/Ys30xe5i/wPOatYbxuvatj1kfWeHf7iNX3i17w==} dependencies: '@peculiar/webcrypto': 1.4.1 - '@whatwg-node/node-fetch': 0.0.5 + '@whatwg-node/node-fetch': 0.0.5(@types/node@18.11.10) busboy: 1.6.0 urlpattern-polyfill: 6.0.2 web-streams-polyfill: 3.2.1 @@ -8749,11 +9034,11 @@ packages: - '@types/node' dev: true - /@whatwg-node/fetch/0.8.1: + /@whatwg-node/fetch@0.8.1(@types/node@18.11.10): resolution: {integrity: sha512-Fkd1qQHK2tAWxKlC85h9L86Lgbq3BzxMnHSnTsnzNZMMzn6Xi+HlN8/LJ90LxorhSqD54td+Q864LgwUaYDj1Q==} dependencies: '@peculiar/webcrypto': 1.4.1 - '@whatwg-node/node-fetch': 0.3.0 + '@whatwg-node/node-fetch': 0.3.0(@types/node@18.11.10) busboy: 1.6.0 urlpattern-polyfill: 6.0.2 web-streams-polyfill: 3.2.1 @@ -8761,21 +9046,23 @@ packages: - '@types/node' dev: true - /@whatwg-node/node-fetch/0.0.5: + /@whatwg-node/node-fetch@0.0.5(@types/node@18.11.10): resolution: {integrity: sha512-hbccmaSZaItdsRuBKBEEhLoO+5oXJPxiyd0kG2xXd0Dh3Rt+vZn4pADHxuSiSHLd9CM+S2z4+IxlEGbWUgiz9g==} peerDependencies: '@types/node': ^18.0.6 dependencies: + '@types/node': 18.11.10 '@whatwg-node/events': 0.0.2 busboy: 1.6.0 tslib: 2.5.0 dev: true - /@whatwg-node/node-fetch/0.3.0: + /@whatwg-node/node-fetch@0.3.0(@types/node@18.11.10): resolution: {integrity: sha512-mPM8WnuHiI/3kFxDeE0SQQXAElbz4onqmm64fEGCwYEcBes2UsvIDI8HwQIqaXCH42A9ajJUPv4WsYoN/9oG6w==} peerDependencies: '@types/node': ^18.0.6 dependencies: + '@types/node': 18.11.10 '@whatwg-node/events': 0.0.2 busboy: 1.6.0 fast-querystring: 1.1.1 @@ -8783,22 +9070,22 @@ packages: tslib: 2.5.0 dev: true - /@windicss/config/1.8.8: + /@windicss/config@1.8.8: resolution: {integrity: sha512-kNas/zMkwsDFMcJPmHoPDJlQi1MHvYwx8BSxo9JKcbCW7Gaj8Rg2CnEImX5YdT+ZcFQqQ+kUn0Vi/ScsAxhGEw==} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) jiti: 1.16.2 windicss: 3.5.6 transitivePeerDependencies: - supports-color dev: true - /@windicss/plugin-utils/1.8.8: + /@windicss/plugin-utils@1.8.8: resolution: {integrity: sha512-a+npbTKmdrAvnMqzVJvyPa29xyNcPaSkt6qQpgWY9m0WyVlYd9BM8V0+cbqt279fTlvlaZpUs9dqmilB1PUH6g==} dependencies: '@antfu/utils': 0.5.2 '@windicss/config': 1.8.8 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.12 magic-string: 0.26.7 micromatch: 4.0.5 @@ -8807,15 +9094,13 @@ packages: - supports-color dev: true - /@xtuc/ieee754/1.2.0: + /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - dev: true - /@xtuc/long/4.2.2: + /@xtuc/long@4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - dev: true - /JSONStream/1.3.5: + /JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true dependencies: @@ -8823,49 +9108,48 @@ packages: through: 2.3.8 dev: true - /abab/2.0.6: + /abab@2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} dev: true - /abbrev/1.1.1: + /abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - /abort-controller/3.0.0: + /abort-controller@3.0.0: resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} engines: {node: '>=6.5'} dependencies: event-target-shim: 5.0.1 - /accepts/1.3.8: + /accepts@1.3.8: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.35 negotiator: 0.6.3 - /acorn-globals/6.0.0: + /acorn-globals@6.0.0: resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 dev: true - /acorn-globals/7.0.1: + /acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: acorn: 8.8.2 acorn-walk: 8.2.0 dev: true - /acorn-import-assertions/1.8.0_acorn@8.8.0: + /acorn-import-assertions@1.8.0(acorn@8.8.0): resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: acorn: 8.8.0 - dev: true - /acorn-jsx/5.3.2_acorn@7.4.1: + /acorn-jsx@5.3.2(acorn@7.4.1): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8873,75 +9157,75 @@ packages: acorn: 7.4.1 dev: true - /acorn-jsx/5.3.2_acorn@8.8.0: + /acorn-jsx@5.3.2(acorn@8.8.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.8.0 - /acorn-loose/6.1.0: + /acorn-loose@6.1.0: resolution: {integrity: sha512-FHhXoiF0Uch3IqsrnPpWwCtiv5PYvipTpT1k9lDMgQVVYc9iDuSl5zdJV358aI8twfHCYMFBRVYvAVki9wC/ng==} engines: {node: '>=0.4.0'} dependencies: acorn: 6.4.2 dev: false - /acorn-walk/6.2.0: + /acorn-walk@6.2.0: resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} engines: {node: '>=0.4.0'} dev: false - /acorn-walk/7.2.0: + /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} engines: {node: '>=0.4.0'} dev: true - /acorn-walk/8.2.0: + /acorn-walk@8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - /acorn/6.4.2: + /acorn@6.4.2: resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} engines: {node: '>=0.4.0'} hasBin: true dev: false - /acorn/7.4.1: + /acorn@7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} hasBin: true - /acorn/8.8.0: + /acorn@8.8.0: resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} engines: {node: '>=0.4.0'} hasBin: true - /acorn/8.8.2: + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} hasBin: true - /after/0.8.2: + /after@0.8.2: resolution: {integrity: sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=} dev: false - /agent-base/6.0.2: + /agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color - /aggregate-error/3.1.0: + /aggregate-error@3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 - /ajv-draft-04/1.0.0_ajv@8.11.0: + /ajv-draft-04@1.0.0(ajv@8.11.0): resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} peerDependencies: ajv: ^8.5.0 @@ -8952,8 +9236,10 @@ packages: ajv: 8.11.0 dev: false - /ajv-formats/2.1.1: + /ajv-formats@2.1.1(ajv@8.11.0): resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -8961,15 +9247,14 @@ packages: ajv: 8.11.0 dev: true - /ajv-keywords/3.5.2_ajv@6.12.6: + /ajv-keywords@3.5.2(ajv@6.12.6): resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: ajv: ^6.9.1 dependencies: ajv: 6.12.6 - dev: true - /ajv/6.12.6: + /ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 @@ -8977,7 +9262,7 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /ajv/8.11.0: + /ajv@8.11.0: resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} dependencies: fast-deep-equal: 3.1.3 @@ -8985,71 +9270,71 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 - /ansi-colors/4.1.1: + /ansi-colors@4.1.1: resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} engines: {node: '>=6'} dev: true - /ansi-colors/4.1.3: + /ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} - /ansi-escapes/4.3.2: + /ansi-escapes@4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - /ansi-regex/2.1.1: + /ansi-regex@2.1.1: resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} dev: false - /ansi-regex/5.0.1: + /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - /ansi-regex/6.0.1: + /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - /ansi-styles/2.2.1: + /ansi-styles@2.2.1: resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} engines: {node: '>=0.10.0'} dev: false - /ansi-styles/3.2.1: + /ansi-styles@3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} dependencies: color-convert: 1.9.3 - /ansi-styles/4.3.0: + /ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} dependencies: color-convert: 2.0.1 - /ansi-styles/5.2.0: + /ansi-styles@5.2.0: resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} engines: {node: '>=10'} dev: true - /ansi-styles/6.1.0: + /ansi-styles@6.1.0: resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==} engines: {node: '>=12'} - /any-promise/1.3.0: + /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - /anymatch/3.1.2: + /anymatch@3.1.2: resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} engines: {node: '>= 8'} dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - /apiconnect-wsdl/1.8.31: + /apiconnect-wsdl@1.8.31: resolution: {integrity: sha512-kNs26If9xCJnGolVTAt0VWIA8KrqwodQLqDRTrfc7txD54LJ+hFx638sPYEdG9jw78eifWyy+FBlS5befYSa8Q==} engines: {node: '>=8'} dependencies: @@ -9064,7 +9349,7 @@ packages: yauzl: 2.10.0 dev: false - /apollo-datasource/3.3.2: + /apollo-datasource@3.3.2: resolution: {integrity: sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==} engines: {node: '>=12.0'} deprecated: The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9075,14 +9360,14 @@ packages: - encoding dev: false - /apollo-reporting-protobuf/3.3.3: + /apollo-reporting-protobuf@3.3.3: resolution: {integrity: sha512-L3+DdClhLMaRZWVmMbBcwl4Ic77CnEBPXLW53F7hkYhkaZD88ivbCVB1w/x5gunO6ZHrdzhjq0FHmTsBvPo7aQ==} deprecated: The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. dependencies: '@apollo/protobufjs': 1.2.6 dev: false - /apollo-server-core/3.11.1_graphql@15.8.0: + /apollo-server-core@3.11.1(graphql@15.8.0): resolution: {integrity: sha512-t/eCKrRFK1lYZlc5pHD99iG7Np7CEm3SmbDiONA7fckR3EaB/pdsEdIkIwQ5QBBpT5JLp/nwvrZRVwhaWmaRvw==} engines: {node: '>=12.0'} deprecated: The `apollo-server-core` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9091,22 +9376,22 @@ packages: dependencies: '@apollo/utils.keyvaluecache': 1.0.2 '@apollo/utils.logger': 1.0.1 - '@apollo/utils.usagereporting': 1.0.1_graphql@15.8.0 - '@apollographql/apollo-tools': 0.5.4_graphql@15.8.0 + '@apollo/utils.usagereporting': 1.0.1(graphql@15.8.0) + '@apollographql/apollo-tools': 0.5.4(graphql@15.8.0) '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.7.12_graphql@15.8.0 - '@graphql-tools/schema': 8.5.0_graphql@15.8.0 + '@graphql-tools/mock': 8.7.12(graphql@15.8.0) + '@graphql-tools/schema': 8.5.0(graphql@15.8.0) '@josephg/resolvable': 1.0.1 apollo-datasource: 3.3.2 apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 - apollo-server-errors: 3.3.1_graphql@15.8.0 - apollo-server-plugin-base: 3.7.1_graphql@15.8.0 - apollo-server-types: 3.7.1_graphql@15.8.0 + apollo-server-errors: 3.3.1(graphql@15.8.0) + apollo-server-plugin-base: 3.7.1(graphql@15.8.0) + apollo-server-types: 3.7.1(graphql@15.8.0) async-retry: 1.3.3 fast-json-stable-stringify: 2.1.0 graphql: 15.8.0 - graphql-tag: 2.12.6_graphql@15.8.0 + graphql-tag: 2.12.6(graphql@15.8.0) loglevel: 1.8.1 lru-cache: 6.0.0 node-abort-controller: 3.0.1 @@ -9117,7 +9402,7 @@ packages: - encoding dev: false - /apollo-server-env/4.2.1: + /apollo-server-env@4.2.1: resolution: {integrity: sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==} engines: {node: '>=12.0'} deprecated: The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9127,7 +9412,7 @@ packages: - encoding dev: false - /apollo-server-errors/3.3.1_graphql@15.8.0: + /apollo-server-errors@3.3.1(graphql@15.8.0): resolution: {integrity: sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==} engines: {node: '>=12.0'} deprecated: The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9137,7 +9422,7 @@ packages: graphql: 15.8.0 dev: false - /apollo-server-express/3.11.1_4mq2c443wwzwcb6dpxnwkfvrzm: + /apollo-server-express@3.11.1(express@4.18.2)(graphql@15.8.0): resolution: {integrity: sha512-x9ngcpXbBlt4naCXTwNtBFb/mOd9OU0wtFXvJkObHF26NsRazu3DxDfEuekA6V1NFOocD+A9jmVMQeQWug5MgA==} engines: {node: '>=12.0'} deprecated: The `apollo-server-express` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9151,8 +9436,8 @@ packages: '@types/express': 4.17.14 '@types/express-serve-static-core': 4.17.31 accepts: 1.3.8 - apollo-server-core: 3.11.1_graphql@15.8.0 - apollo-server-types: 3.7.1_graphql@15.8.0 + apollo-server-core: 3.11.1(graphql@15.8.0) + apollo-server-types: 3.7.1(graphql@15.8.0) body-parser: 1.20.1 cors: 2.8.5 express: 4.18.2 @@ -9163,20 +9448,20 @@ packages: - supports-color dev: false - /apollo-server-plugin-base/3.7.1_graphql@15.8.0: + /apollo-server-plugin-base@3.7.1(graphql@15.8.0): resolution: {integrity: sha512-g3vJStmQtQvjGI289UkLMfThmOEOddpVgHLHT2bNj0sCD/bbisj4xKbBHETqaURokteqSWyyd4RDTUe0wAUDNQ==} engines: {node: '>=12.0'} deprecated: The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - apollo-server-types: 3.7.1_graphql@15.8.0 + apollo-server-types: 3.7.1(graphql@15.8.0) graphql: 15.8.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-types/3.7.1_graphql@15.8.0: + /apollo-server-types@3.7.1(graphql@15.8.0): resolution: {integrity: sha512-aE9RDVplmkaOj/OduNmGa+0a1B5RIWI0o3zC1zLvBTVWMKTpo0ifVf11TyMkLCY+T7cnZqVqwyShziOyC3FyUw==} engines: {node: '>=12.0'} deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. @@ -9192,23 +9477,23 @@ packages: - encoding dev: false - /append-field/1.0.0: + /append-field@1.0.0: resolution: {integrity: sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==} - /aproba/2.0.0: + /aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - /are-we-there-yet/2.0.0: + /are-we-there-yet@2.0.0: resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} engines: {node: '>=10'} dependencies: delegates: 1.0.0 readable-stream: 3.6.0 - /arg/4.1.3: + /arg@4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - /argon2/0.30.3: + /argon2@0.30.3: resolution: {integrity: sha512-DoH/kv8c9127ueJSBxAVJXinW9+EuPA3EMUxoV2sAY1qDE5H9BjTyVF/aD2XyHqbqUWabgBkIfcP3ZZuGhbJdg==} engines: {node: '>=14.0.0'} requiresBuild: true @@ -9220,38 +9505,38 @@ packages: - encoding - supports-color - /argparse/1.0.10: + /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: sprintf-js: 1.0.3 - /argparse/2.0.1: + /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /array-flatten/1.1.1: + /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - /array-ify/1.0.0: + /array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-union/2.1.0: + /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - /arraybuffer.slice/0.0.7: + /arraybuffer.slice@0.0.7: resolution: {integrity: sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog==} dev: false - /arrify/1.0.1: + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true - /asap/2.0.6: + /asap@2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} - /asn1js/3.0.5: + /asn1js@3.0.5: resolution: {integrity: sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==} engines: {node: '>=12.0.0'} dependencies: @@ -9260,64 +9545,64 @@ packages: tslib: 2.5.0 dev: true - /assert-never/1.2.1: + /assert-never@1.2.1: resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} - /assertion-error/1.1.0: + /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true - /ast-types/0.13.4: + /ast-types@0.13.4: resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} engines: {node: '>=4'} dependencies: tslib: 2.5.0 dev: false - /astral-regex/2.0.0: + /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} - /async-retry/1.3.3: + /async-retry@1.3.3: resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==} dependencies: retry: 0.13.1 dev: false - /async/2.6.4: + /async@2.6.4: resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} dependencies: lodash: 4.17.21 dev: true - /async/3.2.4: + /async@3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} - /asynckit/0.4.0: + /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - /at-least-node/1.0.0: + /at-least-node@1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} dev: true - /auto-bind/4.0.0: + /auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} dev: true - /available-typed-arrays/1.0.5: + /available-typed-arrays@1.0.5: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /axios/0.21.4: + /axios@0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: follow-redirects: 1.15.1 transitivePeerDependencies: - debug - /axios/0.25.0: + /axios@0.25.0: resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} dependencies: follow-redirects: 1.15.1 @@ -9325,7 +9610,7 @@ packages: - debug dev: true - /babel-jest/27.5.1_@babel+core@7.18.6: + /babel-jest@27.5.1(@babel/core@7.18.6): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -9336,7 +9621,7 @@ packages: '@jest/types': 27.5.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.18.6 + babel-preset-jest: 27.5.1(@babel/core@7.18.6) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9344,7 +9629,7 @@ packages: - supports-color dev: true - /babel-jest/29.4.1_@babel+core@7.18.6: + /babel-jest@29.4.1(@babel/core@7.18.6): resolution: {integrity: sha512-xBZa/pLSsF/1sNpkgsiT3CmY7zV1kAsZ9OxxtrFqYucnOuRftXAfcJqcDVyOPeN4lttWTwhLdu0T9f8uvoPEUg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -9354,7 +9639,7 @@ packages: '@jest/transform': 29.4.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.0_@babel+core@7.18.6 + babel-preset-jest: 29.4.0(@babel/core@7.18.6) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9362,13 +9647,13 @@ packages: - supports-color dev: true - /babel-plugin-dynamic-import-node/2.3.3: + /babel-plugin-dynamic-import-node@2.3.3: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: object.assign: 4.1.2 dev: true - /babel-plugin-istanbul/6.1.1: + /babel-plugin-istanbul@6.1.1: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: @@ -9381,7 +9666,7 @@ packages: - supports-color dev: true - /babel-plugin-jest-hoist/27.5.1: + /babel-plugin-jest-hoist@27.5.1: resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -9391,7 +9676,7 @@ packages: '@types/babel__traverse': 7.17.1 dev: true - /babel-plugin-jest-hoist/29.4.0: + /babel-plugin-jest-hoist@29.4.0: resolution: {integrity: sha512-a/sZRLQJEmsmejQ2rPEUe35nO1+C9dc9O1gplH1SXmJxveQSRUYdBk8yGZG/VOUuZs1u2aHZJusEGoRMbhhwCg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -9401,104 +9686,104 @@ packages: '@types/babel__traverse': 7.17.1 dev: true - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.6: + /babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.18.6): resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.18.6 '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.18.6) semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.6: + /babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.18.6): resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.18.6) core-js-compat: 3.23.3 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.6: + /babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.18.6): resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 + '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.18.6) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: + /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.6: + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.18.6): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.6 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.6) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.6) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.6) dev: true - /babel-preset-fbjs/3.4.0_@babel+core@7.18.6: + /babel-preset-fbjs@3.4.0(@babel/core@7.18.6): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-object-rest-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoping': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-classes': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-computed-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-destructuring': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-template-literals': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-proposal-object-rest-spread': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.6) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.6) + '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-block-scoping': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-classes': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-computed-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-destructuring': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-flow-strip-types': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-for-of': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-function-name': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-parameters': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-spread': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-transform-template-literals': 7.18.6(@babel/core@7.18.6) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color dev: true - /babel-preset-jest/27.5.1_@babel+core@7.18.6: + /babel-preset-jest@27.5.1(@babel/core@7.18.6): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -9506,10 +9791,10 @@ packages: dependencies: '@babel/core': 7.18.6 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.6) dev: true - /babel-preset-jest/29.4.0_@babel+core@7.18.6: + /babel-preset-jest@29.4.0(@babel/core@7.18.6): resolution: {integrity: sha512-fUB9vZflUSM3dO/6M2TCAepTzvA4VkOvl67PjErcrQMGt9Eve7uazaeyCZ2th3UtI7ljpiBJES0F7A1vBRsLZA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -9517,47 +9802,47 @@ packages: dependencies: '@babel/core': 7.18.6 babel-plugin-jest-hoist: 29.4.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.6) dev: true - /babel-walk/3.0.0-canary-5: + /babel-walk@3.0.0-canary-5: resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} engines: {node: '>= 10.0.0'} dependencies: '@babel/types': 7.21.2 - /backo2/1.0.2: + /backo2@1.0.2: resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==} dev: false - /balanced-match/1.0.2: + /balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - /base64-arraybuffer/0.1.4: + /base64-arraybuffer@0.1.4: resolution: {integrity: sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=} engines: {node: '>= 0.6.0'} dev: false - /base64-js/1.5.1: + /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} - /base64url/3.0.1: + /base64url@3.0.1: resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} engines: {node: '>=6.0.0'} dev: false - /basic-auth/2.0.1: + /basic-auth@2.0.1: resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} engines: {node: '>= 0.8'} dependencies: safe-buffer: 5.1.2 dev: true - /batch/0.6.1: + /batch@0.6.1: resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} dev: false - /bcrypt/5.1.0: + /bcrypt@5.1.0: resolution: {integrity: sha512-RHBS7HI5N5tEnGTmtR/pppX0mmDSBpQ4aCBsj7CEQfYXDcO74A8sIBYcJMuCsis2E81zDxeENYhv66oZwLiA+Q==} engines: {node: '>= 10.0.0'} requiresBuild: true @@ -9569,19 +9854,19 @@ packages: - supports-color dev: false - /big.js/5.2.2: + /big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} dev: true - /binary-extensions/2.2.0: + /binary-extensions@2.2.0: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} - /birpc/0.1.1: + /birpc@0.1.1: resolution: {integrity: sha512-B64AGL4ug2IS2jvV/zjTYDD1L+2gOJTT7Rv+VaK7KVQtQOo/xZbCDsh7g727ipckmU+QJYRqo5RcifVr0Kgcmg==} dev: true - /bl/4.1.0: + /bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: buffer: 5.7.1 @@ -9589,11 +9874,11 @@ packages: readable-stream: 3.6.0 dev: true - /blob/0.0.5: + /blob@0.0.5: resolution: {integrity: sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==} dev: false - /body-parser/1.20.1: + /body-parser@1.20.1: resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} dependencies: @@ -9612,35 +9897,35 @@ packages: transitivePeerDependencies: - supports-color - /boolbase/1.0.0: + /boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - /brace-expansion/1.1.11: + /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - /brace-expansion/2.0.1: + /brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - /braces/3.0.2: + /braces@3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} dependencies: fill-range: 7.0.1 - /browser-process-hrtime/1.0.0: + /browser-process-hrtime@1.0.0: resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: true - /browser-stdout/1.3.1: + /browser-stdout@1.3.1: resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==} dev: true - /browserslist-generator/1.0.66: + /browserslist-generator@1.0.66: resolution: {integrity: sha512-aFDax4Qzh29DdyhHQBD2Yu2L5OvaDnvYFMbmpLrLwwaNK4H6dHEhC/Nxv93/+mfAA+a/t94ln0P2JZvHO6LZDA==} engines: {node: '>=8.0.0'} dependencies: @@ -9656,7 +9941,7 @@ packages: ua-parser-js: 1.0.2 dev: true - /browserslist/4.20.2: + /browserslist@4.20.2: resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -9668,7 +9953,7 @@ packages: picocolors: 1.0.0 dev: true - /browserslist/4.21.1: + /browserslist@4.21.1: resolution: {integrity: sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -9676,51 +9961,50 @@ packages: caniuse-lite: 1.0.30001363 electron-to-chromium: 1.4.178 node-releases: 2.0.5 - update-browserslist-db: 1.0.4_browserslist@4.21.1 - dev: true + update-browserslist-db: 1.0.4(browserslist@4.21.1) - /bs-logger/0.2.6: + /bs-logger@0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} engines: {node: '>= 6'} dependencies: fast-json-stable-stringify: 2.1.0 dev: true - /bser/2.1.1: + /bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 dev: true - /buffer-crc32/0.2.13: + /buffer-crc32@0.2.13: resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} dev: false - /buffer-equal-constant-time/1.0.1: + /buffer-equal-constant-time@1.0.1: resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} - /buffer-from/1.1.2: + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} - /buffer/5.7.1: + /buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 - /buffer/6.0.3: + /buffer@6.0.3: resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} dependencies: base64-js: 1.5.1 ieee754: 1.2.1 dev: false - /builtin-modules/3.3.0: + /builtin-modules@3.3.0: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} dev: true - /bundle-require/3.0.4_esbuild@0.14.48: + /bundle-require@3.0.4(esbuild@0.14.48): resolution: {integrity: sha512-VXG6epB1yrLAvWVQpl92qF347/UXmncQj7J3U8kZEbdVZ1ZkQyr4hYeL/9RvcE8vVVdp53dY78Fd/3pqfRqI1A==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: @@ -9729,53 +10013,53 @@ packages: esbuild: 0.14.48 load-tsconfig: 0.2.3 - /busboy/1.6.0: + /busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} dependencies: streamsearch: 1.1.0 - /bytes/3.1.2: + /bytes@3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - /cac/6.7.12: + /cac@6.7.12: resolution: {integrity: sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==} engines: {node: '>=8'} - /cac/6.7.14: + /cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} dev: true - /call-bind/1.0.2: + /call-bind@1.0.2: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 get-intrinsic: 1.1.2 - /call-me-maybe/1.0.1: + /call-me-maybe@1.0.1: resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==} dev: false - /callsites/3.1.0: + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - /camel-case/3.0.0: + /camel-case@3.0.0: resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} dependencies: no-case: 2.3.2 upper-case: 1.1.3 dev: false - /camel-case/4.1.2: + /camel-case@4.1.2: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 tslib: 2.5.0 - /camelcase-keys/6.2.2: + /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} dependencies: @@ -9784,28 +10068,27 @@ packages: quick-lru: 4.0.1 dev: true - /camelcase/5.3.1: + /camelcase@5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} dev: true - /camelcase/6.3.0: + /camelcase@6.3.0: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} dev: true - /caniuse-lite/1.0.30001363: + /caniuse-lite@1.0.30001363: resolution: {integrity: sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==} - dev: true - /capital-case/1.0.4: + /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} dependencies: no-case: 3.0.4 tslib: 2.5.0 upper-case-first: 2.0.2 - /chai/4.3.7: + /chai@4.3.7: resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} engines: {node: '>=4'} dependencies: @@ -9818,7 +10101,7 @@ packages: type-detect: 4.0.8 dev: true - /chalk/1.1.3: + /chalk@1.1.3: resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} engines: {node: '>=0.10.0'} dependencies: @@ -9829,7 +10112,7 @@ packages: supports-color: 2.0.0 dev: false - /chalk/2.4.2: + /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} dependencies: @@ -9837,7 +10120,7 @@ packages: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - /chalk/3.0.0: + /chalk@3.0.0: resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} engines: {node: '>=8'} dependencies: @@ -9845,14 +10128,14 @@ packages: supports-color: 7.2.0 dev: true - /chalk/4.1.2: + /chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 - /change-case-all/1.0.14: + /change-case-all@1.0.14: resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} dependencies: change-case: 4.1.2 @@ -9867,7 +10150,7 @@ packages: upper-case-first: 2.0.2 dev: true - /change-case-all/1.0.15: + /change-case-all@1.0.15: resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} dependencies: change-case: 4.1.2 @@ -9882,7 +10165,7 @@ packages: upper-case-first: 2.0.2 dev: true - /change-case/4.1.2: + /change-case@4.1.2: resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} dependencies: camel-case: 4.1.2 @@ -9898,34 +10181,34 @@ packages: snake-case: 3.0.4 tslib: 2.5.0 - /char-regex/1.0.2: + /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} engines: {node: '>=10'} dev: true - /character-parser/2.2.0: + /character-parser@2.2.0: resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} dependencies: is-regex: 1.1.4 - /chardet/0.7.0: + /chardet@0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true - /charenc/0.0.2: + /charenc@0.0.2: resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} dev: false - /charset/1.0.1: + /charset@1.0.1: resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==} engines: {node: '>=4.0.0'} dev: false - /check-error/1.0.2: + /check-error@1.0.2: resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} dev: true - /cheerio-select/1.6.0: + /cheerio-select@1.6.0: resolution: {integrity: sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==} dependencies: css-select: 4.3.0 @@ -9935,7 +10218,7 @@ packages: domutils: 2.8.0 dev: false - /cheerio-select/2.1.0: + /cheerio-select@2.1.0: resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} dependencies: boolbase: 1.0.0 @@ -9946,7 +10229,7 @@ packages: domutils: 3.0.1 dev: false - /cheerio/1.0.0-rc.10: + /cheerio@1.0.0-rc.10: resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==} engines: {node: '>= 6'} dependencies: @@ -9959,7 +10242,7 @@ packages: tslib: 2.5.0 dev: false - /cheerio/1.0.0-rc.12: + /cheerio@1.0.0-rc.12: resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} engines: {node: '>= 6'} dependencies: @@ -9972,7 +10255,7 @@ packages: parse5-htmlparser2-tree-adapter: 7.0.0 dev: false - /chokidar/3.5.3: + /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} dependencies: @@ -9986,46 +10269,45 @@ packages: optionalDependencies: fsevents: 2.3.2 - /chownr/2.0.0: + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} - /chrome-trace-event/1.0.3: + /chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} - dev: true - /ci-info/3.3.2: + /ci-info@3.3.2: resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true - /cjs-module-lexer/1.2.2: + /cjs-module-lexer@1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} dev: true - /clean-css/4.2.4: + /clean-css@4.2.4: resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==} engines: {node: '>= 4.0'} dependencies: source-map: 0.6.1 dev: false - /clean-stack/2.2.0: + /clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} - /cli-cursor/3.1.0: + /cli-cursor@3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} dependencies: restore-cursor: 3.1.0 - /cli-spinners/2.6.1: + /cli-spinners@2.6.1: resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} engines: {node: '>=6'} dev: true - /cli-table3/0.6.2: + /cli-table3@0.6.2: resolution: {integrity: sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==} engines: {node: 10.* || >= 12.*} dependencies: @@ -10034,26 +10316,26 @@ packages: '@colors/colors': 1.5.0 dev: true - /cli-truncate/2.1.0: + /cli-truncate@2.1.0: resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} engines: {node: '>=8'} dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 - /cli-truncate/3.1.0: + /cli-truncate@3.1.0: resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: slice-ansi: 5.0.0 string-width: 5.1.2 - /cli-width/3.0.0: + /cli-width@3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} dev: true - /cliui/6.0.0: + /cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} dependencies: string-width: 4.2.3 @@ -10061,118 +10343,118 @@ packages: wrap-ansi: 6.2.0 dev: true - /cliui/7.0.4: + /cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - /clone/1.0.4: + /clone@1.0.4: resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} dev: true - /cluster-key-slot/1.1.2: + /cluster-key-slot@1.1.2: resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} engines: {node: '>=0.10.0'} dev: false - /co/4.6.0: + /co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true - /code-block-writer/11.0.3: + /code-block-writer@11.0.3: resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==} dev: true - /collect-v8-coverage/1.0.1: + /collect-v8-coverage@1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} dev: true - /color-convert/1.9.3: + /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 - /color-convert/2.0.1: + /color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 - /color-name/1.1.3: + /color-name@1.1.3: resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - /color-name/1.1.4: + /color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - /color-support/1.1.3: + /color-support@1.1.3: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true - /colorette/2.0.19: + /colorette@2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} - /colors/1.2.5: + /colors@1.2.5: resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==} engines: {node: '>=0.1.90'} dev: true - /combined-stream/1.0.8: + /combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} engines: {node: '>= 0.8'} dependencies: delayed-stream: 1.0.0 - /commander/2.20.3: + /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - /commander/4.1.1: + /commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} - /commander/5.1.0: + /commander@5.1.0: resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} engines: {node: '>= 6'} dev: false - /commander/7.2.0: + /commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} dev: false - /commander/8.3.0: + /commander@8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} dev: true - /commander/9.3.0: + /commander@9.3.0: resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} engines: {node: ^12.20.0 || >=14} dev: false - /commander/9.5.0: + /commander@9.5.0: resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} requiresBuild: true dev: true optional: true - /common-tags/1.8.2: + /common-tags@1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} dev: true - /compare-func/2.0.0: + /compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 dev: true - /compatfactory/0.0.13_typescript@4.7.4: + /compatfactory@0.0.13(typescript@4.7.4): resolution: {integrity: sha512-k9Sl/Qal3xQPnjAFZaRpl7jlCh0hDEhVaxyiTMfiHKC/w5TYn4Nds+7340X/v1OrAQC5xGBtaD2JpWgPhXWaAw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -10182,21 +10464,21 @@ packages: typescript: 4.7.4 dev: true - /component-bind/1.0.0: + /component-bind@1.0.0: resolution: {integrity: sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=} dev: false - /component-emitter/1.3.0: + /component-emitter@1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} - /component-inherit/0.0.3: + /component-inherit@0.0.3: resolution: {integrity: sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=} dev: false - /concat-map/0.0.1: + /concat-map@0.0.1: resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} - /concat-stream/1.6.2: + /concat-stream@1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} engines: {'0': node >= 0.8} dependencies: @@ -10205,14 +10487,14 @@ packages: readable-stream: 2.3.7 typedarray: 0.0.6 - /config-chain/1.1.13: + /config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} dependencies: ini: 1.3.8 proto-list: 1.2.4 dev: false - /connect/3.7.0: + /connect@3.7.0: resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} engines: {node: '>= 0.10.0'} dependencies: @@ -10224,36 +10506,36 @@ packages: - supports-color dev: true - /consola/2.15.3: + /consola@2.15.3: resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} - /console-control-strings/1.1.0: + /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - /constant-case/3.0.4: + /constant-case@3.0.4: resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} dependencies: no-case: 3.0.4 tslib: 2.5.0 upper-case: 2.0.2 - /constantinople/4.0.1: + /constantinople@4.0.1: resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 - /content-disposition/0.5.4: + /content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} dependencies: safe-buffer: 5.2.1 - /content-type/1.0.4: + /content-type@1.0.4: resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} engines: {node: '>= 0.6'} - /conventional-changelog-angular/5.0.13: + /conventional-changelog-angular@5.0.13: resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} engines: {node: '>=10'} dependencies: @@ -10261,7 +10543,7 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-conventionalcommits/4.6.3: + /conventional-changelog-conventionalcommits@4.6.3: resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} engines: {node: '>=10'} dependencies: @@ -10270,7 +10552,7 @@ packages: q: 1.5.1 dev: true - /conventional-commits-parser/3.2.4: + /conventional-commits-parser@3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} engines: {node: '>=10'} hasBin: true @@ -10283,17 +10565,17 @@ packages: through2: 4.0.2 dev: true - /convert-source-map/1.8.0: + /convert-source-map@1.8.0: resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} dependencies: safe-buffer: 5.1.2 dev: true - /convert-source-map/2.0.0: + /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true - /cookie-parser/1.4.6: + /cookie-parser@1.4.6: resolution: {integrity: sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==} engines: {node: '>= 0.8.0'} dependencies: @@ -10301,85 +10583,86 @@ packages: cookie-signature: 1.0.6 dev: false - /cookie-signature/1.0.6: + /cookie-signature@1.0.6: resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} - /cookie/0.4.1: + /cookie@0.4.1: resolution: {integrity: sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==} engines: {node: '>= 0.6'} dev: false - /cookie/0.4.2: + /cookie@0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} engines: {node: '>= 0.6'} dev: false - /cookie/0.5.0: + /cookie@0.5.0: resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} engines: {node: '>= 0.6'} - /cookiejar/2.1.3: + /cookiejar@2.1.3: resolution: {integrity: sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==} dev: true - /cookiejar/2.1.4: + /cookiejar@2.1.4: resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==} dev: false - /core-js-compat/3.23.3: + /core-js-compat@3.23.3: resolution: {integrity: sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==} dependencies: browserslist: 4.21.1 semver: 7.0.0 dev: true - /core-js/3.26.0: + /core-js@3.26.0: resolution: {integrity: sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==} requiresBuild: true - /core-js/3.6.5: + /core-js@3.6.5: resolution: {integrity: sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==} deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. requiresBuild: true dev: false - /core-util-is/1.0.3: + /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - /cors/2.8.5: + /cors@2.8.5: resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} engines: {node: '>= 0.10'} dependencies: object-assign: 4.1.1 vary: 1.1.2 - /corser/2.0.1: + /corser@2.0.1: resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} engines: {node: '>= 0.4.0'} dev: true - /cosmiconfig-toml-loader/1.0.0: + /cosmiconfig-toml-loader@1.0.0: resolution: {integrity: sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==} dependencies: '@iarna/toml': 2.2.5 - /cosmiconfig-typescript-loader/2.0.2_7cep2inysldxstbcrxlp3njwym: + /cosmiconfig-typescript-loader@2.0.2(@types/node@17.0.45)(cosmiconfig@7.0.1)(typescript@4.9.3): resolution: {integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' + cosmiconfig: '>=7' typescript: '>=3' dependencies: '@types/node': 17.0.45 cosmiconfig: 7.0.1 - ts-node: 10.8.2_7cep2inysldxstbcrxlp3njwym + ts-node: 10.8.2(@types/node@17.0.45)(typescript@4.9.3) typescript: 4.9.3 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' dev: true - /cosmiconfig-typescript-loader/4.3.0_qilgflazl3ul6lmrg6ergratta: + /cosmiconfig-typescript-loader@4.3.0(@types/node@18.11.10)(cosmiconfig@7.0.1)(ts-node@10.9.1)(typescript@4.9.3): resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} engines: {node: '>=12', npm: '>=6'} peerDependencies: @@ -10388,12 +10671,13 @@ packages: ts-node: '>=10' typescript: '>=3' dependencies: + '@types/node': 18.11.10 cosmiconfig: 7.0.1 - ts-node: 10.9.1_typescript@4.9.3 + ts-node: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) typescript: 4.9.3 dev: true - /cosmiconfig/7.0.1: + /cosmiconfig@7.0.1: resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} engines: {node: '>=10'} dependencies: @@ -10403,7 +10687,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig/8.0.0: + /cosmiconfig@8.0.0: resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==} engines: {node: '>=14'} dependencies: @@ -10413,13 +10697,13 @@ packages: path-type: 4.0.0 dev: true - /create-require/1.1.1: + /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - /crelt/1.0.5: + /crelt@1.0.5: resolution: {integrity: sha512-+BO9wPPi+DWTDcNYhr/W90myha8ptzftZT+LwcmUbbok0rcP/fequmFYCw8NMoH7pkAZQzU78b3kYrlua5a9eA==} - /cross-env/7.0.3: + /cross-env@7.0.3: resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} hasBin: true @@ -10427,7 +10711,7 @@ packages: cross-spawn: 7.0.3 dev: true - /cross-fetch/3.1.5: + /cross-fetch@3.1.5: resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} dependencies: node-fetch: 2.6.7 @@ -10435,7 +10719,7 @@ packages: - encoding dev: true - /cross-spawn/6.0.5: + /cross-spawn@6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} dependencies: @@ -10446,7 +10730,7 @@ packages: which: 1.3.1 dev: true - /cross-spawn/7.0.3: + /cross-spawn@7.0.3: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} dependencies: @@ -10454,7 +10738,7 @@ packages: shebang-command: 2.0.0 which: 2.0.2 - /cross-undici-fetch/0.4.11: + /cross-undici-fetch@0.4.11: resolution: {integrity: sha512-pRp+EWewyOPYIeUvwOqCIqylCFWqlBwwr6nlZB38v3PhWxS1RYfSgHUJApYTT8jm71SbL5p4qg5kUQv6ZyS24A==} dependencies: abort-controller: 3.0.0 @@ -10467,29 +10751,29 @@ packages: transitivePeerDependencies: - encoding - /crosspath/1.0.0: + /crosspath@1.0.0: resolution: {integrity: sha512-mpjkSErNO6vioL/Cde2aF4UBysPFEMyn+1AN1t7Oc4yqvzSRWe8iBte4P8BHyjo64OmC+ZBxwjIqmpSpIWiQ7Q==} engines: {node: '>=10.0.0'} dependencies: '@types/node': 16.11.43 dev: true - /crypt/0.0.2: + /crypt@0.0.2: resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} dev: false - /crypto-random-string/2.0.0: + /crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} dev: true - /css-rules/1.1.0: + /css-rules@1.1.0: resolution: {integrity: sha512-7L6krLIRwAEVCaVKyCEL6PQjQXUmf8DM9bWYKutlZd0DqOe0SiKIGQOkFb59AjDBb+3If7SDp3X8UlzDAgYSow==} dependencies: cssom: 0.5.0 dev: false - /css-select/4.3.0: + /css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} dependencies: boolbase: 1.0.0 @@ -10499,7 +10783,7 @@ packages: nth-check: 2.1.1 dev: false - /css-select/5.1.0: + /css-select@5.1.0: resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} dependencies: boolbase: 1.0.0 @@ -10509,57 +10793,57 @@ packages: nth-check: 2.1.1 dev: false - /css-what/6.1.0: + /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} dev: false - /cssesc/3.0.0: + /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} hasBin: true dev: true - /cssfilter/0.0.10: + /cssfilter@0.0.10: resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} dev: false - /cssom/0.3.8: + /cssom@0.3.8: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true - /cssom/0.4.4: + /cssom@0.4.4: resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} dev: true - /cssom/0.5.0: + /cssom@0.5.0: resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} - /cssstyle/2.3.0: + /cssstyle@2.3.0: resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} engines: {node: '>=8'} dependencies: cssom: 0.3.8 dev: true - /csstype/2.6.20: + /csstype@2.6.20: resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} - /csstype/3.1.0: + /csstype@3.1.0: resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} dev: true - /dargs/7.0.0: + /dargs@7.0.0: resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} engines: {node: '>=8'} dev: true - /data-uri-to-buffer/3.0.1: + /data-uri-to-buffer@3.0.1: resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} engines: {node: '>= 6'} dev: false - /data-urls/2.0.0: + /data-urls@2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} engines: {node: '>=10'} dependencies: @@ -10568,7 +10852,7 @@ packages: whatwg-url: 8.7.0 dev: true - /data-urls/3.0.2: + /data-urls@3.0.2: resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} engines: {node: '>=12'} dependencies: @@ -10577,31 +10861,31 @@ packages: whatwg-url: 11.0.0 dev: true - /dataloader/2.1.0: + /dataloader@2.1.0: resolution: {integrity: sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==} - /dataloader/2.2.2: + /dataloader@2.2.2: resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} dev: true - /date-fns/2.29.3: + /date-fns@2.29.3: resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} engines: {node: '>=0.11'} dev: false - /dayjs/1.11.7: + /dayjs@1.11.7: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} dev: false - /de-indent/1.0.2: + /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} dev: true - /debounce/1.2.1: + /debounce@1.2.1: resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} dev: true - /debug/2.6.9: + /debug@2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: supports-color: '*' @@ -10611,7 +10895,7 @@ packages: dependencies: ms: 2.0.0 - /debug/3.1.0: + /debug@3.1.0: resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} peerDependencies: supports-color: '*' @@ -10622,7 +10906,7 @@ packages: ms: 2.0.0 dev: false - /debug/3.2.7: + /debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: supports-color: '*' @@ -10633,7 +10917,7 @@ packages: ms: 2.1.3 dev: true - /debug/4.3.3_supports-color@8.1.1: + /debug@4.3.3(supports-color@8.1.1): resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} engines: {node: '>=6.0'} peerDependencies: @@ -10646,18 +10930,7 @@ packages: supports-color: 8.1.1 dev: true - /debug/4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - - /debug/4.3.4_supports-color@9.2.2: + /debug@4.3.4(supports-color@9.2.2): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} peerDependencies: @@ -10668,9 +10941,8 @@ packages: dependencies: ms: 2.1.2 supports-color: 9.2.2 - dev: false - /decamelize-keys/1.1.0: + /decamelize-keys@1.1.0: resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: @@ -10678,36 +10950,36 @@ packages: map-obj: 1.0.1 dev: true - /decamelize/1.2.0: + /decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} dev: true - /decamelize/4.0.0: + /decamelize@4.0.0: resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} engines: {node: '>=10'} dev: true - /decimal.js/10.3.1: + /decimal.js@10.3.1: resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} dev: true - /decimal.js/10.4.3: + /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: true - /dedent/0.7.0: + /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /deep-eql/4.1.3: + /deep-eql@4.1.3: resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} engines: {node: '>=6'} dependencies: type-detect: 4.0.8 dev: true - /deep-equal/2.0.5: + /deep-equal@2.0.5: resolution: {integrity: sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw==} dependencies: call-bind: 1.0.2 @@ -10727,37 +10999,36 @@ packages: which-typed-array: 1.1.8 dev: true - /deep-is/0.1.4: + /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} - /deepmerge/4.2.2: + /deepmerge@4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} dev: true - /deepmerge/4.3.0: + /deepmerge@4.3.0: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} - dev: false - /defaults/1.0.3: + /defaults@1.0.3: resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} dependencies: clone: 1.0.4 dev: true - /define-properties/1.1.4: + /define-properties@1.1.4: resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} engines: {node: '>= 0.4'} dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 - /defu/6.1.2: + /defu@6.1.2: resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} dev: true - /degenerator/3.0.2: + /degenerator@3.0.2: resolution: {integrity: sha512-c0mef3SNQo56t6urUU6tdQAs+ThoD0o9B9MJ8HEt7NQcGEILCRFqQb7ZbP9JAv+QF1Ky5plydhMR/IrqWDm+TQ==} engines: {node: '>= 6'} dependencies: @@ -10767,116 +11038,116 @@ packages: vm2: 3.9.14 dev: false - /delayed-stream/1.0.0: + /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - /delegates/1.0.0: + /delegates@1.0.0: resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - /denque/2.1.0: + /denque@2.1.0: resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} engines: {node: '>=0.10'} dev: false - /depd/1.1.2: + /depd@1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} dev: false - /depd/2.0.0: + /depd@2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} - /dependency-graph/0.11.0: + /dependency-graph@0.11.0: resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} engines: {node: '>= 0.6.0'} dev: true - /destroy/1.2.0: + /destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - /detect-indent/6.1.0: + /detect-indent@6.1.0: resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} engines: {node: '>=8'} dev: true - /detect-libc/2.0.1: + /detect-libc@2.0.1: resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} engines: {node: '>=8'} - /detect-newline/3.1.0: + /detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} dev: true - /detect-node/2.0.4: + /detect-node@2.0.4: resolution: {integrity: sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==} dev: false - /dezalgo/1.0.4: + /dezalgo@1.0.4: resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} dependencies: asap: 2.0.6 wrappy: 1.0.2 - /diacritics/1.3.0: + /diacritics@1.3.0: resolution: {integrity: sha512-wlwEkqcsaxvPJML+rDh/2iS824jbREk6DUMUKkEaSlxdYHeS43cClJtsWglvw2RfeXGm6ohKDqsXteJ5sP5enA==} dev: true - /diff-sequences/27.5.1: + /diff-sequences@27.5.1: resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /diff-sequences/28.1.1: + /diff-sequences@28.1.1: resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dev: true - /diff-sequences/29.3.1: + /diff-sequences@29.3.1: resolution: {integrity: sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /diff/4.0.2: + /diff@4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - /diff/5.0.0: + /diff@5.0.0: resolution: {integrity: sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==} engines: {node: '>=0.3.1'} dev: true - /diff/5.1.0: + /diff@5.1.0: resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} engines: {node: '>=0.3.1'} dev: true - /dir-glob/3.0.1: + /dir-glob@3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} dependencies: path-type: 4.0.0 - /doctrine/3.0.0: + /doctrine@3.0.0: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 - /doctypes/1.1.0: + /doctypes@1.1.0: resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} - /dom-serializer/1.4.1: + /dom-serializer@1.4.1: resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dependencies: domelementtype: 2.3.0 domhandler: 4.3.1 entities: 2.1.0 - /dom-serializer/2.0.0: + /dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: domelementtype: 2.3.0 @@ -10884,51 +11155,51 @@ packages: entities: 4.4.0 dev: false - /domelementtype/2.3.0: + /domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} - /domexception/2.0.1: + /domexception@2.0.1: resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} engines: {node: '>=8'} dependencies: webidl-conversions: 5.0.0 dev: true - /domexception/4.0.0: + /domexception@4.0.0: resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} engines: {node: '>=12'} dependencies: webidl-conversions: 7.0.0 dev: true - /domhandler/3.3.0: + /domhandler@3.3.0: resolution: {integrity: sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==} engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 dev: false - /domhandler/4.3.1: + /domhandler@4.3.1: resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 - /domhandler/5.0.3: + /domhandler@5.0.3: resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} engines: {node: '>= 4'} dependencies: domelementtype: 2.3.0 dev: false - /domutils/2.8.0: + /domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} dependencies: dom-serializer: 1.4.1 domelementtype: 2.3.0 domhandler: 4.3.1 - /domutils/3.0.1: + /domutils@3.0.1: resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} dependencies: dom-serializer: 2.0.0 @@ -10936,47 +11207,47 @@ packages: domhandler: 5.0.3 dev: false - /dot-case/3.0.4: + /dot-case@3.0.4: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 tslib: 2.5.0 - /dot-prop/5.3.0: + /dot-prop@5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} engines: {node: '>=8'} dependencies: is-obj: 2.0.0 dev: true - /dotenv/16.0.3: + /dotenv@16.0.3: resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} engines: {node: '>=12'} dev: true - /dset/3.1.2: + /dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} engines: {node: '>=4'} - /duplexer/0.1.2: + /duplexer@0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} dev: false - /dynamic-dedupe/0.3.0: + /dynamic-dedupe@0.3.0: resolution: {integrity: sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==} dependencies: xtend: 4.0.2 dev: false - /eastasianwidth/0.2.0: + /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - /ecdsa-sig-formatter/1.0.11: + /ecdsa-sig-formatter@1.0.11: resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} dependencies: safe-buffer: 5.2.1 - /editorconfig/0.15.3: + /editorconfig@0.15.3: resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==} hasBin: true dependencies: @@ -10986,64 +11257,63 @@ packages: sigmund: 1.0.1 dev: false - /ee-first/1.1.1: + /ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - /ejs/3.1.8: + /ejs@3.1.8: resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: jake: 10.8.5 - /electron-to-chromium/1.4.178: + /electron-to-chromium@1.4.178: resolution: {integrity: sha512-aWuhJXkwIdoQzGR8p2QvR3N0OzdUKZSP8+P/hzuMzNQIPZoEa8HiCGM75bQBHjyz+eKT5PB9dVCzkK/tyQ4B5Q==} - dev: true - /emittery/0.13.1: + /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} engines: {node: '>=12'} dev: true - /emittery/0.8.1: + /emittery@0.8.1: resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} engines: {node: '>=10'} dev: true - /emmet/2.3.6: + /emmet@2.3.6: resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==} dependencies: '@emmetio/abbreviation': 2.2.3 '@emmetio/css-abbreviation': 2.1.4 dev: true - /emoji-regex/8.0.0: + /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - /emoji-regex/9.2.2: + /emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - /emojis-list/3.0.0: + /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} dev: true - /encodeurl/1.0.2: + /encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} - /encoding-japanese/2.0.0: + /encoding-japanese@2.0.0: resolution: {integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==} engines: {node: '>=8.10.0'} dev: false - /end-of-stream/1.4.4: + /end-of-stream@1.4.4: resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} dependencies: once: 1.4.0 dev: true - /engine.io-client/3.5.2: + /engine.io-client@3.5.2: resolution: {integrity: sha512-QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==} dependencies: component-emitter: 1.3.0 @@ -11063,12 +11333,12 @@ packages: - utf-8-validate dev: false - /engine.io-client/4.1.4: + /engine.io-client@4.1.4: resolution: {integrity: sha512-843fqAdKeUMFqKi1sSjnR11tJ4wi8sIefu6+JC1OzkkJBmjtc/gM/rZ53tJfu5Iae/3gApm5veoS+v+gtT0+Fg==} dependencies: base64-arraybuffer: 0.1.4 component-emitter: 1.3.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) engine.io-parser: 4.0.3 has-cors: 1.1.0 parseqs: 0.0.6 @@ -11082,11 +11352,11 @@ packages: - utf-8-validate dev: false - /engine.io-client/6.2.2: + /engine.io-client@6.2.2: resolution: {integrity: sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) engine.io-parser: 5.0.4 ws: 8.2.3 xmlhttprequest-ssl: 2.0.0 @@ -11096,7 +11366,7 @@ packages: - utf-8-validate dev: false - /engine.io-parser/2.2.1: + /engine.io-parser@2.2.1: resolution: {integrity: sha512-x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==} dependencies: after: 0.8.2 @@ -11106,19 +11376,19 @@ packages: has-binary2: 1.0.3 dev: false - /engine.io-parser/4.0.3: + /engine.io-parser@4.0.3: resolution: {integrity: sha512-xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA==} engines: {node: '>=8.0.0'} dependencies: base64-arraybuffer: 0.1.4 dev: false - /engine.io-parser/5.0.4: + /engine.io-parser@5.0.4: resolution: {integrity: sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg==} engines: {node: '>=10.0.0'} dev: false - /enhanced-resolve/2.3.0: + /enhanced-resolve@2.3.0: resolution: {integrity: sha512-n6e4bsCpzsP0OB76X+vEWhySUQI8GHPVFVK+3QkX35tbryy2WoeGeK5kQ+oxzgDVHjIZyz5fyS60Mi3EpQLc0Q==} engines: {node: '>=0.6'} dependencies: @@ -11128,34 +11398,33 @@ packages: tapable: 0.2.9 dev: false - /enhanced-resolve/5.12.0: + /enhanced-resolve@5.12.0: resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} engines: {node: '>=10.13.0'} dependencies: graceful-fs: 4.2.10 tapable: 2.2.1 - dev: true - /entities/2.1.0: + /entities@2.1.0: resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} - /entities/4.4.0: + /entities@4.4.0: resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==} engines: {node: '>=0.12'} - /errno/0.1.8: + /errno@0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true dependencies: prr: 1.0.1 dev: false - /error-ex/1.3.2: + /error-ex@1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 - /es-abstract/1.20.1: + /es-abstract@1.20.1: resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} engines: {node: '>= 0.4'} dependencies: @@ -11183,7 +11452,7 @@ packages: string.prototype.trimstart: 1.0.5 unbox-primitive: 1.0.2 - /es-get-iterator/1.1.2: + /es-get-iterator@1.1.2: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: call-bind: 1.0.2 @@ -11196,11 +11465,10 @@ packages: isarray: 2.0.5 dev: true - /es-module-lexer/0.9.3: + /es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - dev: true - /es-to-primitive/1.2.1: + /es-to-primitive@1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} engines: {node: '>= 0.4'} dependencies: @@ -11208,7 +11476,7 @@ packages: is-date-object: 1.0.5 is-symbol: 1.0.4 - /esbuild-android-64/0.14.48: + /esbuild-android-64@0.14.48: resolution: {integrity: sha512-3aMjboap/kqwCUpGWIjsk20TtxVoKck8/4Tu19rubh7t5Ra0Yrpg30Mt1QXXlipOazrEceGeWurXKeFJgkPOUg==} engines: {node: '>=12'} cpu: [x64] @@ -11216,7 +11484,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-64/0.15.15: + /esbuild-android-64@0.15.15: resolution: {integrity: sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==} engines: {node: '>=12'} cpu: [x64] @@ -11224,7 +11492,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-64/0.15.7: + /esbuild-android-64@0.15.7: resolution: {integrity: sha512-p7rCvdsldhxQr3YHxptf1Jcd86dlhvc3EQmQJaZzzuAxefO9PvcI0GLOa5nCWem1AJ8iMRu9w0r5TG8pHmbi9w==} engines: {node: '>=12'} cpu: [x64] @@ -11232,7 +11500,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.14.48: + /esbuild-android-arm64@0.14.48: resolution: {integrity: sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g==} engines: {node: '>=12'} cpu: [arm64] @@ -11240,7 +11508,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.15.15: + /esbuild-android-arm64@0.15.15: resolution: {integrity: sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==} engines: {node: '>=12'} cpu: [arm64] @@ -11248,7 +11516,7 @@ packages: requiresBuild: true optional: true - /esbuild-android-arm64/0.15.7: + /esbuild-android-arm64@0.15.7: resolution: {integrity: sha512-L775l9ynJT7rVqRM5vo+9w5g2ysbOCfsdLV4CWanTZ1k/9Jb3IYlQ06VCI1edhcosTYJRECQFJa3eAvkx72eyQ==} engines: {node: '>=12'} cpu: [arm64] @@ -11256,7 +11524,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.14.48: + /esbuild-darwin-64@0.14.48: resolution: {integrity: sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA==} engines: {node: '>=12'} cpu: [x64] @@ -11264,7 +11532,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.15.15: + /esbuild-darwin-64@0.15.15: resolution: {integrity: sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==} engines: {node: '>=12'} cpu: [x64] @@ -11272,7 +11540,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-64/0.15.7: + /esbuild-darwin-64@0.15.7: resolution: {integrity: sha512-KGPt3r1c9ww009t2xLB6Vk0YyNOXh7hbjZ3EecHoVDxgtbUlYstMPDaReimKe6eOEfyY4hBEEeTvKwPsiH5WZg==} engines: {node: '>=12'} cpu: [x64] @@ -11280,7 +11548,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.14.48: + /esbuild-darwin-arm64@0.14.48: resolution: {integrity: sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA==} engines: {node: '>=12'} cpu: [arm64] @@ -11288,7 +11556,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.15.15: + /esbuild-darwin-arm64@0.15.15: resolution: {integrity: sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==} engines: {node: '>=12'} cpu: [arm64] @@ -11296,7 +11564,7 @@ packages: requiresBuild: true optional: true - /esbuild-darwin-arm64/0.15.7: + /esbuild-darwin-arm64@0.15.7: resolution: {integrity: sha512-kBIHvtVqbSGajN88lYMnR3aIleH3ABZLLFLxwL2stiuIGAjGlQW741NxVTpUHQXUmPzxi6POqc9npkXa8AcSZQ==} engines: {node: '>=12'} cpu: [arm64] @@ -11304,7 +11572,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.14.48: + /esbuild-freebsd-64@0.14.48: resolution: {integrity: sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA==} engines: {node: '>=12'} cpu: [x64] @@ -11312,7 +11580,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.15.15: + /esbuild-freebsd-64@0.15.15: resolution: {integrity: sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==} engines: {node: '>=12'} cpu: [x64] @@ -11320,7 +11588,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-64/0.15.7: + /esbuild-freebsd-64@0.15.7: resolution: {integrity: sha512-hESZB91qDLV5MEwNxzMxPfbjAhOmtfsr9Wnuci7pY6TtEh4UDuevmGmkUIjX/b+e/k4tcNBMf7SRQ2mdNuK/HQ==} engines: {node: '>=12'} cpu: [x64] @@ -11328,7 +11596,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.14.48: + /esbuild-freebsd-arm64@0.14.48: resolution: {integrity: sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw==} engines: {node: '>=12'} cpu: [arm64] @@ -11336,7 +11604,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.15.15: + /esbuild-freebsd-arm64@0.15.15: resolution: {integrity: sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==} engines: {node: '>=12'} cpu: [arm64] @@ -11344,7 +11612,7 @@ packages: requiresBuild: true optional: true - /esbuild-freebsd-arm64/0.15.7: + /esbuild-freebsd-arm64@0.15.7: resolution: {integrity: sha512-dLFR0ChH5t+b3J8w0fVKGvtwSLWCv7GYT2Y2jFGulF1L5HftQLzVGN+6pi1SivuiVSmTh28FwUhi9PwQicXI6Q==} engines: {node: '>=12'} cpu: [arm64] @@ -11352,7 +11620,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.14.48: + /esbuild-linux-32@0.14.48: resolution: {integrity: sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ==} engines: {node: '>=12'} cpu: [ia32] @@ -11360,7 +11628,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.15.15: + /esbuild-linux-32@0.15.15: resolution: {integrity: sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==} engines: {node: '>=12'} cpu: [ia32] @@ -11368,7 +11636,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-32/0.15.7: + /esbuild-linux-32@0.15.7: resolution: {integrity: sha512-v3gT/LsONGUZcjbt2swrMjwxo32NJzk+7sAgtxhGx1+ZmOFaTRXBAi1PPfgpeo/J//Un2jIKm/I+qqeo4caJvg==} engines: {node: '>=12'} cpu: [ia32] @@ -11376,7 +11644,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.14.48: + /esbuild-linux-64@0.14.48: resolution: {integrity: sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug==} engines: {node: '>=12'} cpu: [x64] @@ -11384,7 +11652,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.15.15: + /esbuild-linux-64@0.15.15: resolution: {integrity: sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==} engines: {node: '>=12'} cpu: [x64] @@ -11392,7 +11660,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-64/0.15.7: + /esbuild-linux-64@0.15.7: resolution: {integrity: sha512-LxXEfLAKwOVmm1yecpMmWERBshl+Kv5YJ/1KnyAr6HRHFW8cxOEsEfisD3sVl/RvHyW//lhYUVSuy9jGEfIRAQ==} engines: {node: '>=12'} cpu: [x64] @@ -11400,31 +11668,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm/0.14.48: - resolution: {integrity: sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - /esbuild-linux-arm/0.15.15: - resolution: {integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - /esbuild-linux-arm/0.15.7: - resolution: {integrity: sha512-JKgAHtMR5f75wJTeuNQbyznZZa+pjiUHV7sRZp42UNdyXC6TiUYMW/8z8yIBAr2Fpad8hM1royZKQisqPABPvQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - - /esbuild-linux-arm64/0.14.48: + /esbuild-linux-arm64@0.14.48: resolution: {integrity: sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw==} engines: {node: '>=12'} cpu: [arm64] @@ -11432,7 +11676,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm64/0.15.15: + /esbuild-linux-arm64@0.15.15: resolution: {integrity: sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==} engines: {node: '>=12'} cpu: [arm64] @@ -11440,7 +11684,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-arm64/0.15.7: + /esbuild-linux-arm64@0.15.7: resolution: {integrity: sha512-P3cfhudpzWDkglutWgXcT2S7Ft7o2e3YDMrP1n0z2dlbUZghUkKCyaWw0zhp4KxEEzt/E7lmrtRu/pGWnwb9vw==} engines: {node: '>=12'} cpu: [arm64] @@ -11448,7 +11692,31 @@ packages: requiresBuild: true optional: true - /esbuild-linux-mips64le/0.14.48: + /esbuild-linux-arm@0.14.48: + resolution: {integrity: sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-arm@0.15.15: + resolution: {integrity: sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-arm@0.15.7: + resolution: {integrity: sha512-JKgAHtMR5f75wJTeuNQbyznZZa+pjiUHV7sRZp42UNdyXC6TiUYMW/8z8yIBAr2Fpad8hM1royZKQisqPABPvQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-mips64le@0.14.48: resolution: {integrity: sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA==} engines: {node: '>=12'} cpu: [mips64el] @@ -11456,7 +11724,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-mips64le/0.15.15: + /esbuild-linux-mips64le@0.15.15: resolution: {integrity: sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==} engines: {node: '>=12'} cpu: [mips64el] @@ -11464,7 +11732,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-mips64le/0.15.7: + /esbuild-linux-mips64le@0.15.7: resolution: {integrity: sha512-T7XKuxl0VpeFLCJXub6U+iybiqh0kM/bWOTb4qcPyDDwNVhLUiPcGdG2/0S7F93czUZOKP57YiLV8YQewgLHKw==} engines: {node: '>=12'} cpu: [mips64el] @@ -11472,7 +11740,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.14.48: + /esbuild-linux-ppc64le@0.14.48: resolution: {integrity: sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ==} engines: {node: '>=12'} cpu: [ppc64] @@ -11480,7 +11748,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.15.15: + /esbuild-linux-ppc64le@0.15.15: resolution: {integrity: sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==} engines: {node: '>=12'} cpu: [ppc64] @@ -11488,7 +11756,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-ppc64le/0.15.7: + /esbuild-linux-ppc64le@0.15.7: resolution: {integrity: sha512-6mGuC19WpFN7NYbecMIJjeQgvDb5aMuvyk0PDYBJrqAEMkTwg3Z98kEKuCm6THHRnrgsdr7bp4SruSAxEM4eJw==} engines: {node: '>=12'} cpu: [ppc64] @@ -11496,7 +11764,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-riscv64/0.14.48: + /esbuild-linux-riscv64@0.14.48: resolution: {integrity: sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA==} engines: {node: '>=12'} cpu: [riscv64] @@ -11504,7 +11772,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-riscv64/0.15.15: + /esbuild-linux-riscv64@0.15.15: resolution: {integrity: sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==} engines: {node: '>=12'} cpu: [riscv64] @@ -11512,7 +11780,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-riscv64/0.15.7: + /esbuild-linux-riscv64@0.15.7: resolution: {integrity: sha512-uUJsezbswAYo/X7OU/P+PuL/EI9WzxsEQXDekfwpQ23uGiooxqoLFAPmXPcRAt941vjlY9jtITEEikWMBr+F/g==} engines: {node: '>=12'} cpu: [riscv64] @@ -11520,7 +11788,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-s390x/0.14.48: + /esbuild-linux-s390x@0.14.48: resolution: {integrity: sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g==} engines: {node: '>=12'} cpu: [s390x] @@ -11528,7 +11796,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-s390x/0.15.15: + /esbuild-linux-s390x@0.15.15: resolution: {integrity: sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==} engines: {node: '>=12'} cpu: [s390x] @@ -11536,7 +11804,7 @@ packages: requiresBuild: true optional: true - /esbuild-linux-s390x/0.15.7: + /esbuild-linux-s390x@0.15.7: resolution: {integrity: sha512-+tO+xOyTNMc34rXlSxK7aCwJgvQyffqEM5MMdNDEeMU3ss0S6wKvbBOQfgd5jRPblfwJ6b+bKiz0g5nABpY0QQ==} engines: {node: '>=12'} cpu: [s390x] @@ -11544,7 +11812,7 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.14.48: + /esbuild-netbsd-64@0.14.48: resolution: {integrity: sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw==} engines: {node: '>=12'} cpu: [x64] @@ -11552,7 +11820,7 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.15.15: + /esbuild-netbsd-64@0.15.15: resolution: {integrity: sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==} engines: {node: '>=12'} cpu: [x64] @@ -11560,7 +11828,7 @@ packages: requiresBuild: true optional: true - /esbuild-netbsd-64/0.15.7: + /esbuild-netbsd-64@0.15.7: resolution: {integrity: sha512-yVc4Wz+Pu3cP5hzm5kIygNPrjar/v5WCSoRmIjCPWfBVJkZNb5brEGKUlf+0Y759D48BCWa0WHrWXaNy0DULTQ==} engines: {node: '>=12'} cpu: [x64] @@ -11568,7 +11836,7 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.14.48: + /esbuild-openbsd-64@0.14.48: resolution: {integrity: sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA==} engines: {node: '>=12'} cpu: [x64] @@ -11576,7 +11844,7 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.15.15: + /esbuild-openbsd-64@0.15.15: resolution: {integrity: sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==} engines: {node: '>=12'} cpu: [x64] @@ -11584,7 +11852,7 @@ packages: requiresBuild: true optional: true - /esbuild-openbsd-64/0.15.7: + /esbuild-openbsd-64@0.15.7: resolution: {integrity: sha512-GsimbwC4FSR4lN3wf8XmTQ+r8/0YSQo21rWDL0XFFhLHKlzEA4SsT1Tl8bPYu00IU6UWSJ+b3fG/8SB69rcuEQ==} engines: {node: '>=12'} cpu: [x64] @@ -11592,7 +11860,7 @@ packages: requiresBuild: true optional: true - /esbuild-sunos-64/0.14.48: + /esbuild-sunos-64@0.14.48: resolution: {integrity: sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA==} engines: {node: '>=12'} cpu: [x64] @@ -11600,7 +11868,7 @@ packages: requiresBuild: true optional: true - /esbuild-sunos-64/0.15.15: + /esbuild-sunos-64@0.15.15: resolution: {integrity: sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==} engines: {node: '>=12'} cpu: [x64] @@ -11608,7 +11876,7 @@ packages: requiresBuild: true optional: true - /esbuild-sunos-64/0.15.7: + /esbuild-sunos-64@0.15.7: resolution: {integrity: sha512-8CDI1aL/ts0mDGbWzjEOGKXnU7p3rDzggHSBtVryQzkSOsjCHRVe0iFYUuhczlxU1R3LN/E7HgUO4NXzGGP/Ag==} engines: {node: '>=12'} cpu: [x64] @@ -11616,7 +11884,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.14.48: + /esbuild-windows-32@0.14.48: resolution: {integrity: sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg==} engines: {node: '>=12'} cpu: [ia32] @@ -11624,7 +11892,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.15.15: + /esbuild-windows-32@0.15.15: resolution: {integrity: sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==} engines: {node: '>=12'} cpu: [ia32] @@ -11632,7 +11900,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-32/0.15.7: + /esbuild-windows-32@0.15.7: resolution: {integrity: sha512-cOnKXUEPS8EGCzRSFa1x6NQjGhGsFlVgjhqGEbLTPsA7x4RRYiy2RKoArNUU4iR2vHmzqS5Gr84MEumO/wxYKA==} engines: {node: '>=12'} cpu: [ia32] @@ -11640,7 +11908,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.14.48: + /esbuild-windows-64@0.14.48: resolution: {integrity: sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA==} engines: {node: '>=12'} cpu: [x64] @@ -11648,7 +11916,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.15.15: + /esbuild-windows-64@0.15.15: resolution: {integrity: sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==} engines: {node: '>=12'} cpu: [x64] @@ -11656,7 +11924,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-64/0.15.7: + /esbuild-windows-64@0.15.7: resolution: {integrity: sha512-7MI08Ec2sTIDv+zH6StNBKO+2hGUYIT42GmFyW6MBBWWtJhTcQLinKS6ldIN1d52MXIbiJ6nXyCJ+LpL4jBm3Q==} engines: {node: '>=12'} cpu: [x64] @@ -11664,7 +11932,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.14.48: + /esbuild-windows-arm64@0.14.48: resolution: {integrity: sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g==} engines: {node: '>=12'} cpu: [arm64] @@ -11672,7 +11940,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.15.15: + /esbuild-windows-arm64@0.15.15: resolution: {integrity: sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==} engines: {node: '>=12'} cpu: [arm64] @@ -11680,7 +11948,7 @@ packages: requiresBuild: true optional: true - /esbuild-windows-arm64/0.15.7: + /esbuild-windows-arm64@0.15.7: resolution: {integrity: sha512-R06nmqBlWjKHddhRJYlqDd3Fabx9LFdKcjoOy08YLimwmsswlFBJV4rXzZCxz/b7ZJXvrZgj8DDv1ewE9+StMw==} engines: {node: '>=12'} cpu: [arm64] @@ -11688,7 +11956,7 @@ packages: requiresBuild: true optional: true - /esbuild/0.14.48: + /esbuild@0.14.48: resolution: {integrity: sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==} engines: {node: '>=12'} hasBin: true @@ -11715,7 +11983,7 @@ packages: esbuild-windows-64: 0.14.48 esbuild-windows-arm64: 0.14.48 - /esbuild/0.15.15: + /esbuild@0.15.15: resolution: {integrity: sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==} engines: {node: '>=12'} hasBin: true @@ -11744,7 +12012,7 @@ packages: esbuild-windows-64: 0.15.15 esbuild-windows-arm64: 0.15.15 - /esbuild/0.15.7: + /esbuild@0.15.7: resolution: {integrity: sha512-7V8tzllIbAQV1M4QoE52ImKu8hT/NLGlGXkiDsbEU5PS6K8Mn09ZnYoS+dcmHxOS9CRsV4IRAMdT3I67IyUNXw==} engines: {node: '>=12'} hasBin: true @@ -11772,32 +12040,32 @@ packages: esbuild-windows-64: 0.15.7 esbuild-windows-arm64: 0.15.7 - /escalade/3.1.1: + /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} - /escape-goat/3.0.0: + /escape-goat@3.0.0: resolution: {integrity: sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==} engines: {node: '>=10'} dev: false - /escape-html/1.0.3: + /escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} - /escape-string-regexp/1.0.5: + /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} - /escape-string-regexp/2.0.0: + /escape-string-regexp@2.0.0: resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} engines: {node: '>=8'} dev: true - /escape-string-regexp/4.0.0: + /escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - /escodegen/1.14.3: + /escodegen@1.14.3: resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} engines: {node: '>=4.0'} hasBin: true @@ -11810,7 +12078,7 @@ packages: source-map: 0.6.1 dev: false - /escodegen/2.0.0: + /escodegen@2.0.0: resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} engines: {node: '>=6.0'} hasBin: true @@ -11823,7 +12091,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier/8.5.0_eslint@8.29.0: + /eslint-config-prettier@8.5.0(eslint@8.29.0): resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: @@ -11832,7 +12100,7 @@ packages: eslint: 8.29.0 dev: true - /eslint-config-prettier/8.6.0_eslint@8.19.0: + /eslint-config-prettier@8.6.0(eslint@8.19.0): resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} hasBin: true peerDependencies: @@ -11841,7 +12109,7 @@ packages: eslint: 8.19.0 dev: true - /eslint-plugin-prettier/4.2.1_eabs6augosioka4cd2cz5tdama: + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.5.0)(eslint@8.29.0)(prettier@2.8.4): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -11853,57 +12121,12 @@ packages: optional: true dependencies: eslint: 8.29.0 - eslint-config-prettier: 8.5.0_eslint@8.29.0 + eslint-config-prettier: 8.5.0(eslint@8.29.0) prettier: 2.8.4 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-prettier/4.2.1_eslint@8.24.0: - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.24.0 - prettier-linter-helpers: 1.0.0 - dev: true - - /eslint-plugin-prettier/4.2.1_eslint@8.28.0: - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.28.0 - prettier-linter-helpers: 1.0.0 - dev: true - - /eslint-plugin-prettier/4.2.1_eslint@8.29.0: - resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - eslint: '>=7.28.0' - eslint-config-prettier: '*' - prettier: '>=2.0.0' - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.29.0 - prettier-linter-helpers: 1.0.0 - dev: true - - /eslint-plugin-prettier/4.2.1_ynq7nynyjfwcw5rz6ihwbkdyyy: + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.6.0)(eslint@8.19.0)(prettier@2.8.4): resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -11915,88 +12138,87 @@ packages: optional: true dependencies: eslint: 8.19.0 - eslint-config-prettier: 8.6.0_eslint@8.19.0 + eslint-config-prettier: 8.6.0(eslint@8.19.0) prettier: 2.8.4 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-vue/9.5.1_eslint@8.24.0: + /eslint-plugin-vue@9.5.1(eslint@8.24.0): resolution: {integrity: sha512-Y0sL2RY7Xc9S8kNih9lbwHIDmewUg9bfas6WSzsOWRgDXhIHKxRBZYNAnVcXBFfE+bMWHUA5GLChl7TcTYUI8w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: eslint: 8.24.0 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0(eslint@8.24.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.1.0_eslint@8.24.0 + vue-eslint-parser: 9.1.0(eslint@8.24.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-vue/9.5.1_eslint@8.28.0: + /eslint-plugin-vue@9.5.1(eslint@8.28.0): resolution: {integrity: sha512-Y0sL2RY7Xc9S8kNih9lbwHIDmewUg9bfas6WSzsOWRgDXhIHKxRBZYNAnVcXBFfE+bMWHUA5GLChl7TcTYUI8w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: eslint: 8.28.0 - eslint-utils: 3.0.0_eslint@8.28.0 + eslint-utils: 3.0.0(eslint@8.28.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.1.0_eslint@8.28.0 + vue-eslint-parser: 9.1.0(eslint@8.28.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-vue/9.5.1_eslint@8.29.0: + /eslint-plugin-vue@9.5.1(eslint@8.29.0): resolution: {integrity: sha512-Y0sL2RY7Xc9S8kNih9lbwHIDmewUg9bfas6WSzsOWRgDXhIHKxRBZYNAnVcXBFfE+bMWHUA5GLChl7TcTYUI8w==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: eslint: 8.29.0 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0(eslint@8.29.0) natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.1.0_eslint@8.29.0 + vue-eslint-parser: 9.1.0(eslint@8.29.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-scope/5.1.1: + /eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 - dev: true - /eslint-scope/7.1.1: + /eslint-scope@7.1.1: resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - /eslint-utils/2.1.0: + /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.19.0: + /eslint-utils@3.0.0(eslint@8.19.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -12006,7 +12228,7 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils/3.0.0_eslint@8.24.0: + /eslint-utils@3.0.0(eslint@8.24.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -12016,7 +12238,7 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils/3.0.0_eslint@8.28.0: + /eslint-utils@3.0.0(eslint@8.28.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -12026,7 +12248,7 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /eslint-utils/3.0.0_eslint@8.29.0: + /eslint-utils@3.0.0(eslint@8.29.0): resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: @@ -12035,20 +12257,20 @@ packages: eslint: 8.29.0 eslint-visitor-keys: 2.1.0 - /eslint-visitor-keys/1.3.0: + /eslint-visitor-keys@1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} engines: {node: '>=4'} dev: true - /eslint-visitor-keys/2.1.0: + /eslint-visitor-keys@2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} - /eslint-visitor-keys/3.3.0: + /eslint-visitor-keys@3.3.0: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - /eslint/8.19.0: + /eslint@8.19.0: resolution: {integrity: sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -12058,11 +12280,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint-utils: 3.0.0(eslint@8.19.0) eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -12092,7 +12314,7 @@ packages: - supports-color dev: true - /eslint/8.24.0: + /eslint@8.24.0: resolution: {integrity: sha512-dWFaPhGhTAiPcCgm3f6LI2MBWbogMnTJzFBbhXVRQDJPkr9pGZvVjlVfXd+vyDcWPA2Ic9L2AXPIQM0+vk/cSQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -12104,11 +12326,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.24.0 + eslint-utils: 3.0.0(eslint@8.24.0) eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -12140,7 +12362,7 @@ packages: - supports-color dev: true - /eslint/8.28.0: + /eslint@8.28.0: resolution: {integrity: sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -12152,11 +12374,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.28.0 + eslint-utils: 3.0.0(eslint@8.28.0) eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -12188,7 +12410,7 @@ packages: - supports-color dev: true - /eslint/8.29.0: + /eslint@8.29.0: resolution: {integrity: sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true @@ -12200,11 +12422,11 @@ packages: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0(eslint@8.29.0) eslint-visitor-keys: 3.3.0 espree: 9.4.0 esquery: 1.4.0 @@ -12235,89 +12457,89 @@ packages: transitivePeerDependencies: - supports-color - /esm/3.2.25: + /esm@3.2.25: resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==} engines: {node: '>=6'} dev: true - /espree/6.2.1: + /espree@6.2.1: resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==} engines: {node: '>=6.0.0'} dependencies: acorn: 7.4.1 - acorn-jsx: 5.3.2_acorn@7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) eslint-visitor-keys: 1.3.0 dev: true - /espree/9.3.2: + /espree@9.3.2: resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn-jsx: 5.3.2(acorn@8.8.0) eslint-visitor-keys: 3.3.0 dev: true - /espree/9.4.0: + /espree@9.4.0: resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn-jsx: 5.3.2(acorn@8.8.0) eslint-visitor-keys: 3.3.0 - /esprima-extract-comments/1.1.0: + /esprima-extract-comments@1.1.0: resolution: {integrity: sha512-sBQUnvJwpeE9QnPrxh7dpI/dp67erYG4WXEAreAMoelPRpMR7NWb4YtwRPn9b+H1uLQKl/qS8WYmyaljTpjIsw==} engines: {node: '>=4'} dependencies: esprima: 4.0.1 dev: true - /esprima/4.0.1: + /esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} engines: {node: '>=4'} hasBin: true - /esquery/1.4.0: + /esquery@1.4.0: resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 - /esrecurse/4.3.0: + /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 - /estraverse/4.3.0: + /estraverse@4.3.0: resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} engines: {node: '>=4.0'} - /estraverse/5.3.0: + /estraverse@5.3.0: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} - /estree-walker/0.6.1: + /estree-walker@0.6.1: resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} dev: true - /estree-walker/1.0.1: + /estree-walker@1.0.1: resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true - /estree-walker/2.0.2: + /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} - /esutils/2.0.3: + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} - /etag/1.8.1: + /etag@1.8.1: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} - /event-stream/3.3.4: + /event-stream@3.3.4: resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} dependencies: duplexer: 0.1.2 @@ -12329,23 +12551,23 @@ packages: through: 2.3.8 dev: false - /event-target-shim/5.0.1: + /event-target-shim@5.0.1: resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} engines: {node: '>=6'} - /eventemitter3/3.1.2: + /eventemitter3@3.1.2: resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} dev: false - /eventemitter3/4.0.7: + /eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} dev: true - /events/3.3.0: + /events@3.3.0: resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} engines: {node: '>=0.8.x'} - /execa/4.1.0: + /execa@4.1.0: resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} engines: {node: '>=10'} dependencies: @@ -12360,7 +12582,7 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa/5.1.1: + /execa@5.1.1: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} dependencies: @@ -12374,12 +12596,12 @@ packages: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - /exit/0.1.2: + /exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} dev: true - /expect/27.5.1: + /expect@27.5.1: resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -12389,7 +12611,7 @@ packages: jest-message-util: 27.5.1 dev: true - /expect/28.1.1: + /expect@28.1.1: resolution: {integrity: sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -12400,7 +12622,7 @@ packages: jest-util: 28.1.1 dev: true - /expect/29.3.1: + /expect@29.3.1: resolution: {integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -12411,7 +12633,7 @@ packages: jest-util: 29.3.1 dev: true - /expect/29.4.1: + /expect@29.4.1: resolution: {integrity: sha512-OKrGESHOaMxK3b6zxIq9SOW8kEXztKff/Dvg88j4xIJxur1hspEbedVkR3GpHe5LO+WB2Qw7OWN0RMTdp6as5A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -12422,7 +12644,7 @@ packages: jest-util: 29.4.1 dev: true - /express-graphql/0.12.0_graphql@16.6.0: + /express-graphql@0.12.0(graphql@16.6.0): resolution: {integrity: sha512-DwYaJQy0amdy3pgNtiTDuGGM2BLdj+YO2SgbKoLliCfuHv3VVTt7vNG/ZqK2hRYjtYHE2t2KB705EU94mE64zg==} engines: {node: '>= 10.x'} peerDependencies: @@ -12435,7 +12657,7 @@ packages: raw-body: 2.5.1 dev: false - /express-session/1.17.3: + /express-session@1.17.3: resolution: {integrity: sha512-4+otWXlShYlG1Ma+2Jnn+xgKUZTMJ5QD3YvfilX3AcocOAbIkVylSWEklzALe/+Pu4qV6TYBj5GwOBFfdKqLBw==} engines: {node: '>= 0.8.0'} dependencies: @@ -12451,7 +12673,7 @@ packages: - supports-color dev: false - /express/4.18.2: + /express@4.18.2: resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} engines: {node: '>= 0.10.0'} dependencies: @@ -12489,14 +12711,14 @@ packages: transitivePeerDependencies: - supports-color - /extend-shallow/2.0.1: + /extend-shallow@2.0.1: resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 dev: true - /external-editor/3.1.0: + /external-editor@3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} dependencies: @@ -12505,7 +12727,7 @@ packages: tmp: 0.0.33 dev: true - /extract-comments/1.1.0: + /extract-comments@1.1.0: resolution: {integrity: sha512-dzbZV2AdSSVW/4E7Ti5hZdHWbA+Z80RJsJhr5uiL10oyjl/gy7/o+HI1HwK4/WSZhlq4SNKU3oUzXlM13Qx02Q==} engines: {node: '>=6'} dependencies: @@ -12513,7 +12735,7 @@ packages: parse-code-context: 1.0.0 dev: true - /extract-css/3.0.1: + /extract-css@3.0.1: resolution: {integrity: sha512-mLNcMxYX7JVPcGUw7pgjczasLnvimYGlXFWuSx2YQ421sZDlBq4Dh0UzsSeXutf80Z0P2BtV5ZZt0FbaWTOxsQ==} dependencies: batch: 0.6.1 @@ -12524,27 +12746,27 @@ packages: - supports-color dev: false - /extract-files/11.0.0: + /extract-files@11.0.0: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} engines: {node: ^12.20 || >= 14.13} - /extract-files/9.0.0: + /extract-files@9.0.0: resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==} engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0} dev: true - /fast-decode-uri-component/1.0.1: + /fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} dev: true - /fast-deep-equal/3.1.3: + /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - /fast-diff/1.2.0: + /fast-diff@1.2.0: resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} dev: true - /fast-glob/3.2.11: + /fast-glob@3.2.11: resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} engines: {node: '>=8.6.0'} dependencies: @@ -12554,7 +12776,7 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-glob/3.2.12: + /fast-glob@3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} engines: {node: '>=8.6.0'} dependencies: @@ -12564,50 +12786,50 @@ packages: merge2: 1.4.1 micromatch: 4.0.5 - /fast-json-stable-stringify/2.1.0: + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - /fast-levenshtein/2.0.6: + /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - /fast-querystring/1.1.1: + /fast-querystring@1.1.1: resolution: {integrity: sha512-qR2r+e3HvhEFmpdHMv//U8FnFlnYjaC6QKDuaXALDkw2kvHO8WDjxH+f/rHGR4Me4pnk8p9JAkRNTjYHAKRn2Q==} dependencies: fast-decode-uri-component: 1.0.1 dev: true - /fast-safe-stringify/2.1.1: + /fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - /fast-url-parser/1.1.3: + /fast-url-parser@1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} dependencies: punycode: 1.3.2 dev: true - /fastq/1.13.0: + /fastq@1.13.0: resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} dependencies: reusify: 1.0.4 - /faye-websocket/0.11.4: + /faye-websocket@0.11.4: resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} engines: {node: '>=0.8.0'} dependencies: websocket-driver: 0.7.4 dev: false - /fb-watchman/2.0.1: + /fb-watchman@2.0.1: resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} dependencies: bser: 2.1.1 dev: true - /fbjs-css-vars/1.0.2: + /fbjs-css-vars@1.0.2: resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} dev: true - /fbjs/3.0.4: + /fbjs@3.0.4: resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==} dependencies: cross-fetch: 3.1.5 @@ -12621,47 +12843,47 @@ packages: - encoding dev: true - /fd-slicer/1.1.0: + /fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 dev: false - /figures/3.2.0: + /figures@3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} dependencies: escape-string-regexp: 1.0.5 dev: true - /file-entry-cache/6.0.1: + /file-entry-cache@6.0.1: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 - /file-type/3.9.0: + /file-type@3.9.0: resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==} engines: {node: '>=0.10.0'} dev: false - /file-uri-to-path/2.0.0: + /file-uri-to-path@2.0.0: resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==} engines: {node: '>= 6'} dev: false - /filelist/1.0.4: + /filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: minimatch: 5.1.0 - /fill-range/7.0.1: + /fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 - /finalhandler/1.1.2: + /finalhandler@1.1.2: resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} engines: {node: '>= 0.8'} dependencies: @@ -12676,7 +12898,7 @@ packages: - supports-color dev: true - /finalhandler/1.2.0: + /finalhandler@1.2.0: resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} engines: {node: '>= 0.8'} dependencies: @@ -12690,7 +12912,7 @@ packages: transitivePeerDependencies: - supports-color - /find-up/4.1.0: + /find-up@4.1.0: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} dependencies: @@ -12698,41 +12920,41 @@ packages: path-exists: 4.0.0 dev: true - /find-up/5.0.0: + /find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - /firebase/9.8.4: + /firebase@9.8.4: resolution: {integrity: sha512-fQigVEtSBprGBDLVTr485KQJ1YUWh/HeocMQvmhaUCL9dHUnW8GWfK+XkKOV2kcDB1Ur8xZPkjCxlmoTcykhgA==} dependencies: - '@firebase/analytics': 0.7.11_@firebase+app@0.7.27 - '@firebase/analytics-compat': 0.1.12_ikt45rtbctnl5l4y6p3bca5464 + '@firebase/analytics': 0.7.11(@firebase/app@0.7.27) + '@firebase/analytics-compat': 0.1.12(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27) '@firebase/app': 0.7.27 - '@firebase/app-check': 0.5.10_@firebase+app@0.7.27 - '@firebase/app-check-compat': 0.2.10_ikt45rtbctnl5l4y6p3bca5464 + '@firebase/app-check': 0.5.10(@firebase/app@0.7.27) + '@firebase/app-check-compat': 0.2.10(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27) '@firebase/app-compat': 0.1.28 '@firebase/app-types': 0.7.0 - '@firebase/auth': 0.20.4_@firebase+app@0.7.27 - '@firebase/auth-compat': 0.2.17_2whj6v3knk7rswcmdbn5bdkgna - '@firebase/database': 0.13.2_@firebase+app-types@0.7.0 - '@firebase/database-compat': 0.2.2_@firebase+app-types@0.7.0 - '@firebase/firestore': 3.4.11_@firebase+app@0.7.27 - '@firebase/firestore-compat': 0.1.20_2whj6v3knk7rswcmdbn5bdkgna - '@firebase/functions': 0.8.3_m3w7qpgfrijausz7l34kldvbjq - '@firebase/functions-compat': 0.2.3_2whj6v3knk7rswcmdbn5bdkgna - '@firebase/installations': 0.5.11_@firebase+app@0.7.27 - '@firebase/messaging': 0.9.15_@firebase+app@0.7.27 - '@firebase/messaging-compat': 0.1.15_ikt45rtbctnl5l4y6p3bca5464 - '@firebase/performance': 0.5.11_@firebase+app@0.7.27 - '@firebase/performance-compat': 0.1.11_ikt45rtbctnl5l4y6p3bca5464 + '@firebase/auth': 0.20.4(@firebase/app@0.7.27) + '@firebase/auth-compat': 0.2.17(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) + '@firebase/database': 0.13.2(@firebase/app-types@0.7.0) + '@firebase/database-compat': 0.2.2(@firebase/app-types@0.7.0) + '@firebase/firestore': 3.4.11(@firebase/app@0.7.27) + '@firebase/firestore-compat': 0.1.20(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) + '@firebase/functions': 0.8.3(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) + '@firebase/functions-compat': 0.2.3(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) + '@firebase/installations': 0.5.11(@firebase/app@0.7.27) + '@firebase/messaging': 0.9.15(@firebase/app@0.7.27) + '@firebase/messaging-compat': 0.1.15(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27) + '@firebase/performance': 0.5.11(@firebase/app@0.7.27) + '@firebase/performance-compat': 0.1.11(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27) '@firebase/polyfill': 0.3.36 - '@firebase/remote-config': 0.3.10_@firebase+app@0.7.27 - '@firebase/remote-config-compat': 0.1.11_ikt45rtbctnl5l4y6p3bca5464 - '@firebase/storage': 0.9.8_@firebase+app@0.7.27 - '@firebase/storage-compat': 0.1.16_2whj6v3knk7rswcmdbn5bdkgna + '@firebase/remote-config': 0.3.10(@firebase/app@0.7.27) + '@firebase/remote-config-compat': 0.1.11(@firebase/app-compat@0.1.28)(@firebase/app@0.7.27) + '@firebase/storage': 0.9.8(@firebase/app@0.7.27) + '@firebase/storage-compat': 0.1.16(@firebase/app-compat@0.1.28)(@firebase/app-types@0.7.0)(@firebase/app@0.7.27) '@firebase/util': 1.6.2 transitivePeerDependencies: - bufferutil @@ -12740,30 +12962,30 @@ packages: - utf-8-validate dev: false - /flat-cache/3.0.4: + /flat-cache@3.0.4: resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.2.6 rimraf: 3.0.2 - /flat-util/1.1.9: + /flat-util@1.1.9: resolution: {integrity: sha512-BOTMw/6rbbxVjv5JQvwgGMc2/6wWGd2VeyTvnzvvE49VRjS0tTxLbry/QVP1yPw8SaAOBYsnixmzruXoqjdUHA==} dev: false - /flat/5.0.2: + /flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true dev: true - /flatted/3.2.6: + /flatted@3.2.6: resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==} - /flexsearch/0.7.21: + /flexsearch@0.7.21: resolution: {integrity: sha512-W7cHV7Hrwjid6lWmy0IhsWDFQboWSng25U3VVywpHOTJnnAZNPScog67G+cVpeX9f7yDD21ih0WDrMMT+JoaYg==} dev: true - /follow-redirects/1.15.1: + /follow-redirects@1.15.1: resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} engines: {node: '>=4.0'} peerDependencies: @@ -12772,12 +12994,12 @@ packages: debug: optional: true - /for-each/0.3.3: + /for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.4 - /fork-ts-checker-webpack-plugin/7.2.13_qqxisngxjbp7lstdk7boexbu3e: + /fork-ts-checker-webpack-plugin@7.2.13(typescript@4.8.4)(webpack@5.74.0): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -12801,13 +13023,13 @@ packages: semver: 7.3.8 tapable: 2.2.1 typescript: 4.8.4 - webpack: 5.74.0 + webpack: 5.74.0(esbuild@0.15.15) dev: true - /form-data-encoder/1.7.2: + /form-data-encoder@1.7.2: resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} - /form-data/3.0.0: + /form-data@3.0.0: resolution: {integrity: sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==} engines: {node: '>= 6'} dependencies: @@ -12816,7 +13038,7 @@ packages: mime-types: 2.1.35 dev: false - /form-data/3.0.1: + /form-data@3.0.1: resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} engines: {node: '>= 6'} dependencies: @@ -12825,7 +13047,7 @@ packages: mime-types: 2.1.35 dev: true - /form-data/4.0.0: + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} dependencies: @@ -12833,14 +13055,14 @@ packages: combined-stream: 1.0.8 mime-types: 2.1.35 - /formdata-node/4.3.3: + /formdata-node@4.3.3: resolution: {integrity: sha512-coTew7WODO2vF+XhpUdmYz4UBvlsiTMSNaFYZlrXIqYbFd4W7bMwnoALNLE6uvNgzTg2j1JDF0ZImEfF06VPAA==} engines: {node: '>= 12.20'} dependencies: node-domexception: 1.0.0 web-streams-polyfill: 4.0.0-beta.1 - /formidable/2.1.1: + /formidable@2.1.1: resolution: {integrity: sha512-0EcS9wCFEzLvfiks7omJ+SiYJAiD+TzK4Pcw1UlUoGnhUxDcMKjt0P7x8wEb0u6OHu8Nb98WG3nxtlF5C7bvUQ==} dependencies: dezalgo: 1.0.4 @@ -12849,7 +13071,7 @@ packages: qs: 6.11.0 dev: true - /formidable/2.1.2: + /formidable@2.1.2: resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==} dependencies: dezalgo: 1.0.4 @@ -12858,25 +13080,25 @@ packages: qs: 6.11.0 dev: false - /forwarded/0.2.0: + /forwarded@0.2.0: resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} - /fp-ts/2.12.1: + /fp-ts@2.12.1: resolution: {integrity: sha512-oxvgqUYR6O9VkKXrxkJ0NOyU0FrE705MeqgBUMEPWyTu6Pwn768cJbHChw2XOBlgFLKfIHxjr2OOBFpv2mUGZw==} - /fp-ts/2.13.1: + /fp-ts@2.13.1: resolution: {integrity: sha512-0eu5ULPS2c/jsa1lGFneEFFEdTbembJv8e4QKXeVJ3lm/5hyve06dlKZrpxmMwJt6rYen7sxmHHK2CLaXvWuWQ==} - /fresh/0.5.2: + /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - /from/0.1.7: + /from@0.1.7: resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} dev: false - /fs-extra/10.1.0: + /fs-extra@10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} dependencies: @@ -12885,7 +13107,7 @@ packages: universalify: 2.0.0 dev: true - /fs-extra/7.0.1: + /fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} dependencies: @@ -12894,7 +13116,7 @@ packages: universalify: 0.1.2 dev: true - /fs-extra/8.1.0: + /fs-extra@8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} dependencies: @@ -12903,7 +13125,7 @@ packages: universalify: 0.1.2 dev: false - /fs-extra/9.1.0: + /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} dependencies: @@ -12913,43 +13135,43 @@ packages: universalify: 2.0.0 dev: true - /fs-minipass/2.1.0: + /fs-minipass@2.1.0: resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 - /fs-monkey/1.0.3: + /fs-monkey@1.0.3: resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==} dev: true - /fs-readfile-promise/2.0.1: + /fs-readfile-promise@2.0.1: resolution: {integrity: sha512-7+P9eOOMnkIOmtxrBWTzWOBQlE7Nz/cBx9EYTX5hm8DzmZ/Fj9YWeUY2O9G+Q8YblScd1hyEkcmNcZMDj5U8Ug==} dependencies: graceful-fs: 4.2.10 dev: false - /fs-writefile-promise/1.0.3: + /fs-writefile-promise@1.0.3(mkdirp@1.0.4): resolution: {integrity: sha512-yI+wDwj0FsgX7tyIQJR+EP60R64evMSixtGb9AzGWjJVKlF5tCet95KomfqGBg/aIAG1Dhd6wjCOQe5HbX/qLA==} engines: {node: '>=0.10'} dependencies: - mkdirp-promise: 1.1.0 + mkdirp-promise: 1.1.0(mkdirp@1.0.4) pinkie-promise: 1.0.0 transitivePeerDependencies: - mkdirp dev: false - /fs.realpath/1.0.0: + /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - /fsevents/2.3.2: + /fsevents@2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true optional: true - /ftp/0.3.10: + /ftp@0.3.10: resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==} engines: {node: '>=0.8.0'} dependencies: @@ -12957,10 +13179,10 @@ packages: xregexp: 2.0.0 dev: false - /function-bind/1.1.1: + /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - /function.prototype.name/1.1.5: + /function.prototype.name@1.1.5: resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} engines: {node: '>= 0.4'} dependencies: @@ -12969,19 +13191,19 @@ packages: es-abstract: 1.20.1 functions-have-names: 1.2.3 - /functional-red-black-tree/1.0.1: + /functional-red-black-tree@1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} dev: true - /functions-have-names/1.2.3: + /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - /fuse.js/6.6.2: + /fuse.js@6.6.2: resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==} engines: {node: '>=10'} dev: false - /gauge/3.0.2: + /gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} dependencies: @@ -12995,59 +13217,59 @@ packages: strip-ansi: 6.0.1 wide-align: 1.1.5 - /gensync/1.0.0-beta.2: + /gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} dev: true - /get-caller-file/2.0.5: + /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-func-name/2.0.0: + /get-func-name@2.0.0: resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: true - /get-intrinsic/1.1.2: + /get-intrinsic@1.1.2: resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} dependencies: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 - /get-own-enumerable-property-symbols/3.0.2: + /get-own-enumerable-property-symbols@3.0.2: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} - /get-package-type/0.1.0: + /get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} dev: true - /get-stream/5.2.0: + /get-stream@5.2.0: resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} engines: {node: '>=8'} dependencies: pump: 3.0.0 dev: true - /get-stream/6.0.1: + /get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} - /get-symbol-description/1.0.0: + /get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.2 - /get-uri/3.0.2: + /get-uri@3.0.2: resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 data-uri-to-buffer: 3.0.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) file-uri-to-path: 2.0.0 fs-extra: 8.1.0 ftp: 0.3.10 @@ -13055,7 +13277,7 @@ packages: - supports-color dev: false - /git-raw-commits/2.0.11: + /git-raw-commits@2.0.11: resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} engines: {node: '>=10'} hasBin: true @@ -13067,27 +13289,26 @@ packages: through2: 4.0.2 dev: true - /github-buttons/2.21.1: + /github-buttons@2.21.1: resolution: {integrity: sha512-n9bCQ8sj+5oX1YH5NeyWGbAclRDtHEhMBzqw2ctsWpdEHOwVgfruRu0VIVy01Ah10dd/iFajMHYU71L7IBWBOw==} dev: false - /glob-parent/5.1.2: + /glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 - /glob-parent/6.0.2: + /glob-parent@6.0.2: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 - /glob-to-regexp/0.4.1: + /glob-to-regexp@0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} - dev: true - /glob/7.1.6: + /glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} dependencies: fs.realpath: 1.0.0 @@ -13097,7 +13318,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/7.2.0: + /glob@7.2.0: resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} dependencies: fs.realpath: 1.0.0 @@ -13107,7 +13328,7 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/8.0.3: + /glob@8.0.3: resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} engines: {node: '>=12'} dependencies: @@ -13118,32 +13339,32 @@ packages: once: 1.4.0 dev: false - /global-dirs/0.1.1: + /global-dirs@0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} engines: {node: '>=4'} dependencies: ini: 1.3.8 dev: true - /globals/11.12.0: + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} dev: true - /globals/13.16.0: + /globals@13.16.0: resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 - /globalthis/1.0.3: + /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: define-properties: 1.1.4 dev: false - /globby/11.1.0: + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} dependencies: @@ -13154,7 +13375,7 @@ packages: merge2: 1.4.1 slash: 3.0.0 - /globby/13.1.3: + /globby@13.1.3: resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: @@ -13165,25 +13386,50 @@ packages: slash: 4.0.0 dev: true - /graceful-fs/4.2.10: + /graceful-fs@4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - /grapheme-splitter/1.0.4: + /grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - /graphql-config/4.3.1_ebknmq4ki2y6h7wwya2jsn57ky: + /graphql-config@4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-czBWzJSGaLJfOHBLuUTZVRTjfgohPfvlaeN1B5nXBVptFARpiFuS7iI4FnRhCGwm6qt1h2j1g05nkg0OIGA6bg==} engines: {node: '>= 10.0.0'} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_qkc3vo3nzqm3fls2mklcv7vbki - '@graphql-tools/graphql-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/load': 7.7.0_graphql@15.8.0 - '@graphql-tools/merge': 8.3.0_graphql@15.8.0 - '@graphql-tools/url-loader': 7.12.1_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2(cosmiconfig@7.0.1)(typescript@4.7.4) + '@graphql-tools/graphql-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/json-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/load': 7.7.0(graphql@15.8.0) + '@graphql-tools/merge': 8.3.0(graphql@15.8.0) + '@graphql-tools/url-loader': 7.12.1(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) + cosmiconfig: 7.0.1 + cosmiconfig-toml-loader: 1.0.0 + graphql: 15.8.0 + minimatch: 4.2.1 + string-env-interpolation: 1.0.1 + transitivePeerDependencies: + - '@types/node' + - bufferutil + - encoding + - typescript + - utf-8-validate + + /graphql-config@4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.9.3): + resolution: {integrity: sha512-czBWzJSGaLJfOHBLuUTZVRTjfgohPfvlaeN1B5nXBVptFARpiFuS7iI4FnRhCGwm6qt1h2j1g05nkg0OIGA6bg==} + engines: {node: '>= 10.0.0'} + peerDependencies: + graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + dependencies: + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2(cosmiconfig@7.0.1)(typescript@4.9.3) + '@graphql-tools/graphql-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/json-file-loader': 7.4.0(graphql@15.8.0) + '@graphql-tools/load': 7.7.0(graphql@15.8.0) + '@graphql-tools/merge': 8.3.0(graphql@15.8.0) + '@graphql-tools/url-loader': 7.12.1(@types/node@17.0.45)(graphql@15.8.0) + '@graphql-tools/utils': 8.8.0(graphql@15.8.0) cosmiconfig: 7.0.1 cosmiconfig-toml-loader: 1.0.0 graphql: 15.8.0 @@ -13197,32 +13443,7 @@ packages: - utf-8-validate dev: true - /graphql-config/4.3.1_h5eoywvcjsa4emif44kddonyyu: - resolution: {integrity: sha512-czBWzJSGaLJfOHBLuUTZVRTjfgohPfvlaeN1B5nXBVptFARpiFuS7iI4FnRhCGwm6qt1h2j1g05nkg0OIGA6bg==} - engines: {node: '>= 10.0.0'} - peerDependencies: - graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2_zmjss6mecb4soo3dpdlecld3xa - '@graphql-tools/graphql-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/json-file-loader': 7.4.0_graphql@15.8.0 - '@graphql-tools/load': 7.7.0_graphql@15.8.0 - '@graphql-tools/merge': 8.3.0_graphql@15.8.0 - '@graphql-tools/url-loader': 7.12.1_graphql@15.8.0 - '@graphql-tools/utils': 8.8.0_graphql@15.8.0 - cosmiconfig: 7.0.1 - cosmiconfig-toml-loader: 1.0.0 - graphql: 15.8.0 - minimatch: 4.2.1 - string-env-interpolation: 1.0.1 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - typescript - - utf-8-validate - - /graphql-config/4.4.1_ul246jct24iapssnbw5f5pr2vu: + /graphql-config@4.4.1(@types/node@18.11.10)(cosmiconfig-typescript-loader@4.3.0)(graphql@16.6.0): resolution: {integrity: sha512-B8wlvfBHZ5WnI4IiuQZRqql6s+CKz7S+xpUeTb28Z8nRBi8tH9ChEBgT5FnTyE05PUhHlrS2jK9ICJ4YBl9OtQ==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -13235,14 +13456,14 @@ packages: cosmiconfig-typescript-loader: optional: true dependencies: - '@graphql-tools/graphql-file-loader': 7.5.16_graphql@16.6.0 - '@graphql-tools/json-file-loader': 7.4.17_graphql@16.6.0 - '@graphql-tools/load': 7.8.12_graphql@16.6.0 - '@graphql-tools/merge': 8.3.18_graphql@16.6.0 - '@graphql-tools/url-loader': 7.17.13_graphql@16.6.0 - '@graphql-tools/utils': 9.2.1_graphql@16.6.0 + '@graphql-tools/graphql-file-loader': 7.5.16(graphql@16.6.0) + '@graphql-tools/json-file-loader': 7.4.17(graphql@16.6.0) + '@graphql-tools/load': 7.8.12(graphql@16.6.0) + '@graphql-tools/merge': 8.3.18(graphql@16.6.0) + '@graphql-tools/url-loader': 7.17.13(@types/node@18.11.10)(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) cosmiconfig: 8.0.0 - cosmiconfig-typescript-loader: 4.3.0_qilgflazl3ul6lmrg6ergratta + cosmiconfig-typescript-loader: 4.3.0(@types/node@18.11.10)(cosmiconfig@7.0.1)(ts-node@10.9.1)(typescript@4.9.3) graphql: 16.6.0 minimatch: 4.2.1 string-env-interpolation: 1.0.1 @@ -13254,16 +13475,16 @@ packages: - utf-8-validate dev: true - /graphql-language-service-interface/2.10.2_h5eoywvcjsa4emif44kddonyyu: + /graphql-language-service-interface@2.10.2(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-RKIEBPhRMWdXY3fxRs99XysTDnEgAvNbu8ov/5iOlnkZsWQNzitjtd0O0l1CutQOQt3iXoHde7w8uhCnKL4tcg==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.8.0 - graphql-config: 4.3.1_h5eoywvcjsa4emif44kddonyyu - graphql-language-service-parser: 1.10.4_h5eoywvcjsa4emif44kddonyyu - graphql-language-service-types: 1.8.7_h5eoywvcjsa4emif44kddonyyu - graphql-language-service-utils: 2.7.1_h5eoywvcjsa4emif44kddonyyu + graphql-config: 4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) + graphql-language-service-parser: 1.10.4(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) + graphql-language-service-types: 1.8.7(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) + graphql-language-service-utils: 2.7.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) vscode-languageserver-types: 3.17.1 transitivePeerDependencies: - '@types/node' @@ -13273,13 +13494,13 @@ packages: - utf-8-validate dev: false - /graphql-language-service-parser/1.10.4_h5eoywvcjsa4emif44kddonyyu: + /graphql-language-service-parser@1.10.4(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-duDE+0aeKLFVrb9Kf28U84ZEHhHcvTjWIT6dJbIAQJWBaDoht0D4BK9EIhd94I3DtKRc1JCJb2+70y1lvP/hiA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.8.0 - graphql-language-service-types: 1.8.7_h5eoywvcjsa4emif44kddonyyu + graphql-language-service-types: 1.8.7(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) transitivePeerDependencies: - '@types/node' - bufferutil @@ -13288,13 +13509,13 @@ packages: - utf-8-validate dev: false - /graphql-language-service-types/1.8.7_h5eoywvcjsa4emif44kddonyyu: + /graphql-language-service-types@1.8.7(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-LP/Mx0nFBshYEyD0Ny6EVGfacJAGVx+qXtlJP4hLzUdBNOGimfDNtMVIdZANBXHXcM41MDgMHTnyEx2g6/Ttbw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: graphql: 15.8.0 - graphql-config: 4.3.1_h5eoywvcjsa4emif44kddonyyu + graphql-config: 4.3.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) vscode-languageserver-types: 3.17.1 transitivePeerDependencies: - '@types/node' @@ -13304,14 +13525,14 @@ packages: - utf-8-validate dev: false - /graphql-language-service-utils/2.7.1_h5eoywvcjsa4emif44kddonyyu: + /graphql-language-service-utils@2.7.1(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4): resolution: {integrity: sha512-Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 dependencies: '@types/json-schema': 7.0.9 graphql: 15.8.0 - graphql-language-service-types: 1.8.7_h5eoywvcjsa4emif44kddonyyu + graphql-language-service-types: 1.8.7(@types/node@17.0.45)(graphql@15.8.0)(typescript@4.7.4) nullthrows: 1.1.1 transitivePeerDependencies: - '@types/node' @@ -13321,7 +13542,7 @@ packages: - utf-8-validate dev: false - /graphql-query-complexity/0.12.0_graphql@15.8.0: + /graphql-query-complexity@0.12.0(graphql@15.8.0): resolution: {integrity: sha512-fWEyuSL6g/+nSiIRgIipfI6UXTI7bAxrpPlCY1c0+V3pAEUo1ybaKmSBgNr1ed2r+agm1plJww8Loig9y6s2dw==} peerDependencies: graphql: ^14.6.0 || ^15.0.0 || ^16.0.0 @@ -13330,12 +13551,12 @@ packages: lodash.get: 4.4.2 dev: false - /graphql-redis-subscriptions/2.5.0_nsv4zbviaf54hk5nfhl4slig7i: + /graphql-redis-subscriptions@2.5.0(graphql-subscriptions@2.0.0): resolution: {integrity: sha512-l7Sc1gXdgNUGFlgWOpqh14ZDm6bM2PPCvMprSt/myZAhTjE2u5Gw5F4ndanS0JqRtO/QhzoZCqio7ewDHa9P3w==} peerDependencies: graphql-subscriptions: ^1.0.0 || ^2.0.0 dependencies: - graphql-subscriptions: 2.0.0_graphql@15.8.0 + graphql-subscriptions: 2.0.0(graphql@15.8.0) iterall: 1.3.0 optionalDependencies: ioredis: 5.2.4 @@ -13343,7 +13564,7 @@ packages: - supports-color dev: false - /graphql-request/4.3.0_graphql@15.8.0: + /graphql-request@4.3.0(graphql@15.8.0): resolution: {integrity: sha512-2v6hQViJvSsifK606AliqiNiijb1uwWp6Re7o0RTyH+uRTv/u7Uqm2g4Fjq/LgZIzARB38RZEvVBFOQOVdlBow==} peerDependencies: graphql: 14 - 16 @@ -13356,12 +13577,12 @@ packages: - encoding dev: true - /graphql-request/5.1.0_graphql@16.6.0: + /graphql-request@5.1.0(graphql@16.6.0): resolution: {integrity: sha512-0OeRVYigVwIiXhNmqnPDt+JhMzsjinxHE7TVy3Lm6jUzav0guVcL0lfSbi6jVTRAxcbwgyr6yrZioSHxf9gHzw==} peerDependencies: graphql: 14 - 16 dependencies: - '@graphql-typed-document-node/core': 3.1.1_graphql@16.6.0 + '@graphql-typed-document-node/core': 3.1.1(graphql@16.6.0) cross-fetch: 3.1.5 extract-files: 9.0.0 form-data: 3.0.1 @@ -13370,7 +13591,7 @@ packages: - encoding dev: true - /graphql-subscriptions/2.0.0_graphql@15.8.0: + /graphql-subscriptions@2.0.0(graphql@15.8.0): resolution: {integrity: sha512-s6k2b8mmt9gF9pEfkxsaO1lTxaySfKoEJzEfmwguBbQ//Oq23hIXCfR1hm4kdh5hnR20RdwB+s3BCb+0duHSZA==} peerDependencies: graphql: ^15.7.2 || ^16.0.0 @@ -13379,7 +13600,7 @@ packages: iterall: 1.3.0 dev: false - /graphql-tag/2.12.6_graphql@15.8.0: + /graphql-tag@2.12.6(graphql@15.8.0): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: @@ -13388,7 +13609,7 @@ packages: graphql: 15.8.0 tslib: 2.4.1 - /graphql-tag/2.12.6_graphql@16.6.0: + /graphql-tag@2.12.6(graphql@16.6.0): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: @@ -13398,7 +13619,7 @@ packages: tslib: 2.4.1 dev: true - /graphql-ws/5.11.3_graphql@16.6.0: + /graphql-ws@5.11.3(graphql@16.6.0): resolution: {integrity: sha512-fU8zwSgAX2noXAsuFiCZ8BtXeXZOzXyK5u1LloCdacsVth4skdBMPO74EG51lBoWSIZ8beUocdpV8+cQHBODnQ==} engines: {node: '>=10'} peerDependencies: @@ -13407,7 +13628,7 @@ packages: graphql: 16.6.0 dev: true - /graphql-ws/5.5.5_graphql@15.8.0: + /graphql-ws@5.5.5(graphql@15.8.0): resolution: {integrity: sha512-hvyIS71vs4Tu/yUYHPvGXsTgo0t3arU820+lT5VjZS2go0ewp2LqyCgxEN56CzOG7Iys52eRhHBiD1gGRdiQtw==} engines: {node: '>=10'} peerDependencies: @@ -13416,7 +13637,7 @@ packages: graphql: 15.8.0 dev: false - /graphql-ws/5.9.1_graphql@15.8.0: + /graphql-ws@5.9.1(graphql@15.8.0): resolution: {integrity: sha512-mL/SWGBwIT9Meq0NlfS55yXXTOeWPMbK7bZBEZhFu46bcGk1coTx2Sdtzxdk+9yHWngD+Fk1PZDWaAutQa9tpw==} engines: {node: '>=10'} peerDependencies: @@ -13424,15 +13645,15 @@ packages: dependencies: graphql: 15.8.0 - /graphql/15.8.0: + /graphql@15.8.0: resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} engines: {node: '>= 10.x'} - /graphql/16.6.0: + /graphql@16.6.0: resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} - /gray-matter/4.0.3: + /gray-matter@4.0.3: resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} engines: {node: '>=6.0'} dependencies: @@ -13442,12 +13663,12 @@ packages: strip-bom-string: 1.0.0 dev: true - /growl/1.10.5: + /growl@1.10.5: resolution: {integrity: sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==} engines: {node: '>=4.x'} dev: true - /handlebars/4.7.7: + /handlebars@4.7.7: resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} engines: {node: '>=0.4.7'} hasBin: true @@ -13461,12 +13682,12 @@ packages: uglify-js: 3.17.4 dev: false - /har-schema/2.0.0: + /har-schema@2.0.0: resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} engines: {node: '>=4'} dev: false - /har-validator/5.1.5: + /har-validator@5.1.5: resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} engines: {node: '>=6'} deprecated: this library is no longer supported @@ -13475,95 +13696,95 @@ packages: har-schema: 2.0.0 dev: false - /hard-rejection/2.1.0: + /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} dev: true - /has-ansi/2.0.0: + /has-ansi@2.0.0: resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: false - /has-bigints/1.0.2: + /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - /has-binary2/1.0.3: + /has-binary2@1.0.3: resolution: {integrity: sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw==} dependencies: isarray: 2.0.1 dev: false - /has-cors/1.1.0: + /has-cors@1.1.0: resolution: {integrity: sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=} dev: false - /has-flag/3.0.0: + /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} - /has-flag/4.0.0: + /has-flag@4.0.0: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - /has-property-descriptors/1.0.0: + /has-property-descriptors@1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.1.2 - /has-symbols/1.0.3: + /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} - /has-tostringtag/1.0.0: + /has-tostringtag@1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - /has-unicode/2.0.1: + /has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - /has/1.0.3: + /has@1.0.3: resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 - /hash-sum/2.0.0: + /hash-sum@2.0.0: resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} dev: true - /he/1.2.0: + /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true - /header-case/2.0.4: + /header-case@2.0.4: resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} dependencies: capital-case: 1.0.4 tslib: 2.5.0 - /helpertypes/0.0.18: + /helpertypes@0.0.18: resolution: {integrity: sha512-XRhfbSEmR+poXUC5/8AbmYNJb2riOT6qPzjGJZr0S9YedHiaY+/tzPYzWMUclYMEdCYo/1l8PDYrQFCj02v97w==} engines: {node: '>=10.0.0'} dev: true - /hexoid/1.0.0: + /hexoid@1.0.0: resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} engines: {node: '>=8'} - /histoire/0.12.4_sass@1.53.0+vite@3.2.4: + /histoire@0.12.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1)(vite@3.2.4): resolution: {integrity: sha512-q20Zncdh+GI2jDXiry1JS1DrN5qprKpl452AnS/P06Vgowqf79aG85E0XmhNpX2r8HI2HmIntwZ5FLd6hxYobQ==} hasBin: true peerDependencies: vite: ^2.9.0 || ^3.0.0 || ^4.0.0 dependencies: - '@histoire/app': 0.12.4_vite@3.2.4 + '@histoire/app': 0.12.4(vite@3.2.4) '@histoire/controls': 0.12.4 - '@histoire/shared': 0.12.4_vite@3.2.4 + '@histoire/shared': 0.12.4(vite@3.2.4) '@histoire/vendors': 0.12.4 '@types/flexsearch': 0.7.3 '@types/markdown-it': 12.2.3 @@ -13580,8 +13801,8 @@ packages: jiti: 1.16.2 jsdom: 20.0.3 markdown-it: 12.3.2 - markdown-it-anchor: 8.6.6_2zb4u3vubltivolgu556vv4aom - markdown-it-attrs: 4.1.6_markdown-it@12.3.2 + markdown-it-anchor: 8.6.6(@types/markdown-it@12.2.3)(markdown-it@12.3.2) + markdown-it-attrs: 4.1.6(markdown-it@12.3.2) markdown-it-emoji: 2.0.2 micromatch: 4.0.5 mrmime: 1.0.1 @@ -13591,8 +13812,8 @@ packages: shiki-es: 0.1.2 sirv: 2.0.2 tinypool: 0.1.3 - vite: 3.2.4_sass@1.53.0 - vite-node: 0.26.0_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-node: 0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - '@types/node' - bufferutil @@ -13606,18 +13827,18 @@ packages: - utf-8-validate dev: true - /hosted-git-info/2.8.9: + /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} dev: true - /hosted-git-info/4.1.0: + /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 dev: true - /href-content/2.0.2: + /href-content@2.0.2: resolution: {integrity: sha512-f/e40VYI+KciPGfFzfdw1wu8dptpUA9rYQJNbpYVRI217lyuo7nBNO7BjYfTiQMhU/AthfvPDMvj46uAgzUccQ==} dependencies: remote-content: 3.0.1 @@ -13625,25 +13846,25 @@ packages: - supports-color dev: false - /html-encoding-sniffer/2.0.1: + /html-encoding-sniffer@2.0.1: resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} engines: {node: '>=10'} dependencies: whatwg-encoding: 1.0.5 dev: true - /html-encoding-sniffer/3.0.0: + /html-encoding-sniffer@3.0.0: resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} engines: {node: '>=12'} dependencies: whatwg-encoding: 2.0.0 dev: true - /html-escaper/2.0.2: + /html-escaper@2.0.2: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-minifier/4.0.0: + /html-minifier@4.0.0: resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==} engines: {node: '>=6'} hasBin: true @@ -13657,7 +13878,7 @@ packages: uglify-js: 3.17.4 dev: false - /html-to-text/9.0.4: + /html-to-text@9.0.4: resolution: {integrity: sha512-ckrQ5N2yZS7qSgKxUbqrBZ02NxD5cSy7KuYjCNIf+HWbdzY3fbjYjQsoRIl6TiaZ4+XWOi0ggFP8/pmgCK/o+A==} engines: {node: '>=14'} dependencies: @@ -13668,7 +13889,7 @@ packages: selderee: 0.10.0 dev: false - /htmlparser2/4.1.0: + /htmlparser2@4.1.0: resolution: {integrity: sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==} dependencies: domelementtype: 2.3.0 @@ -13677,7 +13898,7 @@ packages: entities: 2.1.0 dev: false - /htmlparser2/6.1.0: + /htmlparser2@6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: domelementtype: 2.3.0 @@ -13685,7 +13906,7 @@ packages: domutils: 2.8.0 entities: 2.1.0 - /htmlparser2/8.0.1: + /htmlparser2@8.0.1: resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==} dependencies: domelementtype: 2.3.0 @@ -13694,7 +13915,7 @@ packages: entities: 4.4.0 dev: false - /http-errors/1.8.0: + /http-errors@1.8.0: resolution: {integrity: sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==} engines: {node: '>= 0.6'} dependencies: @@ -13705,7 +13926,7 @@ packages: toidentifier: 1.0.0 dev: false - /http-errors/2.0.0: + /http-errors@2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} dependencies: @@ -13715,32 +13936,32 @@ packages: statuses: 2.0.1 toidentifier: 1.0.1 - /http-parser-js/0.5.8: + /http-parser-js@0.5.8: resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} dev: false - /http-proxy-agent/4.0.1: + /http-proxy-agent@4.0.1: resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color - /http-proxy-agent/5.0.0: + /http-proxy-agent@5.0.0: resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} engines: {node: '>= 6'} dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color dev: true - /http-proxy/1.18.1: + /http-proxy@1.18.1: resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} dependencies: @@ -13751,11 +13972,11 @@ packages: - debug dev: true - /http-reasons/0.1.0: + /http-reasons@0.1.0: resolution: {integrity: sha512-P6kYh0lKZ+y29T2Gqz+RlC9WBLhKe8kDmcJ+A+611jFfxdPsbMRQ5aNmFRM3lENqFkK+HTTL+tlQviAiv0AbLQ==} dev: false - /http-server/14.1.1: + /http-server@14.1.1: resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} engines: {node: '>=12'} hasBin: true @@ -13778,16 +13999,16 @@ packages: - supports-color dev: true - /https-proxy-agent/5.0.1: + /https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color - /httpsnippet/2.0.0: + /httpsnippet@2.0.0(mkdirp@1.0.4): resolution: {integrity: sha512-Hb2ttfB5OhasYxwChZ8QKpYX3v4plNvwMaMulUIC7M3RHRDf1Op6EMp47LfaU2sgQgfvo5spWK4xRAirMEisrg==} engines: {node: '>=10'} hasBin: true @@ -13798,7 +14019,7 @@ packages: event-stream: 3.3.4 form-data: 3.0.0 fs-readfile-promise: 2.0.1 - fs-writefile-promise: 1.0.3 + fs-writefile-promise: 1.0.3(mkdirp@1.0.4) har-validator: 5.1.5 stringify-object: 3.3.0 transitivePeerDependencies: @@ -13806,73 +14027,73 @@ packages: - supports-color dev: false - /human-signals/1.1.1: + /human-signals@1.1.1: resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} engines: {node: '>=8.12.0'} dev: true - /human-signals/2.1.0: + /human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} - /husky/7.0.4: + /husky@7.0.4: resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==} engines: {node: '>=12'} hasBin: true dev: false - /iconv-lite/0.4.24: + /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - /iconv-lite/0.6.3: + /iconv-lite@0.6.3: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - /idb/7.0.1: + /idb@7.0.1: resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==} - /ieee754/1.2.1: + /ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} - /ignore/5.2.0: + /ignore@5.2.0: resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} engines: {node: '>= 4'} - /immediate/3.0.6: + /immediate@3.0.6: resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} dev: false - /immutable/3.7.6: + /immutable@3.7.6: resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} engines: {node: '>=0.8.0'} dev: true - /immutable/4.1.0: + /immutable@4.1.0: resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} - /import-fresh/3.3.0: + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from/4.0.0: + /import-from@4.0.0: resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} engines: {node: '>=12.2'} dev: true - /import-lazy/4.0.0: + /import-lazy@4.0.0: resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} engines: {node: '>=8'} dev: true - /import-local/3.1.0: + /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} hasBin: true @@ -13881,35 +14102,35 @@ packages: resolve-cwd: 3.0.0 dev: true - /imurmurhash/0.1.4: + /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - /indent-string/4.0.0: + /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} - /indexof/0.0.1: + /indexof@0.0.1: resolution: {integrity: sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=} dev: false - /inflight/1.0.6: + /inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 - /inherits/2.0.3: + /inherits@2.0.3: resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=} dev: false - /inherits/2.0.4: + /inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - /ini/1.3.8: + /ini@1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} - /inline-css/4.0.1: + /inline-css@4.0.1: resolution: {integrity: sha512-gzumhrp0waBLF5TtwQcm5bviA9ZNURXeNOs2xVSTsX60FWPFlrPJol4HI8yrozZ6V5udWKUT3LS2tMUDMMdi1Q==} engines: {node: '>=8'} dependencies: @@ -13924,7 +14145,7 @@ packages: - supports-color dev: false - /inquirer/7.3.3: + /inquirer@7.3.3: resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} engines: {node: '>=8.0.0'} dependencies: @@ -13943,7 +14164,7 @@ packages: through: 2.3.8 dev: true - /inquirer/8.2.4: + /inquirer@8.2.4: resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} engines: {node: '>=12.0.0'} dependencies: @@ -13964,24 +14185,24 @@ packages: wrap-ansi: 7.0.0 dev: true - /insomnia-importers/3.3.0_openapi-types@12.0.0: + /insomnia-importers@3.3.0(openapi-types@12.0.0): resolution: {integrity: sha512-t32X/z1hzu/UOUTHmowlITCEOWh5nEKUCpakZI6XCOC63UxTzeMISsF2ygxvsZi52Jx4bNStMqhQ08tA6timuA==} deprecated: Package no longer supported. Use at your own risk. hasBin: true dependencies: - '@apidevtools/swagger-parser': 10.0.2_openapi-types@12.0.0 + '@apidevtools/swagger-parser': 10.0.2(openapi-types@12.0.0) apiconnect-wsdl: 1.8.31 change-case: 4.1.2 commander: 7.2.0 ramda: 0.27.2 - ramda-adjunct: 2.36.0_ramda@0.27.2 + ramda-adjunct: 2.36.0(ramda@0.27.2) shell-quote: 1.7.3 yaml: 1.10.2 transitivePeerDependencies: - openapi-types dev: false - /internal-slot/1.0.3: + /internal-slot@1.0.3: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: @@ -13989,38 +14210,38 @@ packages: has: 1.0.3 side-channel: 1.0.4 - /interpret/1.4.0: + /interpret@1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} dev: true - /invariant/2.2.4: + /invariant@2.2.4: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 dev: true - /io-ts/2.2.16_fp-ts@2.12.1: + /io-ts@2.2.16(fp-ts@2.12.1): resolution: {integrity: sha512-y5TTSa6VP6le0hhmIyN0dqEXkrZeJLeC5KApJq6VLci3UEKF80lZ+KuoUs02RhBxNWlrqSNxzfI7otLX1Euv8Q==} peerDependencies: fp-ts: ^2.5.0 dependencies: fp-ts: 2.12.1 - /io-ts/2.2.16_fp-ts@2.13.1: + /io-ts@2.2.16(fp-ts@2.13.1): resolution: {integrity: sha512-y5TTSa6VP6le0hhmIyN0dqEXkrZeJLeC5KApJq6VLci3UEKF80lZ+KuoUs02RhBxNWlrqSNxzfI7otLX1Euv8Q==} peerDependencies: fp-ts: ^2.5.0 dependencies: fp-ts: 2.13.1 - /ioredis/5.2.4: + /ioredis@5.2.4: resolution: {integrity: sha512-qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng==} engines: {node: '>=12.22.0'} dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -14031,19 +14252,19 @@ packages: - supports-color dev: false - /ip/1.1.8: + /ip@1.1.8: resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} dev: false - /ip/2.0.0: + /ip@2.0.0: resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} dev: false - /ipaddr.js/1.9.1: + /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} - /is-absolute/1.0.0: + /is-absolute@1.0.0: resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} engines: {node: '>=0.10.0'} dependencies: @@ -14051,214 +14272,214 @@ packages: is-windows: 1.0.2 dev: true - /is-arguments/1.1.1: + /is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-arrayish/0.2.1: + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - /is-bigint/1.0.4: + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 - /is-binary-path/2.1.0: + /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} dependencies: binary-extensions: 2.2.0 - /is-boolean-object/1.1.2: + /is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-buffer/1.1.6: + /is-buffer@1.1.6: resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} dev: false - /is-callable/1.2.4: + /is-callable@1.2.4: resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} engines: {node: '>= 0.4'} - /is-core-module/2.9.0: + /is-core-module@2.9.0: resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} dependencies: has: 1.0.3 - /is-date-object/1.0.5: + /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 - /is-docker/2.2.1: + /is-docker@2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} hasBin: true dev: false - /is-expression/4.0.0: + /is-expression@4.0.0: resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} dependencies: acorn: 7.4.1 object-assign: 4.1.1 - /is-extendable/0.1.1: + /is-extendable@0.1.1: resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} dev: true - /is-extglob/2.1.1: + /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - /is-fullwidth-code-point/3.0.0: + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - /is-fullwidth-code-point/4.0.0: + /is-fullwidth-code-point@4.0.0: resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} engines: {node: '>=12'} - /is-generator-fn/2.1.0: + /is-generator-fn@2.1.0: resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} engines: {node: '>=6'} dev: true - /is-generator-function/1.0.10: + /is-generator-function@1.0.10: resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: false - /is-glob/4.0.3: + /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 - /is-interactive/1.0.0: + /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} dev: true - /is-lower-case/2.0.2: + /is-lower-case@2.0.2: resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} dependencies: tslib: 2.5.0 dev: true - /is-map/2.0.2: + /is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true - /is-module/1.0.0: + /is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} dev: true - /is-negative-zero/2.0.2: + /is-negative-zero@2.0.2: resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} engines: {node: '>= 0.4'} - /is-number-object/1.0.7: + /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 - /is-number/7.0.0: + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} - /is-obj/1.0.1: + /is-obj@1.0.1: resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} engines: {node: '>=0.10.0'} - /is-obj/2.0.0: + /is-obj@2.0.0: resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} engines: {node: '>=8'} dev: true - /is-path-inside/3.0.3: + /is-path-inside@3.0.3: resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} engines: {node: '>=8'} - /is-plain-obj/1.1.0: + /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} dev: true - /is-plain-obj/2.1.0: + /is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} engines: {node: '>=8'} dev: true - /is-potential-custom-element-name/1.0.1: + /is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} dev: true - /is-promise/2.2.2: + /is-promise@2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} - /is-regex/1.1.4: + /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 - /is-regexp/1.0.0: + /is-regexp@1.0.0: resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} engines: {node: '>=0.10.0'} - /is-relative/1.0.0: + /is-relative@1.0.0: resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} engines: {node: '>=0.10.0'} dependencies: is-unc-path: 1.0.0 dev: true - /is-set/2.0.2: + /is-set@2.0.2: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true - /is-shared-array-buffer/1.0.2: + /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.2 - /is-stream/2.0.1: + /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} - /is-string/1.0.7: + /is-string@1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 - /is-symbol/1.0.4: + /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - /is-text-path/1.0.1: + /is-text-path@1.0.1: resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} engines: {node: '>=0.10.0'} dependencies: text-extensions: 1.9.0 dev: true - /is-typed-array/1.1.9: + /is-typed-array@1.1.9: resolution: {integrity: sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==} engines: {node: '>= 0.4'} dependencies: @@ -14268,80 +14489,80 @@ packages: for-each: 0.3.3 has-tostringtag: 1.0.0 - /is-typedarray/1.0.0: + /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: true - /is-unc-path/1.0.0: + /is-unc-path@1.0.0: resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} engines: {node: '>=0.10.0'} dependencies: unc-path-regex: 0.1.2 dev: true - /is-unicode-supported/0.1.0: + /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} dev: true - /is-upper-case/2.0.2: + /is-upper-case@2.0.2: resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} dependencies: tslib: 2.5.0 dev: true - /is-weakmap/2.0.1: + /is-weakmap@2.0.1: resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} dev: true - /is-weakref/1.0.2: + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.2 - /is-weakset/2.0.2: + /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.2 dev: true - /is-windows/1.0.2: + /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} dev: true - /is-wsl/2.2.0: + /is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} dependencies: is-docker: 2.2.1 dev: false - /isarray/0.0.1: + /isarray@0.0.1: resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} dev: false - /isarray/1.0.0: + /isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - /isarray/2.0.1: + /isarray@2.0.1: resolution: {integrity: sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==} dev: false - /isarray/2.0.5: + /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true - /isbot/3.4.5: + /isbot@3.4.5: resolution: {integrity: sha512-+KD6q1BBtw0iK9aGBGSfxJ31/ZgizKRjhm8ebgJUBMx0aeeQuIJ1I72beCoIrltIZGrSm4vmrxRxrG5n1aUTtw==} engines: {node: '>=12'} dev: true - /isexe/2.0.0: + /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - /isomorphic-fetch/3.0.0: + /isomorphic-fetch@3.0.0: resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} dependencies: node-fetch: 2.6.7 @@ -14350,19 +14571,19 @@ packages: - encoding dev: true - /isomorphic-ws/5.0.0_ws@8.12.1: + /isomorphic-ws@5.0.0(ws@8.12.1): resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} peerDependencies: ws: '*' dependencies: ws: 8.12.1 - /istanbul-lib-coverage/3.2.0: + /istanbul-lib-coverage@3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} dev: true - /istanbul-lib-instrument/5.2.0: + /istanbul-lib-instrument@5.2.0: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: @@ -14375,7 +14596,7 @@ packages: - supports-color dev: true - /istanbul-lib-report/3.0.0: + /istanbul-lib-report@3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} dependencies: @@ -14384,18 +14605,18 @@ packages: supports-color: 7.2.0 dev: true - /istanbul-lib-source-maps/4.0.1: + /istanbul-lib-source-maps@4.0.1: resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} engines: {node: '>=10'} dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: - supports-color dev: true - /istanbul-reports/3.1.4: + /istanbul-reports@3.1.4: resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} engines: {node: '>=8'} dependencies: @@ -14403,15 +14624,15 @@ packages: istanbul-lib-report: 3.0.0 dev: true - /iterall/1.3.0: + /iterall@1.3.0: resolution: {integrity: sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==} dev: false - /iterare/1.2.1: + /iterare@1.2.1: resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==} engines: {node: '>=6'} - /jake/10.8.5: + /jake@10.8.5: resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} engines: {node: '>=10'} hasBin: true @@ -14421,7 +14642,7 @@ packages: filelist: 1.0.4 minimatch: 3.1.2 - /jest-changed-files/27.5.1: + /jest-changed-files@27.5.1: resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14430,7 +14651,7 @@ packages: throat: 6.0.1 dev: true - /jest-changed-files/29.4.0: + /jest-changed-files@29.4.0: resolution: {integrity: sha512-rnI1oPxgFghoz32Y8eZsGJMjW54UlqT17ycQeCEktcxxwqqKdlj9afl8LNeO0Pbu+h2JQHThQP0BzS67eTRx4w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14438,7 +14659,7 @@ packages: p-limit: 3.1.0 dev: true - /jest-circus/27.5.1: + /jest-circus@27.5.1: resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14465,7 +14686,7 @@ packages: - supports-color dev: true - /jest-circus/29.4.1: + /jest-circus@29.4.1: resolution: {integrity: sha512-v02NuL5crMNY4CGPHBEflLzl4v91NFb85a+dH9a1pUNx6Xjggrd8l9pPy4LZ1VYNRXlb+f65+7O/MSIbLir6pA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14492,7 +14713,7 @@ packages: - supports-color dev: true - /jest-cli/27.5.1: + /jest-cli@27.5.1: resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -14522,7 +14743,7 @@ packages: - utf-8-validate dev: true - /jest-cli/29.4.1_j5wyyouvf5aixckc7ltaxrydha: + /jest-cli@29.4.1(@types/node@18.11.10)(ts-node@10.9.1): resolution: {integrity: sha512-jz7GDIhtxQ37M+9dlbv5K+/FVcIo1O/b1sX3cJgzlQUf/3VG25nvuWzlDC4F1FLLzUThJeWLu8I7JF9eWpuURQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -14532,14 +14753,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.4.1_ts-node@10.9.1 + '@jest/core': 29.4.1(ts-node@10.9.1) '@jest/test-result': 29.4.1 '@jest/types': 29.4.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 29.4.1_j5wyyouvf5aixckc7ltaxrydha + jest-config: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) jest-util: 29.4.1 jest-validate: 29.4.1 prompts: 2.4.2 @@ -14550,7 +14771,7 @@ packages: - ts-node dev: true - /jest-config/27.5.1: + /jest-config@27.5.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -14562,7 +14783,7 @@ packages: '@babel/core': 7.18.6 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.18.6 + babel-jest: 27.5.1(@babel/core@7.18.6) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -14590,7 +14811,7 @@ packages: - utf-8-validate dev: true - /jest-config/29.4.1_j5wyyouvf5aixckc7ltaxrydha: + /jest-config@29.4.1(@types/node@18.11.10)(ts-node@10.9.1): resolution: {integrity: sha512-g7p3q4NuXiM4hrS4XFATTkd+2z0Ml2RhFmFPM8c3WyKwVDNszbl4E7cV7WIx1YZeqqCtqbtTtZhGZWJlJqngzg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -14606,7 +14827,7 @@ packages: '@jest/test-sequencer': 29.4.1 '@jest/types': 29.4.1 '@types/node': 18.11.10 - babel-jest: 29.4.1_@babel+core@7.18.6 + babel-jest: 29.4.1(@babel/core@7.18.6) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -14625,12 +14846,12 @@ packages: pretty-format: 29.4.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_eoe7put6ewfbqpy6gs36tihw6y + ts-node: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) transitivePeerDependencies: - supports-color dev: true - /jest-diff/27.5.1: + /jest-diff@27.5.1: resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14640,7 +14861,7 @@ packages: pretty-format: 27.5.1 dev: true - /jest-diff/28.1.1: + /jest-diff@28.1.1: resolution: {integrity: sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -14650,7 +14871,7 @@ packages: pretty-format: 28.1.1 dev: true - /jest-diff/29.3.1: + /jest-diff@29.3.1: resolution: {integrity: sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14660,7 +14881,7 @@ packages: pretty-format: 29.4.1 dev: true - /jest-diff/29.4.1: + /jest-diff@29.4.1: resolution: {integrity: sha512-uazdl2g331iY56CEyfbNA0Ut7Mn2ulAG5vUaEHXycf1L6IPyuImIxSz4F0VYBKi7LYIuxOwTZzK3wh5jHzASMw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14670,21 +14891,21 @@ packages: pretty-format: 29.4.1 dev: true - /jest-docblock/27.5.1: + /jest-docblock@27.5.1: resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-docblock/29.2.0: + /jest-docblock@29.2.0: resolution: {integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-each/27.5.1: + /jest-each@27.5.1: resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14695,7 +14916,7 @@ packages: pretty-format: 27.5.1 dev: true - /jest-each/29.4.1: + /jest-each@29.4.1: resolution: {integrity: sha512-QlYFiX3llJMWUV0BtWht/esGEz9w+0i7BHwODKCze7YzZzizgExB9MOfiivF/vVT0GSQ8wXLhvHXh3x2fVD4QQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14706,7 +14927,7 @@ packages: pretty-format: 29.4.1 dev: true - /jest-environment-jsdom/27.5.1: + /jest-environment-jsdom@27.5.1: resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14724,7 +14945,7 @@ packages: - utf-8-validate dev: true - /jest-environment-node/27.5.1: + /jest-environment-node@27.5.1: resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14736,7 +14957,7 @@ packages: jest-util: 27.5.1 dev: true - /jest-environment-node/29.4.1: + /jest-environment-node@29.4.1: resolution: {integrity: sha512-x/H2kdVgxSkxWAIlIh9MfMuBa0hZySmfsC5lCsWmWr6tZySP44ediRKDUiNggX/eHLH7Cd5ZN10Rw+XF5tXsqg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14748,22 +14969,22 @@ packages: jest-util: 29.4.1 dev: true - /jest-get-type/27.5.1: + /jest-get-type@27.5.1: resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /jest-get-type/28.0.2: + /jest-get-type@28.0.2: resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dev: true - /jest-get-type/29.2.0: + /jest-get-type@29.2.0: resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-haste-map/27.5.1: + /jest-haste-map@27.5.1: resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14783,7 +15004,7 @@ packages: fsevents: 2.3.2 dev: true - /jest-haste-map/29.4.1: + /jest-haste-map@29.4.1: resolution: {integrity: sha512-imTjcgfVVTvg02khXL11NNLTx9ZaofbAWhilrMg/G8dIkp+HYCswhxf0xxJwBkfhWb3e8dwbjuWburvxmcr58w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14802,7 +15023,7 @@ packages: fsevents: 2.3.2 dev: true - /jest-jasmine2/27.5.1: + /jest-jasmine2@27.5.1: resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14827,7 +15048,7 @@ packages: - supports-color dev: true - /jest-leak-detector/27.5.1: + /jest-leak-detector@27.5.1: resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14835,7 +15056,7 @@ packages: pretty-format: 27.5.1 dev: true - /jest-leak-detector/29.4.1: + /jest-leak-detector@29.4.1: resolution: {integrity: sha512-akpZv7TPyGMnH2RimOCgy+hPmWZf55EyFUvymQ4LMsQP8xSPlZumCPtXGoDhFNhUE2039RApZkTQDKU79p/FiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14843,7 +15064,7 @@ packages: pretty-format: 29.4.1 dev: true - /jest-matcher-utils/27.5.1: + /jest-matcher-utils@27.5.1: resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14853,7 +15074,7 @@ packages: pretty-format: 27.5.1 dev: true - /jest-matcher-utils/28.1.1: + /jest-matcher-utils@28.1.1: resolution: {integrity: sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -14863,7 +15084,7 @@ packages: pretty-format: 28.1.1 dev: true - /jest-matcher-utils/29.3.1: + /jest-matcher-utils@29.3.1: resolution: {integrity: sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14873,7 +15094,7 @@ packages: pretty-format: 29.3.1 dev: true - /jest-matcher-utils/29.4.1: + /jest-matcher-utils@29.4.1: resolution: {integrity: sha512-k5h0u8V4nAEy6lSACepxL/rw78FLDkBnXhZVgFneVpnJONhb2DhZj/Gv4eNe+1XqQ5IhgUcqj745UwH0HJmMnA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14883,7 +15104,7 @@ packages: pretty-format: 29.4.1 dev: true - /jest-message-util/27.5.1: + /jest-message-util@27.5.1: resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14898,7 +15119,7 @@ packages: stack-utils: 2.0.5 dev: true - /jest-message-util/28.1.1: + /jest-message-util@28.1.1: resolution: {integrity: sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -14913,7 +15134,7 @@ packages: stack-utils: 2.0.5 dev: true - /jest-message-util/29.3.1: + /jest-message-util@29.3.1: resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14928,7 +15149,7 @@ packages: stack-utils: 2.0.5 dev: true - /jest-message-util/29.4.1: + /jest-message-util@29.4.1: resolution: {integrity: sha512-H4/I0cXUaLeCw6FM+i4AwCnOwHRgitdaUFOdm49022YD5nfyr8C/DrbXOBEyJaj+w/y0gGJ57klssOaUiLLQGQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14943,18 +15164,18 @@ packages: stack-utils: 2.0.5 dev: true - /jest-mock-extended/3.0.1_rnja4qcakvykemesq3rilwl7p4: + /jest-mock-extended@3.0.1(jest@29.4.1)(typescript@4.9.3): resolution: {integrity: sha512-RF4Ow8pXvbRuEcCTj56oYHmig5311BSFvbEGxPNYL51wGKGu93MvVQgx0UpFmjqyBXIcElkZo2Rke88kR1iSKQ==} peerDependencies: jest: ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0 typescript: ^3.0.0 || ^4.0.0 dependencies: - jest: 29.4.1_j5wyyouvf5aixckc7ltaxrydha - ts-essentials: 7.0.3_typescript@4.9.3 + jest: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) + ts-essentials: 7.0.3(typescript@4.9.3) typescript: 4.9.3 dev: true - /jest-mock/27.5.1: + /jest-mock@27.5.1: resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -14962,7 +15183,7 @@ packages: '@types/node': 17.0.45 dev: true - /jest-mock/29.4.1: + /jest-mock@29.4.1: resolution: {integrity: sha512-MwA4hQ7zBOcgVCVnsM8TzaFLVUD/pFWTfbkY953Y81L5ret3GFRZtmPmRFAjKQSdCKoJvvqOu6Bvfpqlwwb0dQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -14971,7 +15192,7 @@ packages: jest-util: 29.4.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: + /jest-pnp-resolver@1.2.2(jest-resolve@27.5.1): resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: @@ -14983,7 +15204,7 @@ packages: jest-resolve: 27.5.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@29.4.1: + /jest-pnp-resolver@1.2.2(jest-resolve@29.4.1): resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: @@ -14995,17 +15216,17 @@ packages: jest-resolve: 29.4.1 dev: true - /jest-regex-util/27.5.1: + /jest-regex-util@27.5.1: resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: true - /jest-regex-util/29.2.0: + /jest-regex-util@29.2.0: resolution: {integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-resolve-dependencies/27.5.1: + /jest-resolve-dependencies@27.5.1: resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15016,7 +15237,7 @@ packages: - supports-color dev: true - /jest-resolve-dependencies/29.4.1: + /jest-resolve-dependencies@29.4.1: resolution: {integrity: sha512-Y3QG3M1ncAMxfjbYgtqNXC5B595zmB6e//p/qpA/58JkQXu/IpLDoLeOa8YoYfsSglBKQQzNUqtfGJJT/qLmJg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15026,7 +15247,7 @@ packages: - supports-color dev: true - /jest-resolve/27.5.1: + /jest-resolve@27.5.1: resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15034,7 +15255,7 @@ packages: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 + jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1) jest-util: 27.5.1 jest-validate: 27.5.1 resolve: 1.22.1 @@ -15042,14 +15263,14 @@ packages: slash: 3.0.0 dev: true - /jest-resolve/29.4.1: + /jest-resolve@29.4.1: resolution: {integrity: sha512-j/ZFNV2lm9IJ2wmlq1uYK0Y/1PiyDq9g4HEGsNTNr3viRbJdV+8Lf1SXIiLZXFvyiisu0qUyIXGBnw+OKWkJwQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.10 jest-haste-map: 29.4.1 - jest-pnp-resolver: 1.2.2_jest-resolve@29.4.1 + jest-pnp-resolver: 1.2.2(jest-resolve@29.4.1) jest-util: 29.4.1 jest-validate: 29.4.1 resolve: 1.22.1 @@ -15057,7 +15278,7 @@ packages: slash: 3.0.0 dev: true - /jest-runner/27.5.1: + /jest-runner@27.5.1: resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15089,7 +15310,7 @@ packages: - utf-8-validate dev: true - /jest-runner/29.4.1: + /jest-runner@29.4.1: resolution: {integrity: sha512-8d6XXXi7GtHmsHrnaqBKWxjKb166Eyj/ksSaUYdcBK09VbjPwIgWov1VwSmtupCIz8q1Xv4Qkzt/BTo3ZqiCeg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15118,7 +15339,7 @@ packages: - supports-color dev: true - /jest-runtime/27.5.1: + /jest-runtime@27.5.1: resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15148,7 +15369,7 @@ packages: - supports-color dev: true - /jest-runtime/29.4.1: + /jest-runtime@29.4.1: resolution: {integrity: sha512-UXTMU9uKu2GjYwTtoAw5rn4STxWw/nadOfW7v1sx6LaJYa3V/iymdCLQM6xy3+7C6mY8GfX22vKpgxY171UIoA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15179,7 +15400,7 @@ packages: - supports-color dev: true - /jest-serializer/27.5.1: + /jest-serializer@27.5.1: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15187,20 +15408,20 @@ packages: graceful-fs: 4.2.10 dev: true - /jest-snapshot/27.5.1: + /jest-snapshot@27.5.1: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/core': 7.18.6 '@babel/generator': 7.18.7 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.18.6) '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.6) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -15217,14 +15438,14 @@ packages: - supports-color dev: true - /jest-snapshot/29.4.1: + /jest-snapshot@29.4.1: resolution: {integrity: sha512-l4iV8EjGgQWVz3ee/LR9sULDk2pCkqb71bjvlqn+qp90lFwpnulHj4ZBT8nm1hA1C5wowXLc7MGnw321u0tsYA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.18.6 '@babel/generator': 7.18.7 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.6) + '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.18.6) '@babel/traverse': 7.18.6 '@babel/types': 7.18.7 '@jest/expect-utils': 29.4.1 @@ -15232,7 +15453,7 @@ packages: '@jest/types': 29.4.1 '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.6) chalk: 4.1.2 expect: 29.4.1 graceful-fs: 4.2.10 @@ -15249,7 +15470,7 @@ packages: - supports-color dev: true - /jest-util/27.5.1: + /jest-util@27.5.1: resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15261,7 +15482,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-util/28.1.1: + /jest-util@28.1.1: resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -15273,7 +15494,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-util/29.3.1: + /jest-util@29.3.1: resolution: {integrity: sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15285,7 +15506,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-util/29.4.1: + /jest-util@29.4.1: resolution: {integrity: sha512-bQy9FPGxVutgpN4VRc0hk6w7Hx/m6L53QxpDreTZgJd9gfx/AV2MjyPde9tGyZRINAUrSv57p2inGBu2dRLmkQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15297,7 +15518,7 @@ packages: picomatch: 2.3.1 dev: true - /jest-validate/27.5.1: + /jest-validate@27.5.1: resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15309,7 +15530,7 @@ packages: pretty-format: 27.5.1 dev: true - /jest-validate/29.4.1: + /jest-validate@29.4.1: resolution: {integrity: sha512-qNZXcZQdIQx4SfUB/atWnI4/I2HUvhz8ajOSYUu40CSmf9U5emil8EDHgE7M+3j9/pavtk3knlZBDsgFvv/SWw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15321,7 +15542,7 @@ packages: pretty-format: 29.4.1 dev: true - /jest-watcher/27.5.1: + /jest-watcher@27.5.1: resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -15334,7 +15555,7 @@ packages: string-length: 4.0.2 dev: true - /jest-watcher/29.4.1: + /jest-watcher@29.4.1: resolution: {integrity: sha512-vFOzflGFs27nU6h8dpnVRER3O2rFtL+VMEwnG0H3KLHcllLsU8y9DchSh0AL/Rg5nN1/wSiQ+P4ByMGpuybaVw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15348,25 +15569,24 @@ packages: string-length: 4.0.2 dev: true - /jest-worker/26.6.2: + /jest-worker@26.6.2: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.45 + '@types/node': 18.11.10 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true - /jest-worker/27.5.1: + /jest-worker@27.5.1: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: '@types/node': 18.11.10 merge-stream: 2.0.0 supports-color: 8.1.1 - dev: true - /jest-worker/29.4.1: + /jest-worker@29.4.1: resolution: {integrity: sha512-O9doU/S1EBe+yp/mstQ0VpPwpv0Clgn68TkNwGxL6/usX/KUW9Arnn4ag8C3jc6qHcXznhsT5Na1liYzAsuAbQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -15376,7 +15596,7 @@ packages: supports-color: 8.1.1 dev: true - /jest/27.5.1: + /jest@27.5.1: resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -15397,7 +15617,7 @@ packages: - utf-8-validate dev: true - /jest/29.4.1_j5wyyouvf5aixckc7ltaxrydha: + /jest@29.4.1(@types/node@18.11.10)(ts-node@10.9.1): resolution: {integrity: sha512-cknimw7gAXPDOmj0QqztlxVtBVCw2lYY9CeIE5N6kD+kET1H4H79HSNISJmijb1HF+qk+G+ploJgiDi5k/fRlg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -15407,30 +15627,30 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.4.1_ts-node@10.9.1 + '@jest/core': 29.4.1(ts-node@10.9.1) '@jest/types': 29.4.1 import-local: 3.1.0 - jest-cli: 29.4.1_j5wyyouvf5aixckc7ltaxrydha + jest-cli: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - supports-color - ts-node dev: true - /jiti/1.16.2: + /jiti@1.16.2: resolution: {integrity: sha512-OKBOVWmU3FxDt/UH4zSwiKPuc1nihFZiOD722FuJlngvLz2glX1v2/TJIgoA4+mrpnXxHV6dSAoCvPcYQtoG5A==} hasBin: true dev: true - /jju/1.4.0: + /jju@1.4.0: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: true - /joycon/3.1.1: + /joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} - /js-beautify/1.14.7: + /js-beautify@1.14.7: resolution: {integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==} engines: {node: '>=10'} hasBin: true @@ -15441,29 +15661,29 @@ packages: nopt: 6.0.0 dev: false - /js-sdsl/4.1.4: + /js-sdsl@4.1.4: resolution: {integrity: sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==} - /js-stringify/1.0.2: + /js-stringify@1.0.2: resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} - /js-tokens/4.0.0: + /js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - /js-yaml/3.14.1: + /js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 - /js-yaml/4.1.0: + /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 - /jsdom/16.7.0: + /jsdom@16.7.0: resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} engines: {node: '>=10'} peerDependencies: @@ -15505,7 +15725,7 @@ packages: - utf-8-validate dev: true - /jsdom/20.0.3: + /jsdom@20.0.3: resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} engines: {node: '>=14'} peerDependencies: @@ -15546,25 +15766,25 @@ packages: - utf-8-validate dev: true - /jsesc/0.5.0: + /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true dev: true - /jsesc/2.5.2: + /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true - /json-parse-better-errors/1.0.2: + /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} dev: true - /json-parse-even-better-errors/2.3.1: + /json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - /json-schema-ref-parser/7.1.4: + /json-schema-ref-parser@7.1.4: resolution: {integrity: sha512-AD7bvav0vak1/63w3jH8F7eHId/4E4EPdMAEZhGxtjktteUv9dnNB/cJy6nVnMyoTPBJnLwFK6tiQPSTeleCtQ==} dependencies: call-me-maybe: 1.0.1 @@ -15572,26 +15792,26 @@ packages: ono: 6.0.1 dev: false - /json-schema-traverse/0.4.1: + /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} - /json-schema-traverse/1.0.0: + /json-schema-traverse@1.0.0: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} - /json-schema/0.4.0: + /json-schema@0.4.0: resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} dev: true - /json-stable-stringify-without-jsonify/1.0.1: + /json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - /json-stable-stringify/1.0.1: + /json-stable-stringify@1.0.1: resolution: {integrity: sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==} dependencies: jsonify: 0.0.0 dev: true - /json-to-pretty-yaml/1.2.2: + /json-to-pretty-yaml@1.2.2: resolution: {integrity: sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==} engines: {node: '>= 0.2.0'} dependencies: @@ -15599,19 +15819,19 @@ packages: remove-trailing-spaces: 1.0.8 dev: true - /json5/2.2.1: + /json5@2.2.1: resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} engines: {node: '>=6'} hasBin: true dev: true - /json5/2.2.3: + /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true dev: true - /jsonc-eslint-parser/1.4.1: + /jsonc-eslint-parser@1.4.1: resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==} engines: {node: '>=8.10.0'} dependencies: @@ -15622,24 +15842,24 @@ packages: semver: 6.3.0 dev: true - /jsonc-parser/2.3.1: + /jsonc-parser@2.3.1: resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} dev: true - /jsonc-parser/3.1.0: + /jsonc-parser@3.1.0: resolution: {integrity: sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==} dev: true - /jsonc-parser/3.2.0: + /jsonc-parser@3.2.0: resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} dev: true - /jsonfile/4.0.0: + /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.10 - /jsonfile/6.1.0: + /jsonfile@6.1.0: resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} dependencies: universalify: 2.0.0 @@ -15647,26 +15867,26 @@ packages: graceful-fs: 4.2.10 dev: true - /jsonify/0.0.0: + /jsonify@0.0.0: resolution: {integrity: sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==} dev: true - /jsonparse/1.3.1: + /jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} dev: true - /jsonpath-plus/7.0.0: + /jsonpath-plus@7.0.0: resolution: {integrity: sha512-MH4UnrWrU1hJGVEyEyjvYgONkzNTO6Yol0nq18EMnUQ/ZC5cTuJheirXXIwu1b9mZ6t3XL0P79gPsu+zlTnDIQ==} engines: {node: '>=12.0.0'} dev: false - /jsonpointer/5.0.0: + /jsonpointer@5.0.0: resolution: {integrity: sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==} engines: {node: '>=0.10.0'} dev: true - /jsonwebtoken/8.5.1: + /jsonwebtoken@8.5.1: resolution: {integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==} engines: {node: '>=4', npm: '>=1.4.28'} dependencies: @@ -15682,7 +15902,7 @@ packages: semver: 5.7.1 dev: true - /jsonwebtoken/9.0.0: + /jsonwebtoken@9.0.0: resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==} engines: {node: '>=12', npm: '>=6'} dependencies: @@ -15691,13 +15911,13 @@ packages: ms: 2.1.3 semver: 7.3.8 - /jstransformer/1.0.0: + /jstransformer@1.0.0: resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} dependencies: is-promise: 2.2.2 promise: 7.3.1 - /jszip/3.10.0: + /jszip@3.10.0: resolution: {integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==} dependencies: lie: 3.3.0 @@ -15706,7 +15926,7 @@ packages: setimmediate: 1.0.5 dev: false - /juice/7.0.0: + /juice@7.0.0: resolution: {integrity: sha512-AjKQX31KKN+uJs+zaf+GW8mBO/f/0NqSh2moTMyvwBY+4/lXIYTU8D8I2h6BAV3Xnz6GGsbalUyFqbYMe+Vh+Q==} engines: {node: '>=10.0.0'} hasBin: true @@ -15720,64 +15940,64 @@ packages: - encoding dev: false - /jwa/1.4.1: + /jwa@1.4.1: resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} dependencies: buffer-equal-constant-time: 1.0.1 ecdsa-sig-formatter: 1.0.11 safe-buffer: 5.2.1 - /jws/3.2.2: + /jws@3.2.2: resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} dependencies: jwa: 1.4.1 safe-buffer: 5.2.1 - /kind-of/6.0.3: + /kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} dev: true - /kleur/3.0.3: + /kleur@3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} dev: true - /kolorist/1.5.1: + /kolorist@1.5.1: resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==} - /kolorist/1.7.0: + /kolorist@1.7.0: resolution: {integrity: sha512-ymToLHqL02udwVdbkowNpzjFd6UzozMtshPQKVi5k1EjKRqKqBrOnE9QbLEb0/pV76SAiIT13hdL8R6suc+f3g==} dev: true - /leac/0.6.0: + /leac@0.6.0: resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} dev: false - /leven/3.1.0: + /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} engines: {node: '>=6'} dev: true - /levn/0.3.0: + /levn@0.3.0: resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 - /levn/0.4.1: + /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 - /libbase64/1.2.1: + /libbase64@1.2.1: resolution: {integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==} dev: false - /libmime/5.2.0: + /libmime@5.2.0: resolution: {integrity: sha512-X2U5Wx0YmK0rXFbk67ASMeqYIkZ6E5vY7pNWRKtnNzqjvdYYG8xtPDpCnuUEnPU9vlgNev+JoSrcaKSUaNvfsw==} dependencies: encoding-japanese: 2.0.0 @@ -15786,7 +16006,7 @@ packages: libqp: 2.0.1 dev: false - /libmime/5.2.1: + /libmime@5.2.1: resolution: {integrity: sha512-A0z9O4+5q+ZTj7QwNe/Juy1KARNb4WaviO4mYeFC4b8dBT2EEqK2pkM+GC8MVnkOjqhl5nYQxRgnPYRRTNmuSQ==} dependencies: encoding-japanese: 2.0.0 @@ -15795,41 +16015,41 @@ packages: libqp: 2.0.1 dev: false - /libqp/2.0.1: + /libqp@2.0.1: resolution: {integrity: sha512-Ka0eC5LkF3IPNQHJmYBWljJsw0UvM6j+QdKRbWyCdTmYwvIDE6a7bCm0UkTAL/K+3KXK5qXT/ClcInU01OpdLg==} dev: false - /lie/3.3.0: + /lie@3.3.0: resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} dependencies: immediate: 3.0.6 dev: false - /lilconfig/2.0.5: + /lilconfig@2.0.5: resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} engines: {node: '>=10'} dev: false - /lilconfig/2.0.6: + /lilconfig@2.0.6: resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} engines: {node: '>=10'} - /lines-and-columns/1.2.4: + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /linkify-it/3.0.3: + /linkify-it@3.0.3: resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} dependencies: uc.micro: 1.0.6 dev: true - /linkify-it/4.0.1: + /linkify-it@4.0.1: resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} dependencies: uc.micro: 1.0.6 dev: false - /lint-staged/12.5.0: + /lint-staged@12.5.0: resolution: {integrity: sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true @@ -15837,7 +16057,7 @@ packages: cli-truncate: 3.1.0 colorette: 2.0.19 commander: 9.3.0 - debug: 4.3.4_supports-color@9.2.2 + debug: 4.3.4(supports-color@9.2.2) execa: 5.1.1 lilconfig: 2.0.5 listr2: 4.0.5 @@ -15852,19 +16072,19 @@ packages: - enquirer dev: false - /liquid-json/0.3.1: + /liquid-json@0.3.1: resolution: {integrity: sha512-wUayTU8MS827Dam6MxgD72Ui+KOSF+u/eIqpatOtjnvgJ0+mnDq33uC2M7J0tPK+upe/DpUAuK4JUU89iBoNKQ==} engines: {node: '>=4'} dev: false - /list-stylesheets/2.0.1: + /list-stylesheets@2.0.1: resolution: {integrity: sha512-UUEFowqvgRKT1+OJ59Ga5gTfVOP3hkbFo7DwNIZcMuXzJRWndYMHyDYbuqKe6lrw8KCY7c/GN5mEoLx0c54HAw==} dependencies: cheerio: 1.0.0-rc.12 pick-util: 1.1.5 dev: false - /listr2/4.0.5: + /listr2@4.0.5: resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} engines: {node: '>=12'} peerDependencies: @@ -15882,7 +16102,7 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 - /load-json-file/4.0.0: + /load-json-file@4.0.0: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} engines: {node: '>=4'} dependencies: @@ -15892,16 +16112,15 @@ packages: strip-bom: 3.0.0 dev: true - /load-tsconfig/0.2.3: + /load-tsconfig@0.2.3: resolution: {integrity: sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - /loader-runner/4.3.0: + /loader-runner@4.3.0: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} engines: {node: '>=6.11.5'} - dev: true - /loader-utils/2.0.4: + /loader-utils@2.0.4: resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} engines: {node: '>=8.9.0'} dependencies: @@ -15910,104 +16129,104 @@ packages: json5: 2.2.3 dev: true - /local-pkg/0.4.2: + /local-pkg@0.4.2: resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} engines: {node: '>=14'} - /local-pkg/0.4.3: + /local-pkg@0.4.3: resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} engines: {node: '>=14'} dev: true - /locate-path/5.0.0: + /locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} dependencies: p-locate: 4.1.0 dev: true - /locate-path/6.0.0: + /locate-path@6.0.0: resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} engines: {node: '>=10'} dependencies: p-locate: 5.0.0 - /lodash-es/4.17.21: + /lodash-es@4.17.21: resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} dev: false - /lodash.camelcase/4.3.0: + /lodash.camelcase@4.3.0: resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} dev: false - /lodash.debounce/4.0.8: + /lodash.debounce@4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} dev: true - /lodash.defaults/4.2.0: + /lodash.defaults@4.2.0: resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} dev: false - /lodash.get/4.4.2: + /lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} - /lodash.includes/4.3.0: + /lodash.includes@4.3.0: resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} dev: true - /lodash.isarguments/3.1.0: + /lodash.isarguments@3.1.0: resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} dev: false - /lodash.isboolean/3.0.3: + /lodash.isboolean@3.0.3: resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} dev: true - /lodash.isequal/4.5.0: + /lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} - /lodash.isinteger/4.0.4: + /lodash.isinteger@4.0.4: resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} dev: true - /lodash.isnumber/3.0.3: + /lodash.isnumber@3.0.3: resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} dev: true - /lodash.isplainobject/4.0.6: + /lodash.isplainobject@4.0.6: resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} dev: true - /lodash.isstring/4.0.1: + /lodash.isstring@4.0.1: resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} dev: true - /lodash.memoize/4.1.2: + /lodash.memoize@4.1.2: resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} dev: true - /lodash.merge/4.6.2: + /lodash.merge@4.6.2: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} - /lodash.omit/4.5.0: + /lodash.omit@4.5.0: resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==} dev: false - /lodash.once/4.1.1: + /lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} dev: true - /lodash.pick/4.4.0: + /lodash.pick@4.4.0: resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==} dev: true - /lodash.sortby/4.7.0: + /lodash.sortby@4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - /lodash/4.17.21: + /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - /log-symbols/4.1.0: + /log-symbols@4.1.0: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: @@ -16015,7 +16234,7 @@ packages: is-unicode-supported: 0.1.0 dev: true - /log-update/4.0.0: + /log-update@4.0.0: resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} engines: {node: '>=10'} dependencies: @@ -16024,114 +16243,114 @@ packages: slice-ansi: 4.0.0 wrap-ansi: 6.2.0 - /loglevel/1.8.1: + /loglevel@1.8.1: resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==} engines: {node: '>= 0.6.0'} dev: false - /long/4.0.0: + /long@4.0.0: resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} dev: false - /loose-envify/1.4.0: + /loose-envify@1.4.0: resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 dev: true - /lossless-json/1.0.5: + /lossless-json@1.0.5: resolution: {integrity: sha512-RicKUuLwZVNZ6ZdJHgIZnSeA05p8qWc5NW0uR96mpPIjN9WDLUg9+kj1esQU1GkPn9iLZVKatSQK5gyiaFHgJA==} dev: false - /loupe/2.3.6: + /loupe@2.3.6: resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} dependencies: get-func-name: 2.0.0 dev: true - /lower-case-first/2.0.2: + /lower-case-first@2.0.2: resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} dependencies: tslib: 2.5.0 dev: true - /lower-case/1.1.4: + /lower-case@1.1.4: resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} dev: false - /lower-case/2.0.2: + /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: tslib: 2.5.0 - /lru-cache/4.1.5: + /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: false - /lru-cache/5.1.1: + /lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 dev: false - /lru-cache/6.0.0: + /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} dependencies: yallist: 4.0.0 - /lru-cache/7.13.1: + /lru-cache@7.13.1: resolution: {integrity: sha512-CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ==} engines: {node: '>=12'} dev: false - /luxon/3.2.1: + /luxon@3.2.1: resolution: {integrity: sha512-QrwPArQCNLAKGO/C+ZIilgIuDnEnKx5QYODdDtbFaxzsbZcc/a7WFq7MhsVYgRlwawLtvOUESTlfJ+hc/USqPg==} engines: {node: '>=12'} dev: false - /macos-release/2.5.0: + /macos-release@2.5.0: resolution: {integrity: sha512-EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==} engines: {node: '>=6'} dev: true - /magic-string/0.25.9: + /magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} dependencies: sourcemap-codec: 1.4.8 - /magic-string/0.26.2: + /magic-string@0.26.2: resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} engines: {node: '>=12'} dependencies: sourcemap-codec: 1.4.8 dev: true - /magic-string/0.26.7: + /magic-string@0.26.7: resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} engines: {node: '>=12'} dependencies: sourcemap-codec: 1.4.8 - /magic-string/0.29.0: + /magic-string@0.29.0: resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /magic-string/0.30.0: + /magic-string@0.30.0: resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.14 dev: true - /mailparser/3.6.4: + /mailparser@3.6.4: resolution: {integrity: sha512-4bDgbLdlcBKX8jtVskfn/G93nZo3lf7pyuLbAQ031SHQLihEqxtRwHrb9SXMTqiTkEGlOdpDrZE5uH18O+2A+A==} dependencies: encoding-japanese: 2.0.0 @@ -16145,7 +16364,7 @@ packages: tlds: 1.236.0 dev: false - /mailsplit/5.4.0: + /mailsplit@5.4.0: resolution: {integrity: sha512-wnYxX5D5qymGIPYLwnp6h8n1+6P6vz/MJn5AzGjZ8pwICWssL+CCQjWBIToOVHASmATot4ktvlLo6CyLfOXWYA==} dependencies: libbase64: 1.2.1 @@ -16153,41 +16372,41 @@ packages: libqp: 2.0.1 dev: false - /make-dir/3.1.0: + /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: semver: 6.3.0 - /make-error/1.3.6: + /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - /makeerror/1.0.12: + /makeerror@1.0.12: resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} dependencies: tmpl: 1.0.5 dev: true - /map-cache/0.2.2: + /map-cache@0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} dev: true - /map-obj/1.0.1: + /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} dev: true - /map-obj/4.3.0: + /map-obj@4.3.0: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} dev: true - /map-stream/0.1.0: + /map-stream@0.1.0: resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} dev: false - /markdown-it-anchor/8.6.6_2zb4u3vubltivolgu556vv4aom: + /markdown-it-anchor@8.6.6(@types/markdown-it@12.2.3)(markdown-it@12.3.2): resolution: {integrity: sha512-jRW30YGywD2ESXDc+l17AiritL0uVaSnWsb26f+68qaW9zgbIIr1f4v2Nsvc0+s0Z2N3uX6t/yAw7BwCQ1wMsA==} peerDependencies: '@types/markdown-it': '*' @@ -16197,7 +16416,7 @@ packages: markdown-it: 12.3.2 dev: true - /markdown-it-attrs/4.1.6_markdown-it@12.3.2: + /markdown-it-attrs@4.1.6(markdown-it@12.3.2): resolution: {integrity: sha512-O7PDKZlN8RFMyDX13JnctQompwrrILuz2y43pW2GagcwpIIElkAdfeek+erHfxUOlXWPsjFeWmZ8ch1xtRLWpA==} engines: {node: '>=6'} peerDependencies: @@ -16206,11 +16425,11 @@ packages: markdown-it: 12.3.2 dev: true - /markdown-it-emoji/2.0.2: + /markdown-it-emoji@2.0.2: resolution: {integrity: sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ==} dev: true - /markdown-it/12.3.2: + /markdown-it@12.3.2: resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} hasBin: true dependencies: @@ -16221,7 +16440,7 @@ packages: uc.micro: 1.0.6 dev: true - /md5/2.3.0: + /md5@2.3.0: resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} dependencies: charenc: 0.0.2 @@ -16229,44 +16448,44 @@ packages: is-buffer: 1.1.6 dev: false - /mdurl/1.0.1: + /mdurl@1.0.1: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} dev: true - /media-typer/0.3.0: + /media-typer@0.3.0: resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} - /mediaquery-text/1.2.0: + /mediaquery-text@1.2.0: resolution: {integrity: sha512-cJyRqgYQi+hsYhRkyd5le0s4LsEPvOB7r+6X3jdEELNqVlM9mRIgyUPg9BzF+PuTqQH1ZekgIjYVOeWSXWq35Q==} dependencies: cssom: 0.5.0 dev: false - /memfs/3.4.12: + /memfs@3.4.12: resolution: {integrity: sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 dev: true - /memory-fs/0.3.0: + /memory-fs@0.3.0: resolution: {integrity: sha1-e8xrYp46Q+hx1+Kaymrop/FcuyA=} dependencies: errno: 0.1.8 readable-stream: 2.3.7 dev: false - /memorystream/0.3.1: + /memorystream@0.3.1: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} dev: true - /mensch/0.3.4: + /mensch@0.3.4: resolution: {integrity: sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==} dev: false - /meow/8.1.2: + /meow@8.1.2: resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} engines: {node: '>=10'} dependencies: @@ -16283,17 +16502,17 @@ packages: yargs-parser: 20.2.9 dev: true - /merge-descriptors/1.0.1: + /merge-descriptors@1.0.1: resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - /merge-stream/2.0.0: + /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - /merge2/1.4.1: + /merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - /meros/1.2.0: + /meros@1.2.0(@types/node@17.0.45): resolution: {integrity: sha512-3QRZIS707pZQnijHdhbttXRWwrHhZJ/gzolneoxKVz9N/xmsvY/7Ls8lpnI9gxbgxjcHsAVEW3mgwiZCo6kkJQ==} engines: {node: '>=12'} peerDependencies: @@ -16301,8 +16520,10 @@ packages: peerDependenciesMeta: '@types/node': optional: true + dependencies: + '@types/node': 17.0.45 - /meros/1.2.1: + /meros@1.2.1(@types/node@18.11.10): resolution: {integrity: sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==} engines: {node: '>=13'} peerDependencies: @@ -16310,72 +16531,74 @@ packages: peerDependenciesMeta: '@types/node': optional: true + dependencies: + '@types/node': 18.11.10 dev: true - /methods/1.1.2: + /methods@1.1.2: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - /micromatch/4.0.5: + /micromatch@4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 - /mime-db/1.52.0: + /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} - /mime-format/2.0.1: + /mime-format@2.0.1: resolution: {integrity: sha512-XxU3ngPbEnrYnNbIX+lYSaYg0M01v6p2ntd2YaFksTu0vayaw5OJvbdRyWs07EYRlLED5qadUZ+xo+XhOvFhwg==} dependencies: charset: 1.0.1 dev: false - /mime-types/2.1.35: + /mime-types@2.1.35: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} dependencies: mime-db: 1.52.0 - /mime/1.6.0: + /mime@1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} hasBin: true - /mime/2.6.0: + /mime@2.6.0: resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} engines: {node: '>=4.0.0'} hasBin: true - /mimic-fn/2.1.0: + /mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - /min-indent/1.0.1: + /min-indent@1.0.1: resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} engines: {node: '>=4'} dev: true - /minimatch/3.1.2: + /minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 - /minimatch/4.2.1: + /minimatch@4.2.1: resolution: {integrity: sha512-9Uq1ChtSZO+Mxa/CL1eGizn2vRn3MlLgzhT0Iz8zaY8NdvxvB0d5QdPFmCKf7JKA9Lerx5vRrnwO03jsSfGG9g==} engines: {node: '>=10'} dependencies: brace-expansion: 1.1.11 - /minimatch/5.1.0: + /minimatch@5.1.0: resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 - /minimist-options/4.1.0: + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} dependencies: @@ -16384,29 +16607,29 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.6: + /minimist@1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} - /minipass/3.3.6: + /minipass@3.3.6: resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 - /minipass/4.0.0: + /minipass@4.0.0: resolution: {integrity: sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==} engines: {node: '>=8'} dependencies: yallist: 4.0.0 - /minizlib/2.1.2: + /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} dependencies: minipass: 3.3.6 yallist: 4.0.0 - /mjml-accordion/4.13.0: + /mjml-accordion@4.13.0: resolution: {integrity: sha512-E3yihZW5Oq2p+sWOcr8kWeRTROmiTYOGxB4IOxW/jTycdY07N3FX3e6vuh7Fv3rryHEUaydUQYto3ICVyctI7w==} dependencies: '@babel/runtime': 7.18.6 @@ -16416,7 +16639,7 @@ packages: - encoding dev: false - /mjml-body/4.13.0: + /mjml-body@4.13.0: resolution: {integrity: sha512-S4HgwAuO9dEsyX9sr6WBf9/xr+H2ASVaLn22aurJm1S2Lvc1wifLPYBQgFmNdCjaesTCNtOMUDpG+Rbnavyaqg==} dependencies: '@babel/runtime': 7.18.6 @@ -16426,7 +16649,7 @@ packages: - encoding dev: false - /mjml-button/4.13.0: + /mjml-button@4.13.0: resolution: {integrity: sha512-3y8IAHCCxh7ESHh1aOOqobZKUgyNxOKAGQ9TlJoyaLpsKUFzkN8nmrD0KXF0ADSuzvhMZ1CdRIJuZ5mjv2TwWQ==} dependencies: '@babel/runtime': 7.18.6 @@ -16436,7 +16659,7 @@ packages: - encoding dev: false - /mjml-carousel/4.13.0: + /mjml-carousel@4.13.0: resolution: {integrity: sha512-ORSY5bEYlMlrWSIKI/lN0Tz3uGltWAjG8DQl2Yr3pwjwOaIzGE+kozrDf+T9xItfiIIbvKajef1dg7B7XgP0zg==} dependencies: '@babel/runtime': 7.18.6 @@ -16446,7 +16669,7 @@ packages: - encoding dev: false - /mjml-cli/4.13.0: + /mjml-cli@4.13.0: resolution: {integrity: sha512-kAZxpH0QqlTF/CcLzELgKw1ljKRxrmWJ310CJQhbPAxHvwQ/nIb+q82U+zRJAelRPPKjnOb+hSrMRqTgk9rH3w==} hasBin: true dependencies: @@ -16465,7 +16688,7 @@ packages: - encoding dev: false - /mjml-column/4.13.0: + /mjml-column@4.13.0: resolution: {integrity: sha512-O8FrWKK/bCy9XpKxrKRYWNdgWNaVd4TK4RqMeVI/I70IbnYnc1uf15jnsPMxCBSbT+NyXyk8k7fn099797uwpw==} dependencies: '@babel/runtime': 7.18.6 @@ -16475,7 +16698,7 @@ packages: - encoding dev: false - /mjml-core/4.13.0: + /mjml-core@4.13.0: resolution: {integrity: sha512-kU5AoVTlZaXR/EDi3ix66xpzUe+kScYus71lBH/wo/B+LZW70GHE1AYWtsog5oJp1MuTHpMFTNuBD/wePeEgWg==} dependencies: '@babel/runtime': 7.18.6 @@ -16492,7 +16715,7 @@ packages: - encoding dev: false - /mjml-divider/4.13.0: + /mjml-divider@4.13.0: resolution: {integrity: sha512-ooPCwfmxEC+wJduqObYezMp7W5UCHjL9Y1LPB5FGna2FrOejgfd6Ix3ij8Wrmycmlol7E2N4D7c5NDH5DbRCJg==} dependencies: '@babel/runtime': 7.18.6 @@ -16502,7 +16725,7 @@ packages: - encoding dev: false - /mjml-group/4.13.0: + /mjml-group@4.13.0: resolution: {integrity: sha512-U7E8m8aaoAE/dMqjqXPjjrKcwO36B4cquAy9ASldECrIZJBcpFYO6eYf5yLXrNCUM2P0id8pgVjrUq23s00L7Q==} dependencies: '@babel/runtime': 7.18.6 @@ -16512,7 +16735,7 @@ packages: - encoding dev: false - /mjml-head-attributes/4.13.0: + /mjml-head-attributes@4.13.0: resolution: {integrity: sha512-haggCafno+0lQylxJStkINCVCPMwfTpwE6yjCHeGOpQl/TkoNmjNkDr7DEEbNTZbt4Ekg070lQFn7clDy38EoA==} dependencies: '@babel/runtime': 7.18.6 @@ -16522,7 +16745,7 @@ packages: - encoding dev: false - /mjml-head-breakpoint/4.13.0: + /mjml-head-breakpoint@4.13.0: resolution: {integrity: sha512-D2iPDeUKQK1+rYSNa2HGOvgfPxZhNyndTG0iBEb/FxdGge2hbeDCZEN0mwDYE3wWB+qSBqlCuMI+Vr4pEjZbKg==} dependencies: '@babel/runtime': 7.18.6 @@ -16532,7 +16755,7 @@ packages: - encoding dev: false - /mjml-head-font/4.13.0: + /mjml-head-font@4.13.0: resolution: {integrity: sha512-mYn8aWnbrEap5vX2b4662hkUv6WifcYzYn++Yi6OHrJQi55LpzcU+myAGpfQEXXrpU8vGwExMTFKsJq5n2Kaow==} dependencies: '@babel/runtime': 7.18.6 @@ -16542,7 +16765,7 @@ packages: - encoding dev: false - /mjml-head-html-attributes/4.13.0: + /mjml-head-html-attributes@4.13.0: resolution: {integrity: sha512-m30Oro297+18Zou/1qYjagtmCOWtYXeoS38OABQ5zOSzMItE3TcZI9JNcOueIIWIyFCETe8StrTAKcQ2GHwsDw==} dependencies: '@babel/runtime': 7.18.6 @@ -16552,7 +16775,7 @@ packages: - encoding dev: false - /mjml-head-preview/4.13.0: + /mjml-head-preview@4.13.0: resolution: {integrity: sha512-v0K/NocjFCbaoF/0IMVNmiqov91HxqT07vNTEl0Bt9lKFrTKVC01m1S4K7AB78T/bEeJ/HwmNjr1+TMtVNGGow==} dependencies: '@babel/runtime': 7.18.6 @@ -16562,7 +16785,7 @@ packages: - encoding dev: false - /mjml-head-style/4.13.0: + /mjml-head-style@4.13.0: resolution: {integrity: sha512-tBa33GL9Atn5bAM2UwE+uxv4rI29WgX/e5lXX+5GWlsb4thmiN6rxpFTNqBqWbBNRbZk4UEZF78M7Da8xC1ZGQ==} dependencies: '@babel/runtime': 7.18.6 @@ -16572,7 +16795,7 @@ packages: - encoding dev: false - /mjml-head-title/4.13.0: + /mjml-head-title@4.13.0: resolution: {integrity: sha512-Mq0bjuZXJlwxfVcjuYihQcigZSDTKeQaG3nORR1D0jsOH2BXU4XgUK1UOcTXn2qCBIfRoIMq7rfzYs+L0CRhdw==} dependencies: '@babel/runtime': 7.18.6 @@ -16582,7 +16805,7 @@ packages: - encoding dev: false - /mjml-head/4.13.0: + /mjml-head@4.13.0: resolution: {integrity: sha512-sL2qQuoVALXBCiemu4DPo9geDr8DuUdXVJxm+4nd6k5jpLCfSDmFlNhgSsLPzsYn7VEac3/sxsjLtomQ+6/BHg==} dependencies: '@babel/runtime': 7.18.6 @@ -16592,7 +16815,7 @@ packages: - encoding dev: false - /mjml-hero/4.13.0: + /mjml-hero@4.13.0: resolution: {integrity: sha512-aWEOScdrhyjwdKBWG4XQaElRHP8LU5PtktkpMeBXa4yxrxNs25qRnDqMNkjSrnnmFKWZmQ166tfboY6RBNf0UA==} dependencies: '@babel/runtime': 7.18.6 @@ -16602,7 +16825,7 @@ packages: - encoding dev: false - /mjml-image/4.13.0: + /mjml-image@4.13.0: resolution: {integrity: sha512-agMmm2wRZTIrKwrUnYFlnAbtrKYSP0R2en+Vf92HPspAwmaw3/AeOW/QxmSiMhfGf+xsEJyzVvR/nd33jbT3sg==} dependencies: '@babel/runtime': 7.18.6 @@ -16612,7 +16835,7 @@ packages: - encoding dev: false - /mjml-migrate/4.13.0: + /mjml-migrate@4.13.0: resolution: {integrity: sha512-I1euHiAyNpaz+B5vH+Z4T+hg/YtI5p3PqQ3/zTLv8gi24V6BILjTaftWhH5+3R/gQkQhH0NUaWNnRmds+Mq5DQ==} hasBin: true dependencies: @@ -16626,7 +16849,7 @@ packages: - encoding dev: false - /mjml-navbar/4.13.0: + /mjml-navbar@4.13.0: resolution: {integrity: sha512-0Oqyyk+OdtXfsjswRb/7Ql1UOjN4MbqFPKoyltJqtj+11MRpF5+Wjd74Dj9H7l81GFwkIB9OaP+ZMiD+TPECgg==} dependencies: '@babel/runtime': 7.18.6 @@ -16636,7 +16859,7 @@ packages: - encoding dev: false - /mjml-parser-xml/4.13.0: + /mjml-parser-xml@4.13.0: resolution: {integrity: sha512-phljtI8DaW++q0aybR/Ykv9zCyP/jCFypxVNo26r2IQo//VYXyc7JuLZZT8N/LAI8lZcwbTVxQPBzJTmZ5IfwQ==} dependencies: '@babel/runtime': 7.18.6 @@ -16645,7 +16868,7 @@ packages: lodash: 4.17.21 dev: false - /mjml-preset-core/4.13.0: + /mjml-preset-core@4.13.0: resolution: {integrity: sha512-gxzYaKkvUrHuzT1oqjEPSDtdmgEnN99Hf5f1r2CR5aMOB1x66EA3T8ATvF1o7qrBTVV4KMVlQem3IubMSYJZRw==} dependencies: '@babel/runtime': 7.18.6 @@ -16678,7 +16901,7 @@ packages: - encoding dev: false - /mjml-raw/4.13.0: + /mjml-raw@4.13.0: resolution: {integrity: sha512-JbBYxwX1a/zbqnCrlDCRNqov2xqUrMCaEdTHfqE2athj479aQXvLKFM20LilTMaClp/dR0yfvFLfFVrC5ej4FQ==} dependencies: '@babel/runtime': 7.18.6 @@ -16688,7 +16911,7 @@ packages: - encoding dev: false - /mjml-section/4.13.0: + /mjml-section@4.13.0: resolution: {integrity: sha512-BLcqlhavtRakKtzDQPLv6Ae4Jt4imYWq/P0jo+Sjk7tP4QifgVA2KEQOirPK5ZUqw/lvK7Afhcths5rXZ2ItnQ==} dependencies: '@babel/runtime': 7.18.6 @@ -16698,7 +16921,7 @@ packages: - encoding dev: false - /mjml-social/4.13.0: + /mjml-social@4.13.0: resolution: {integrity: sha512-zL2a7Wwsk8OXF0Bqu+1B3La1UPwdTMcEXptO8zdh2V5LL6Xb7Gfyvx6w0CmmBtG5IjyCtqaKy5wtrcpG9Hvjfg==} dependencies: '@babel/runtime': 7.18.6 @@ -16708,7 +16931,7 @@ packages: - encoding dev: false - /mjml-spacer/4.13.0: + /mjml-spacer@4.13.0: resolution: {integrity: sha512-Acw4QJ0MJ38W4IewXuMX7hLaW1BZaln+gEEuTfrv0xwPdTxX1ILqz4r+s9mYMxYkIDLWMCjBvXyQK6aWlid13A==} dependencies: '@babel/runtime': 7.18.6 @@ -16718,7 +16941,7 @@ packages: - encoding dev: false - /mjml-table/4.13.0: + /mjml-table@4.13.0: resolution: {integrity: sha512-UAWPVMaGReQhf776DFdiwdcJTIHTek3zzQ1pb+E7VlypEYgIpFvdUJ39UIiiflhqtdBATmHwKBOtePwU0MzFMg==} dependencies: '@babel/runtime': 7.18.6 @@ -16728,7 +16951,7 @@ packages: - encoding dev: false - /mjml-text/4.13.0: + /mjml-text@4.13.0: resolution: {integrity: sha512-uDuraaQFdu+6xfuigCimbeznnOnJfwRdcCL1lTBTusTuEvW/5Va6m2D3mnMeEpl+bp4+cxesXIz9st6A9pcg5A==} dependencies: '@babel/runtime': 7.18.6 @@ -16738,13 +16961,13 @@ packages: - encoding dev: false - /mjml-validator/4.13.0: + /mjml-validator@4.13.0: resolution: {integrity: sha512-uURYfyQYtHJ6Qz/1A7/+E9ezfcoISoLZhYK3olsxKRViwaA2Mm8gy/J3yggZXnsUXWUns7Qymycm5LglLEIiQg==} dependencies: '@babel/runtime': 7.18.6 dev: false - /mjml-wrapper/4.13.0: + /mjml-wrapper@4.13.0: resolution: {integrity: sha512-p/44JvHg04rAFR7QDImg8nZucEokIjFH6KJMHxsO0frJtLZ+IuakctzlZAADHsqiR52BwocDsXSa+o9SE2l6Ng==} dependencies: '@babel/runtime': 7.18.6 @@ -16755,7 +16978,7 @@ packages: - encoding dev: false - /mjml/4.13.0: + /mjml@4.13.0: resolution: {integrity: sha512-OnFKESouLshz8DPFSb6M/dE8GkhiJnoy6LAam5TiLA1anAj24yQ2ZH388LtQoEkvTisqwiTmc9ejDh5ctnFaJQ==} hasBin: true dependencies: @@ -16769,26 +16992,28 @@ packages: - encoding dev: false - /mkdirp-promise/1.1.0: + /mkdirp-promise@1.1.0(mkdirp@1.0.4): resolution: {integrity: sha512-xzB0UZFcW1UGS2xkXeDh39jzTP282lb3Vwp4QzCQYmkTn4ysaV5dBdbkOXmhkcE1TQlZebQlgTceaWvDr3oFgw==} engines: {node: '>=4'} deprecated: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that. peerDependencies: mkdirp: '>=0.5.0' + dependencies: + mkdirp: 1.0.4 dev: false - /mkdirp/0.5.6: + /mkdirp@0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: minimist: 1.2.6 - /mkdirp/1.0.4: + /mkdirp@1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true - /mlly/1.1.0: + /mlly@1.1.0: resolution: {integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==} dependencies: acorn: 8.8.2 @@ -16797,7 +17022,7 @@ packages: ufo: 1.0.1 dev: true - /mlly/1.2.0: + /mlly@1.2.0: resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} dependencies: acorn: 8.8.2 @@ -16806,7 +17031,7 @@ packages: ufo: 1.1.1 dev: true - /mocha/9.2.2: + /mocha@9.2.2: resolution: {integrity: sha512-L6XC3EdwT6YrIk0yXpavvLkn8h+EU+Y5UcCHKECyMbdUIxyMuZj4bX4U9e1nvnvUUvQVsV2VHQr5zLdcUkhW/g==} engines: {node: '>= 12.0.0'} hasBin: true @@ -16815,7 +17040,7 @@ packages: ansi-colors: 4.1.1 browser-stdout: 1.3.1 chokidar: 3.5.3 - debug: 4.3.3_supports-color@8.1.1 + debug: 4.3.3(supports-color@8.1.1) diff: 5.0.0 escape-string-regexp: 4.0.0 find-up: 5.0.0 @@ -16837,30 +17062,30 @@ packages: yargs-unparser: 2.0.0 dev: true - /mri/1.2.0: + /mri@1.2.0: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} dev: true - /mrmime/1.0.1: + /mrmime@1.0.1: resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} engines: {node: '>=10'} dev: true - /ms/2.0.0: + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} - /ms/2.1.2: + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - /ms/2.1.3: + /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /muggle-string/0.1.0: + /muggle-string@0.1.0: resolution: {integrity: sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==} dev: true - /multer/1.4.4-lts.1: + /multer@1.4.4-lts.1: resolution: {integrity: sha512-WeSGziVj6+Z2/MwQo3GvqzgR+9Uc+qt8SwHKh3gvNPiISKfsMfG4SvCOFYlxxgkXt7yIV2i1yczehm0EOKIxIg==} engines: {node: '>= 6.0.0'} dependencies: @@ -16872,80 +17097,80 @@ packages: type-is: 1.6.18 xtend: 4.0.2 - /mute-stream/0.0.8: + /mute-stream@0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true - /mz/2.7.0: + /mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} dependencies: any-promise: 1.3.0 object-assign: 4.1.1 thenify-all: 1.6.0 - /nanoid/3.3.1: + /nanoid@3.3.1: resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true - /nanoid/3.3.4: + /nanoid@3.3.4: resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /natural-compare-lite/1.4.0: + /natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} dev: true - /natural-compare/1.4.0: + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} - /negotiator/0.6.3: + /negotiator@0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} engines: {node: '>= 0.6'} - /neo-async/2.6.2: + /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - /netmask/2.0.2: + /netmask@2.0.2: resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} engines: {node: '>= 0.4.0'} dev: false - /nice-try/1.0.5: + /nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} dev: true - /no-case/2.3.2: + /no-case@2.3.2: resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} dependencies: lower-case: 1.1.4 dev: false - /no-case/3.0.4: + /no-case@3.0.4: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 tslib: 2.5.0 - /node-abort-controller/3.0.1: + /node-abort-controller@3.0.1: resolution: {integrity: sha512-/ujIVxthRs+7q6hsdjHMaj8hRG9NuWmwrz+JdRwZ14jdFoKSkm+vDsCbF9PLpnSqjaWQJuTmVtcWHNLr+vrOFw==} - /node-addon-api/5.0.0: + /node-addon-api@5.0.0: resolution: {integrity: sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==} - /node-domexception/1.0.0: + /node-domexception@1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} engines: {node: '>=10.5.0'} - /node-emoji/1.11.0: + /node-emoji@1.11.0: resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} dependencies: lodash: 4.17.21 dev: true - /node-fetch/2.6.7: + /node-fetch@2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} engines: {node: 4.x || >=6.0.0} peerDependencies: @@ -16956,27 +17181,26 @@ packages: dependencies: whatwg-url: 5.0.0 - /node-int64/0.4.0: + /node-int64@0.4.0: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true - /node-releases/2.0.5: + /node-releases@2.0.5: resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} - dev: true - /nodemailer/6.9.1: + /nodemailer@6.9.1: resolution: {integrity: sha512-qHw7dOiU5UKNnQpXktdgQ1d3OFgRAekuvbJLcdG5dnEo/GtcTHRYM7+UfJARdOFU9WUQO8OiIamgWPmiSFHYAA==} engines: {node: '>=6.0.0'} dev: false - /nopt/5.0.0: + /nopt@5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} engines: {node: '>=6'} hasBin: true dependencies: abbrev: 1.1.1 - /nopt/6.0.0: + /nopt@6.0.0: resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true @@ -16984,7 +17208,7 @@ packages: abbrev: 1.1.1 dev: false - /normalize-package-data/2.5.0: + /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 @@ -16993,7 +17217,7 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data/3.0.3: + /normalize-package-data@3.0.3: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} engines: {node: '>=10'} dependencies: @@ -17003,17 +17227,17 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-path/2.1.1: + /normalize-path@2.1.1: resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 - /normalize-path/3.0.0: + /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - /npm-run-all/4.1.5: + /npm-run-all@4.1.5: resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==} engines: {node: '>= 4'} hasBin: true @@ -17029,13 +17253,13 @@ packages: string.prototype.padend: 3.1.3 dev: true - /npm-run-path/4.0.1: + /npm-run-path@4.0.1: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} dependencies: path-key: 3.1.1 - /npmlog/5.0.1: + /npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: are-we-there-yet: 2.0.0 @@ -17043,42 +17267,42 @@ packages: gauge: 3.0.2 set-blocking: 2.0.0 - /nprogress/0.2.0: + /nprogress@0.2.0: resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} dev: false - /nth-check/2.1.1: + /nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 - /nullthrows/1.1.1: + /nullthrows@1.1.1: resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - /nwsapi/2.2.1: + /nwsapi@2.2.1: resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==} dev: true - /nwsapi/2.2.2: + /nwsapi@2.2.2: resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} dev: true - /oauth/0.9.15: + /oauth@0.9.15: resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==} dev: false - /object-assign/4.1.1: + /object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /object-hash/3.0.0: + /object-hash@3.0.0: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - /object-inspect/1.12.2: + /object-inspect@1.12.2: resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} - /object-is/1.1.5: + /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: @@ -17086,16 +17310,16 @@ packages: define-properties: 1.1.4 dev: true - /object-keys/1.1.1: + /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - /object-path/0.11.8: + /object-path@0.11.8: resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==} engines: {node: '>= 10.12.0'} dev: true - /object.assign/4.1.2: + /object.assign@4.1.2: resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} engines: {node: '>= 0.4'} dependencies: @@ -17104,44 +17328,44 @@ packages: has-symbols: 1.0.3 object-keys: 1.1.1 - /on-finished/2.3.0: + /on-finished@2.3.0: resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 dev: true - /on-finished/2.4.1: + /on-finished@2.4.1: resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 - /on-headers/1.0.2: + /on-headers@1.0.2: resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} engines: {node: '>= 0.8'} dev: false - /once/1.4.0: + /once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - /onetime/5.1.2: + /onetime@5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} dependencies: mimic-fn: 2.1.0 - /ono/5.1.0: + /ono@5.1.0: resolution: {integrity: sha512-GgqRIUWErLX4l9Up0khRtbrlH8Fyj59A0nKv8V6pWEto38aUgnOGOOF7UmgFFLzFnDSc8REzaTXOc0hqEe7yIw==} dev: false - /ono/6.0.1: + /ono@6.0.1: resolution: {integrity: sha512-5rdYW/106kHqLeG22GE2MHKq+FlsxMERZev9DCzQX1zwkxnFwBivSn5i17a5O/rDmOJOdf4Wyt80UZljzx9+DA==} dev: false - /open/7.4.2: + /open@7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} dependencies: @@ -17149,24 +17373,24 @@ packages: is-wsl: 2.2.0 dev: false - /openapi-schemas/1.0.3: + /openapi-schemas@1.0.3: resolution: {integrity: sha512-KtMWcK2VtOS+nD8RKSIyScJsj8JrmVWcIX7Kjx4xEHijFYuvMTDON8WfeKOgeSb4uNG6UsqLj5Na7nKbSav9RQ==} engines: {node: '>=8'} dev: false - /openapi-types/1.3.5: + /openapi-types@1.3.5: resolution: {integrity: sha512-11oi4zYorsgvg5yBarZplAqbpev5HkuVNPlZaPTknPDzAynq+lnJdXAmruGWP0s+dNYZS7bjM+xrTpJw7184Fg==} dev: false - /openapi-types/12.0.0: + /openapi-types@12.0.0: resolution: {integrity: sha512-6Wd9k8nmGQHgCbehZCP6wwWcfXcvinhybUTBatuhjRsCxUIujuYFZc9QnGeae75CyHASewBtxs0HX/qwREReUw==} - /opener/1.5.2: + /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true dev: true - /optionator/0.8.3: + /optionator@0.8.3: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} dependencies: @@ -17177,7 +17401,7 @@ packages: type-check: 0.3.2 word-wrap: 1.2.3 - /optionator/0.9.1: + /optionator@0.9.1: resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} engines: {node: '>= 0.8.0'} dependencies: @@ -17188,7 +17412,7 @@ packages: type-check: 0.4.0 word-wrap: 1.2.3 - /ora/5.4.1: + /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} engines: {node: '>=10'} dependencies: @@ -17203,7 +17427,7 @@ packages: wcwidth: 1.0.1 dev: true - /os-name/4.0.1: + /os-name@4.0.1: resolution: {integrity: sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==} engines: {node: '>=10'} dependencies: @@ -17211,62 +17435,62 @@ packages: windows-release: 4.0.0 dev: true - /os-tmpdir/1.0.2: + /os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} dev: true - /p-limit/2.3.0: + /p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true - /p-limit/3.1.0: + /p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 - /p-limit/4.0.0: + /p-limit@4.0.0: resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: yocto-queue: 1.0.0 dev: true - /p-locate/4.1.0: + /p-locate@4.1.0: resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} engines: {node: '>=8'} dependencies: p-limit: 2.3.0 dev: true - /p-locate/5.0.0: + /p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} dependencies: p-limit: 3.1.0 - /p-map/4.0.0: + /p-map@4.0.0: resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} engines: {node: '>=10'} dependencies: aggregate-error: 3.1.0 - /p-try/2.2.0: + /p-try@2.2.0: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} dev: true - /pac-proxy-agent/5.0.0: + /pac-proxy-agent@5.0.0: resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==} engines: {node: '>= 8'} dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) get-uri: 3.0.2 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 @@ -17277,7 +17501,7 @@ packages: - supports-color dev: false - /pac-resolver/5.0.1: + /pac-resolver@5.0.1: resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==} engines: {node: '>= 8'} dependencies: @@ -17286,38 +17510,38 @@ packages: netmask: 2.0.2 dev: false - /paho-mqtt/1.1.0: + /paho-mqtt@1.1.0: resolution: {integrity: sha512-KPbL9KAB0ASvhSDbOrZBaccXS+/s7/LIofbPyERww8hM5Ko71GUJQ6Nmg0BWqj8phAIT8zdf/Sd/RftHU9i2HA==} dev: false - /pako/1.0.11: + /pako@1.0.11: resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} dev: false - /param-case/2.1.1: + /param-case@2.1.1: resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} dependencies: no-case: 2.3.2 dev: false - /param-case/3.0.4: + /param-case@3.0.4: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 tslib: 2.5.0 - /parent-module/1.0.1: + /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} engines: {node: '>=6'} dependencies: callsites: 3.1.0 - /parse-code-context/1.0.0: + /parse-code-context@1.0.0: resolution: {integrity: sha512-OZQaqKaQnR21iqhlnPfVisFjBWjhnMl5J9MgbP8xC+EwoVqbXrq78lp+9Zb3ahmLzrIX5Us/qbvBnaS3hkH6OA==} engines: {node: '>=6'} dev: true - /parse-filepath/1.0.2: + /parse-filepath@1.0.2: resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} engines: {node: '>=0.8'} dependencies: @@ -17326,7 +17550,7 @@ packages: path-root: 0.1.1 dev: true - /parse-json/4.0.0: + /parse-json@4.0.0: resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} engines: {node: '>=4'} dependencies: @@ -17334,7 +17558,7 @@ packages: json-parse-better-errors: 1.0.2 dev: true - /parse-json/5.2.0: + /parse-json@5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: @@ -17343,39 +17567,39 @@ packages: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 - /parse5-htmlparser2-tree-adapter/6.0.1: + /parse5-htmlparser2-tree-adapter@6.0.1: resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} dependencies: parse5: 6.0.1 dev: false - /parse5-htmlparser2-tree-adapter/7.0.0: + /parse5-htmlparser2-tree-adapter@7.0.0: resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} dependencies: domhandler: 5.0.3 parse5: 7.1.2 dev: false - /parse5/6.0.1: + /parse5@6.0.1: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} - /parse5/7.1.2: + /parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} dependencies: entities: 4.4.0 - /parseley/0.11.0: + /parseley@0.11.0: resolution: {integrity: sha512-VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ==} dependencies: leac: 0.6.0 peberminta: 0.8.0 dev: false - /parseqs/0.0.6: + /parseqs@0.0.6: resolution: {integrity: sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==} dev: false - /parser-ts/0.6.16_fp-ts@2.12.1: + /parser-ts@0.6.16(fp-ts@2.12.1): resolution: {integrity: sha512-BC5HBg1UfaGKi/PKwUZKmFwQq56qVsMel1Gx0Lu2JeHf/J+XCqV9fahCil0GOMC+sH2ON3N6jdyIoI6RzCyQqw==} peerDependencies: fp-ts: ^2.0.0 @@ -17384,49 +17608,49 @@ packages: fp-ts: 2.12.1 dev: false - /parseuri/0.0.6: + /parseuri@0.0.6: resolution: {integrity: sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==} dev: false - /parseurl/1.3.3: + /parseurl@1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} - /pascal-case/3.1.2: + /pascal-case@3.1.2: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 tslib: 2.5.0 - /passport-github2/0.1.12: + /passport-github2@0.1.12: resolution: {integrity: sha512-3nPUCc7ttF/3HSP/k9sAXjz3SkGv5Nki84I05kSQPo01Jqq1NzJACgMblCK0fGcv9pKCG/KXU3AJRDGLqHLoIw==} engines: {node: '>= 0.8.0'} dependencies: passport-oauth2: 1.6.1 dev: false - /passport-google-oauth20/2.0.0: + /passport-google-oauth20@2.0.0: resolution: {integrity: sha512-KSk6IJ15RoxuGq7D1UKK/8qKhNfzbLeLrG3gkLZ7p4A6DBCcv7xpyQwuXtWdpyR0+E0mwkpjY1VfPOhxQrKzdQ==} engines: {node: '>= 0.4.0'} dependencies: passport-oauth2: 1.6.1 dev: false - /passport-jwt/4.0.1: + /passport-jwt@4.0.1: resolution: {integrity: sha512-UCKMDYhNuGOBE9/9Ycuoyh7vP6jpeTp/+sfMJl7nLff/t6dps+iaeE0hhNkKN8/HZHcJ7lCdOyDxHdDoxoSvdQ==} dependencies: jsonwebtoken: 9.0.0 passport-strategy: 1.0.0 dev: false - /passport-local/1.0.0: + /passport-local@1.0.0: resolution: {integrity: sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==} engines: {node: '>= 0.4.0'} dependencies: passport-strategy: 1.0.0 dev: false - /passport-microsoft/1.0.0: + /passport-microsoft@1.0.0: resolution: {integrity: sha512-L1JHeCbSObSZZXiG7jU2KoKie6nzZLwGt38HXz1GasKrsCQdOnf5kH8ltV4BWNUfBL2Pt1csWn1iuBSerprrcg==} engines: {node: '>= 0.4.0'} dependencies: @@ -17434,7 +17658,7 @@ packages: pkginfo: 0.4.1 dev: false - /passport-oauth2/1.6.1: + /passport-oauth2@1.6.1: resolution: {integrity: sha512-ZbV43Hq9d/SBSYQ22GOiglFsjsD1YY/qdiptA+8ej+9C1dL1TVB+mBE5kDH/D4AJo50+2i8f4bx0vg4/yDDZCQ==} engines: {node: '>= 0.4.0'} dependencies: @@ -17445,12 +17669,12 @@ packages: utils-merge: 1.0.1 dev: false - /passport-strategy/1.0.0: + /passport-strategy@1.0.0: resolution: {integrity: sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==} engines: {node: '>= 0.4.0'} dev: false - /passport/0.6.0: + /passport@0.6.0: resolution: {integrity: sha512-0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==} engines: {node: '>= 0.4.0'} dependencies: @@ -17459,156 +17683,156 @@ packages: utils-merge: 1.0.1 dev: false - /path-browserify/1.0.1: + /path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} dev: true - /path-case/3.0.4: + /path-case@3.0.4: resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} dependencies: dot-case: 3.0.4 tslib: 2.5.0 - /path-exists/4.0.0: + /path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} - /path-is-absolute/1.0.1: + /path-is-absolute@1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - /path-key/2.0.1: + /path-key@2.0.1: resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} engines: {node: '>=4'} dev: true - /path-key/3.1.1: + /path-key@3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} - /path-parse/1.0.7: + /path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - /path-root-regex/0.1.2: + /path-root-regex@0.1.2: resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} engines: {node: '>=0.10.0'} dev: true - /path-root/0.1.1: + /path-root@0.1.1: resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} engines: {node: '>=0.10.0'} dependencies: path-root-regex: 0.1.2 dev: true - /path-to-regexp/0.1.7: + /path-to-regexp@0.1.7: resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} - /path-to-regexp/3.2.0: + /path-to-regexp@3.2.0: resolution: {integrity: sha512-jczvQbCUS7XmS7o+y1aEO9OBVFeZBQ1MDSEqmO7xSoPgOPoowY/SxLpZ6Vh97/8qHZOteiCKb7gkG9gA2ZUxJA==} - /path-type/3.0.0: + /path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} dependencies: pify: 3.0.0 dev: true - /path-type/4.0.0: + /path-type@4.0.0: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - /path/0.12.7: + /path@0.12.7: resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} dependencies: process: 0.11.10 util: 0.10.4 dev: false - /pathe/0.2.0: + /pathe@0.2.0: resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} dev: true - /pathe/1.1.0: + /pathe@1.1.0: resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==} dev: true - /pathval/1.1.1: + /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} dev: true - /pause-stream/0.0.11: + /pause-stream@0.0.11: resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} dependencies: through: 2.3.8 dev: false - /pause/0.0.1: + /pause@0.0.1: resolution: {integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==} dev: false - /peberminta/0.8.0: + /peberminta@0.8.0: resolution: {integrity: sha512-YYEs+eauIjDH5nUEGi18EohWE0nV2QbGTqmxQcqgZ/0g+laPCQmuIqq7EBLVi9uim9zMgfJv0QBZEnQ3uHw/Tw==} dev: false - /pend/1.2.0: + /pend@1.2.0: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} dev: false - /pick-util/1.1.5: + /pick-util@1.1.5: resolution: {integrity: sha512-H0MaM8T7wpQ/azvB12ChZw7kpSFzjsgv3Z+N7fUWnL1McTGSEeroCngcK4eOPiFQq08rAyKX3hadcAB1kUqfXA==} dependencies: '@jonkemp/package-utils': 1.0.8 dev: false - /picocolors/1.0.0: + /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - /picomatch/2.3.1: + /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} - /pidtree/0.3.1: + /pidtree@0.3.1: resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} engines: {node: '>=0.10'} hasBin: true dev: true - /pidtree/0.5.0: + /pidtree@0.5.0: resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==} engines: {node: '>=0.10'} hasBin: true dev: false - /pify/3.0.0: + /pify@3.0.0: resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} dev: true - /pinkie-promise/1.0.0: + /pinkie-promise@1.0.0: resolution: {integrity: sha512-5mvtVNse2Ml9zpFKkWBpGsTPwm3DKhs+c95prO/F6E7d6DN0FPqxs6LONpLNpyD7Iheb7QN4BbUoKJgo+DnkQA==} engines: {node: '>=0.10.0'} dependencies: pinkie: 1.0.0 dev: false - /pinkie/1.0.0: + /pinkie@1.0.0: resolution: {integrity: sha512-VFVaU1ysKakao68ktZm76PIdOhvEfoNNRaGkyLln9Os7r0/MCxqHjHyBM7dT3pgTiBybqiPtpqKfpENwdBp50Q==} engines: {node: '>=0.10.0'} dev: false - /pirates/4.0.5: + /pirates@4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} - /pkg-dir/4.2.0: + /pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} dependencies: find-up: 4.1.0 dev: true - /pkg-types/1.0.1: + /pkg-types@1.0.1: resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==} dependencies: jsonc-parser: 3.2.0 @@ -17616,7 +17840,7 @@ packages: pathe: 1.1.0 dev: true - /pkg-types/1.0.2: + /pkg-types@1.0.2: resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} dependencies: jsonc-parser: 3.2.0 @@ -17624,17 +17848,17 @@ packages: pathe: 1.1.0 dev: true - /pkginfo/0.4.1: + /pkginfo@0.4.1: resolution: {integrity: sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==} engines: {node: '>= 0.4.0'} dev: false - /pluralize/8.0.0: + /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} dev: true - /portfinder/1.0.32: + /portfinder@1.0.32: resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} engines: {node: '>= 0.12.0'} dependencies: @@ -17645,7 +17869,7 @@ packages: - supports-color dev: true - /postcss-load-config/3.1.4: + /postcss-load-config@3.1.4: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -17660,7 +17884,7 @@ packages: lilconfig: 2.0.6 yaml: 1.10.2 - /postcss-selector-parser/6.0.10: + /postcss-selector-parser@6.0.10: resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} engines: {node: '>=4'} dependencies: @@ -17668,7 +17892,7 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss/8.4.16: + /postcss@8.4.16: resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} engines: {node: ^10 || ^12 || >=14} dependencies: @@ -17676,7 +17900,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.19: + /postcss@8.4.19: resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} engines: {node: ^10 || ^12 || >=14} dependencies: @@ -17684,7 +17908,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postcss/8.4.21: + /postcss@8.4.21: resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} dependencies: @@ -17692,7 +17916,7 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /postman-collection/4.1.4: + /postman-collection@4.1.4: resolution: {integrity: sha512-3b/ZUrCIXRG3Eh3P6usiBYSZbCHTwMsJJ1l2RID/rdv/EC8YyhVS5PKGKdpYrRB69F/fETD9lOAuhvCwj0h71w==} engines: {node: '>=10'} dependencies: @@ -17709,45 +17933,45 @@ packages: uuid: 8.3.2 dev: false - /postman-url-encoder/3.0.5: + /postman-url-encoder@3.0.5: resolution: {integrity: sha512-jOrdVvzUXBC7C+9gkIkpDJ3HIxOHTIqjpQ4C1EMt1ZGeMvSEpbFCKq23DEfgsj46vMnDgyQf+1ZLp2Wm+bKSsA==} engines: {node: '>=10'} dependencies: punycode: 2.1.1 dev: false - /prelude-ls/1.1.2: + /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} - /prelude-ls/1.2.1: + /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - /prettier-linter-helpers/1.0.0: + /prettier-linter-helpers@1.0.0: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} engines: {node: '>=6.0.0'} dependencies: fast-diff: 1.2.0 dev: true - /prettier/2.8.4: + /prettier@2.8.4: resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} engines: {node: '>=10.13.0'} hasBin: true dev: true - /pretty-bytes/5.6.0: + /pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} dev: true - /pretty-bytes/6.0.0: + /pretty-bytes@6.0.0: resolution: {integrity: sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==} engines: {node: ^14.13.1 || >=16.0.0} dev: true - /pretty-format/27.5.1: + /pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: @@ -17756,7 +17980,7 @@ packages: react-is: 17.0.2 dev: true - /pretty-format/28.1.1: + /pretty-format@28.1.1: resolution: {integrity: sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: @@ -17766,7 +17990,7 @@ packages: react-is: 18.2.0 dev: true - /pretty-format/29.3.1: + /pretty-format@29.3.1: resolution: {integrity: sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -17775,7 +17999,7 @@ packages: react-is: 18.2.0 dev: true - /pretty-format/29.4.1: + /pretty-format@29.4.1: resolution: {integrity: sha512-dt/Z761JUVsrIKaY215o1xQJBGlSmTx/h4cSqXqjHLnU1+Kt+mavVE7UgqJJO5ukx5HjSswHfmXz4LjS2oIJfg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: @@ -17784,13 +18008,13 @@ packages: react-is: 18.2.0 dev: true - /preview-email/3.0.5: + /preview-email@3.0.5: resolution: {integrity: sha512-q37jdkVw+wic0o/7xYhOTBS4kF0WX3two0OepmR1Fhxp9NTpO3rJTccAjQm95gJx/2Wa/Nv98sr9pXIQ77/foA==} engines: {node: '>=10'} deprecated: Please upgrade to v3.0.7+ as we have added iOS Simulator support to previewing emails! See and screenshots at . dependencies: dayjs: 1.11.7 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) mailparser: 3.6.4 nodemailer: 6.9.1 open: 7.4.2 @@ -17800,7 +18024,7 @@ packages: - supports-color dev: false - /prisma/4.8.1: + /prisma@4.8.1: resolution: {integrity: sha512-ZMLnSjwulIeYfaU1O6/LF6PEJzxN5par5weykxMykS9Z6ara/j76JH3Yo2AH3bgJbPN4Z6NeCK9s5fDkzf33cg==} engines: {node: '>=14.17'} hasBin: true @@ -17809,24 +18033,24 @@ packages: '@prisma/engines': 4.8.1 dev: false - /process-nextick-args/2.0.1: + /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} - /process/0.11.10: + /process@0.11.10: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} dev: false - /promise-polyfill/8.1.3: + /promise-polyfill@8.1.3: resolution: {integrity: sha512-MG5r82wBzh7pSKDRa9y+vllNHz3e3d4CNj1PQE4BQYxLme0gKYYBm9YENq+UkEikyZ0XbiGWxYlVw3Rl9O/U8g==} dev: false - /promise/7.3.1: + /promise@7.3.1: resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} dependencies: asap: 2.0.6 - /prompts/2.4.2: + /prompts@2.4.2: resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} engines: {node: '>= 6'} dependencies: @@ -17834,11 +18058,11 @@ packages: sisteransi: 1.0.5 dev: true - /proto-list/1.2.4: + /proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} dev: false - /protobufjs/6.11.3: + /protobufjs@6.11.3: resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} hasBin: true requiresBuild: true @@ -17858,19 +18082,19 @@ packages: long: 4.0.0 dev: false - /proxy-addr/2.0.7: + /proxy-addr@2.0.7: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} dependencies: forwarded: 0.2.0 ipaddr.js: 1.9.1 - /proxy-agent/5.0.0: + /proxy-agent@5.0.0: resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==} engines: {node: '>= 8'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.1 lru-cache: 5.1.1 @@ -17881,30 +18105,30 @@ packages: - supports-color dev: false - /proxy-from-env/1.1.0: + /proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} dev: false - /prr/1.0.1: + /prr@1.0.1: resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=} dev: false - /pseudomap/1.0.2: + /pseudomap@1.0.2: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: false - /psl/1.9.0: + /psl@1.9.0: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} dev: true - /pug-attrs/3.0.0: + /pug-attrs@3.0.0: resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} dependencies: constantinople: 4.0.1 js-stringify: 1.0.2 pug-runtime: 3.0.1 - /pug-code-gen/3.0.2: + /pug-code-gen@3.0.2: resolution: {integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==} dependencies: constantinople: 4.0.1 @@ -17916,10 +18140,10 @@ packages: void-elements: 3.1.0 with: 7.0.2 - /pug-error/2.0.0: + /pug-error@2.0.0: resolution: {integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==} - /pug-filters/4.0.0: + /pug-filters@4.0.0: resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} dependencies: constantinople: 4.0.1 @@ -17928,43 +18152,43 @@ packages: pug-walk: 2.0.0 resolve: 1.22.1 - /pug-lexer/5.0.1: + /pug-lexer@5.0.1: resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} dependencies: character-parser: 2.2.0 is-expression: 4.0.0 pug-error: 2.0.0 - /pug-linker/4.0.0: + /pug-linker@4.0.0: resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} dependencies: pug-error: 2.0.0 pug-walk: 2.0.0 - /pug-load/3.0.0: + /pug-load@3.0.0: resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} dependencies: object-assign: 4.1.1 pug-walk: 2.0.0 - /pug-parser/6.0.0: + /pug-parser@6.0.0: resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} dependencies: pug-error: 2.0.0 token-stream: 1.0.0 - /pug-runtime/3.0.1: + /pug-runtime@3.0.1: resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} - /pug-strip-comments/2.0.0: + /pug-strip-comments@2.0.0: resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} dependencies: pug-error: 2.0.0 - /pug-walk/2.0.0: + /pug-walk@2.0.0: resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} - /pug/3.0.2: + /pug@3.0.2: resolution: {integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==} dependencies: pug-code-gen: 3.0.2 @@ -17976,64 +18200,64 @@ packages: pug-runtime: 3.0.1 pug-strip-comments: 2.0.0 - /pump/3.0.0: + /pump@3.0.0: resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} dependencies: end-of-stream: 1.4.4 once: 1.4.0 dev: true - /punycode/1.3.2: + /punycode@1.3.2: resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} - /punycode/2.1.1: + /punycode@2.1.1: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} - /pvtsutils/1.3.2: + /pvtsutils@1.3.2: resolution: {integrity: sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==} dependencies: tslib: 2.5.0 dev: true - /pvutils/1.1.3: + /pvutils@1.1.3: resolution: {integrity: sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==} engines: {node: '>=6.0.0'} dev: true - /q/1.5.1: + /q@1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - /qs/6.11.0: + /qs@6.11.0: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.4 - /querystring/0.2.0: + /querystring@0.2.0: resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: false - /querystringify/2.2.0: + /querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} dev: true - /queue-microtask/1.2.3: + /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - /quick-lru/4.0.1: + /quick-lru@4.0.1: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} dev: true - /quickjs-emscripten/0.15.0: + /quickjs-emscripten@0.15.0: resolution: {integrity: sha512-7b32VY45/Rmo/S81W0VcHnsPW9yvCbGOCjf+xl8XYcQIL/FmbfmwroJPnyXHRYC0HO8mk8cTkvsMC+0bR/NrJA==} dev: false - /ramda-adjunct/2.36.0_ramda@0.27.2: + /ramda-adjunct@2.36.0(ramda@0.27.2): resolution: {integrity: sha512-8w+/Hx73oByS+vo+BfAPOG3HYL2ay6O5fjrJpR7NFxMoFWksKz6vSOtvjqdfMM6MfAimHizq9tpdI0OD4xbKog==} engines: {node: '>=0.10.3'} peerDependencies: @@ -18042,26 +18266,25 @@ packages: ramda: 0.27.2 dev: false - /ramda/0.27.2: + /ramda@0.27.2: resolution: {integrity: sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==} dev: false - /random-bytes/1.0.0: + /random-bytes@1.0.0: resolution: {integrity: sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==} engines: {node: '>= 0.8'} dev: false - /randombytes/2.1.0: + /randombytes@2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 - dev: true - /range-parser/1.2.1: + /range-parser@1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} - /raw-body/2.5.1: + /raw-body@2.5.1: resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} engines: {node: '>= 0.8'} dependencies: @@ -18070,15 +18293,15 @@ packages: iconv-lite: 0.4.24 unpipe: 1.0.0 - /react-is/17.0.2: + /react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} dev: true - /react-is/18.2.0: + /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true - /read-pkg-up/7.0.1: + /read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} engines: {node: '>=8'} dependencies: @@ -18087,7 +18310,7 @@ packages: type-fest: 0.8.1 dev: true - /read-pkg/3.0.0: + /read-pkg@3.0.0: resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} engines: {node: '>=4'} dependencies: @@ -18096,7 +18319,7 @@ packages: path-type: 3.0.0 dev: true - /read-pkg/5.2.0: + /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: @@ -18106,7 +18329,7 @@ packages: type-fest: 0.6.0 dev: true - /readable-stream/1.1.14: + /readable-stream@1.1.14: resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} dependencies: core-util-is: 1.0.3 @@ -18115,7 +18338,7 @@ packages: string_decoder: 0.10.31 dev: false - /readable-stream/2.3.7: + /readable-stream@2.3.7: resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} dependencies: core-util-is: 1.0.3 @@ -18126,7 +18349,7 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readable-stream/3.6.0: + /readable-stream@3.6.0: resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} engines: {node: '>= 6'} dependencies: @@ -18134,20 +18357,20 @@ packages: string_decoder: 1.1.1 util-deprecate: 1.0.2 - /readdirp/3.6.0: + /readdirp@3.6.0: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} dependencies: picomatch: 2.3.1 - /rechoir/0.6.2: + /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} dependencies: resolve: 1.22.1 dev: true - /redent/3.0.0: + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} dependencies: @@ -18155,42 +18378,42 @@ packages: strip-indent: 3.0.0 dev: true - /redis-errors/1.2.0: + /redis-errors@1.2.0: resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} engines: {node: '>=4'} dev: false - /redis-parser/3.0.0: + /redis-parser@3.0.0: resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} engines: {node: '>=4'} dependencies: redis-errors: 1.2.0 dev: false - /reflect-metadata/0.1.13: + /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} - /regenerate-unicode-properties/10.0.1: + /regenerate-unicode-properties@10.0.1: resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true - /regenerate/1.4.2: + /regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true - /regenerator-runtime/0.13.10: + /regenerator-runtime@0.13.10: resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} - /regenerator-transform/0.15.0: + /regenerator-transform@0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: '@babel/runtime': 7.18.6 dev: true - /regexp.prototype.flags/1.4.3: + /regexp.prototype.flags@1.4.3: resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} engines: {node: '>= 0.4'} dependencies: @@ -18198,11 +18421,11 @@ packages: define-properties: 1.1.4 functions-have-names: 1.2.3 - /regexpp/3.2.0: + /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} - /regexpu-core/5.1.0: + /regexpu-core@5.1.0: resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} engines: {node: '>=4'} dependencies: @@ -18214,23 +18437,23 @@ packages: unicode-match-property-value-ecmascript: 2.0.0 dev: true - /regjsgen/0.6.0: + /regjsgen@0.6.0: resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} dev: true - /regjsparser/0.8.4: + /regjsparser@0.8.4: resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} hasBin: true dependencies: jsesc: 0.5.0 dev: true - /relateurl/0.2.7: + /relateurl@0.2.7: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} dev: false - /relay-runtime/12.0.0: + /relay-runtime@12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: '@babel/runtime': 7.18.6 @@ -18240,97 +18463,97 @@ packages: - encoding dev: true - /remedial/1.0.8: + /remedial@1.0.8: resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} dev: true - /remote-content/3.0.1: + /remote-content@3.0.1: resolution: {integrity: sha512-zEMsvb4GgxVKBBTHgy2tte67RYBZx2Kyg9mTYpg+JfATHDqYJqhuC3zG1VoiYhDVP5JaB5+mPKcAvdnT0n3jxA==} dependencies: proxy-from-env: 1.1.0 superagent: 8.0.9 - superagent-proxy: 3.0.0_superagent@8.0.9 + superagent-proxy: 3.0.0(superagent@8.0.9) transitivePeerDependencies: - supports-color dev: false - /remove-trailing-separator/1.1.0: + /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} - /remove-trailing-spaces/1.0.8: + /remove-trailing-spaces@1.0.8: resolution: {integrity: sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==} dev: true - /replaceall/0.1.6: + /replaceall@0.1.6: resolution: {integrity: sha512-sL26E4+8Kec7bwpRjHlQvbNZcpnGroT3PA7ywsgH6GjzxAg4IGNlNalLoRC/JmTed7cMhyDbi44pWw1kMhDxlw==} engines: {node: '>= 0.8.x'} dev: true - /request-light/0.5.8: + /request-light@0.5.8: resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==} dev: true - /require-directory/2.1.1: + /require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} - /require-from-string/2.0.2: + /require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - /require-main-filename/2.0.0: + /require-main-filename@2.0.0: resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} dev: true - /requires-port/1.0.0: + /requires-port@1.0.0: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /resolve-cwd/3.0.0: + /resolve-cwd@3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} engines: {node: '>=8'} dependencies: resolve-from: 5.0.0 dev: true - /resolve-from/2.0.0: + /resolve-from@2.0.0: resolution: {integrity: sha512-qpFcKaXsq8+oRoLilkwyc7zHGF5i9Q2/25NIgLQQ/+VVv9rU4qvr6nXVAw1DsnXJyQkZsR4Ytfbtg5ehfcUssQ==} engines: {node: '>=0.10.0'} dev: false - /resolve-from/4.0.0: + /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} - /resolve-from/5.0.0: + /resolve-from@5.0.0: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - /resolve-global/1.0.0: + /resolve-global@1.0.0: resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} engines: {node: '>=8'} dependencies: global-dirs: 0.1.1 dev: true - /resolve.exports/1.1.0: + /resolve.exports@1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} dev: true - /resolve.exports/2.0.0: + /resolve.exports@2.0.0: resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} engines: {node: '>=10'} dev: true - /resolve/1.19.0: + /resolve@1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: is-core-module: 2.9.0 path-parse: 1.0.7 dev: true - /resolve/1.22.1: + /resolve@1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true dependencies: @@ -18338,39 +18561,39 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /restore-cursor/3.1.0: + /restore-cursor@3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} dependencies: onetime: 5.1.2 signal-exit: 3.0.7 - /retry/0.13.1: + /retry@0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} dev: false - /reusify/1.0.4: + /reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - /rfdc/1.3.0: + /rfdc@1.3.0: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - /rimraf/2.7.1: + /rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: glob: 7.2.0 dev: false - /rimraf/3.0.2: + /rimraf@3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.0 - /rollup-plugin-dts/4.2.2_okefoyb4o5sittgqayreuhurei: + /rollup-plugin-dts@4.2.2(rollup@2.75.7)(typescript@4.7.4): resolution: {integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==} engines: {node: '>=v12.22.11'} peerDependencies: @@ -18384,7 +18607,7 @@ packages: '@babel/code-frame': 7.18.6 dev: true - /rollup-plugin-inject/3.0.2: + /rollup-plugin-inject@3.0.2: resolution: {integrity: sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject. dependencies: @@ -18393,22 +18616,24 @@ packages: rollup-pluginutils: 2.8.2 dev: true - /rollup-plugin-node-polyfills/0.2.1: + /rollup-plugin-node-polyfills@0.2.1: resolution: {integrity: sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==} dependencies: rollup-plugin-inject: 3.0.2 dev: true - /rollup-plugin-polyfill-node/0.10.1: + /rollup-plugin-polyfill-node@0.10.1(rollup@2.79.1): resolution: {integrity: sha512-PT9OfHuOya8juO0YJZE0JDyeZGXjY0SOhFGvvldzR6JwwzCVoJFMWK44pEuzdoDoOodEYD9ltwLVJ+3JnrPpRQ==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/plugin-inject': 4.0.4 + '@rollup/plugin-inject': 4.0.4(rollup@2.79.1) + rollup: 2.79.1 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.79.1: + /rollup-plugin-terser@7.0.2(rollup@2.79.1): resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 dependencies: @@ -18419,7 +18644,7 @@ packages: terser: 5.14.1 dev: true - /rollup-plugin-ts/2.0.7_okefoyb4o5sittgqayreuhurei: + /rollup-plugin-ts@2.0.7(rollup@2.75.7)(typescript@4.7.4): resolution: {integrity: sha512-M9sppRKX6y/b2KXbGdUdHid0tshAEK/sEeYLBHBJiBa4swukSsoFVXKGGZasLcjaXhgUnnizFuvFFj6znxwvSA==} engines: {node: '>=10.0.0', npm: '>=7.0.0', pnpm: '>=3.2.0', yarn: '>=1.13'} peerDependencies: @@ -18450,92 +18675,92 @@ packages: browserslist: 4.21.1 browserslist-generator: 1.0.66 chalk: 4.1.2 - compatfactory: 0.0.13_typescript@4.7.4 + compatfactory: 0.0.13(typescript@4.7.4) crosspath: 1.0.0 magic-string: 0.26.2 rollup: 2.75.7 - ts-clone-node: 0.3.32_typescript@4.7.4 + ts-clone-node: 0.3.32(typescript@4.7.4) tslib: 2.4.0 typescript: 4.7.4 dev: true - /rollup-pluginutils/2.8.2: + /rollup-pluginutils@2.8.2: resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} dependencies: estree-walker: 0.6.1 dev: true - /rollup/2.75.7: + /rollup@2.75.7: resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 - /rollup/2.78.1: + /rollup@2.78.1: resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 - /rollup/2.79.1: + /rollup@2.79.1: resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 - /run-async/2.4.1: + /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} dev: true - /run-parallel/1.2.0: + /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 - /rxjs/6.6.7: + /rxjs@6.6.7: resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} engines: {npm: '>=2.0.0'} dependencies: tslib: 1.14.1 dev: true - /rxjs/7.5.5: + /rxjs@7.5.5: resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} dependencies: tslib: 2.4.1 dev: false - /rxjs/7.6.0: + /rxjs@7.6.0: resolution: {integrity: sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==} dependencies: tslib: 2.4.1 - /rxjs/7.8.0: + /rxjs@7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: tslib: 2.5.0 - /sade/1.8.1: + /sade@1.8.1: resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} engines: {node: '>=6'} dependencies: mri: 1.2.0 dev: true - /safe-buffer/5.1.2: + /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} - /safe-buffer/5.2.1: + /safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - /safer-buffer/2.1.2: + /safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - /sass/1.53.0: + /sass@1.53.0: resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==} engines: {node: '>=12.0.0'} hasBin: true @@ -18544,7 +18769,7 @@ packages: immutable: 4.1.0 source-map-js: 1.0.2 - /sass/1.58.0: + /sass@1.58.0: resolution: {integrity: sha512-PiMJcP33DdKtZ/1jSjjqVIKihoDc6yWmYr9K/4r3fVVIEDAluD0q7XZiRKrNJcPK3qkLRF/79DND1H5q1LBjgg==} engines: {node: '>=12.0.0'} hasBin: true @@ -18554,38 +18779,37 @@ packages: source-map-js: 1.0.2 dev: true - /sax/1.2.4: + /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} dev: false - /saxes/5.0.1: + /saxes@5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} engines: {node: '>=10'} dependencies: xmlchars: 2.2.0 dev: true - /saxes/6.0.0: + /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 dev: true - /schema-utils/3.1.1: + /schema-utils@3.1.1: resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} engines: {node: '>= 10.13.0'} dependencies: '@types/json-schema': 7.0.9 ajv: 6.12.6 - ajv-keywords: 3.5.2_ajv@6.12.6 - dev: true + ajv-keywords: 3.5.2(ajv@6.12.6) - /scuid/1.1.0: + /scuid@1.1.0: resolution: {integrity: sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==} dev: true - /section-matter/1.0.0: + /section-matter@1.0.0: resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} engines: {node: '>=4'} dependencies: @@ -18593,17 +18817,17 @@ packages: kind-of: 6.0.3 dev: true - /secure-compare/3.0.1: + /secure-compare@3.0.1: resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} dev: true - /selderee/0.10.0: + /selderee@0.10.0: resolution: {integrity: sha512-DEL/RW/f4qLw/NrVg97xKaEBC8IpzIG2fvxnzCp3Z4yk4jQ3MXom+Imav9wApjxX2dfS3eW7x0DXafJr85i39A==} dependencies: parseley: 0.11.0 dev: false - /selenium-webdriver/4.1.2: + /selenium-webdriver@4.1.2: resolution: {integrity: sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==} engines: {node: '>= 10.15.0'} dependencies: @@ -18615,34 +18839,34 @@ packages: - utf-8-validate dev: false - /semver/5.7.1: + /semver@5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true - /semver/6.3.0: + /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true - /semver/7.0.0: + /semver@7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} hasBin: true dev: true - /semver/7.3.7: + /semver@7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 - /semver/7.3.8: + /semver@7.3.8: resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 - /send/0.18.0: + /send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} dependencies: @@ -18662,26 +18886,25 @@ packages: transitivePeerDependencies: - supports-color - /sentence-case/3.0.4: + /sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} dependencies: no-case: 3.0.4 tslib: 2.5.0 upper-case-first: 2.0.2 - /serialize-javascript/4.0.0: + /serialize-javascript@4.0.0: resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} dependencies: randombytes: 2.1.0 dev: true - /serialize-javascript/6.0.0: + /serialize-javascript@6.0.0: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 - dev: true - /serve-static/1.15.0: + /serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} dependencies: @@ -18692,16 +18915,16 @@ packages: transitivePeerDependencies: - supports-color - /set-blocking/2.0.0: + /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - /setimmediate/1.0.5: + /setimmediate@1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - /setprototypeof/1.2.0: + /setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - /sha.js/2.4.11: + /sha.js@2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} hasBin: true dependencies: @@ -18709,32 +18932,32 @@ packages: safe-buffer: 5.2.1 dev: false - /shebang-command/1.2.0: + /shebang-command@1.2.0: resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 dev: true - /shebang-command/2.0.0: + /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 - /shebang-regex/1.0.0: + /shebang-regex@1.0.0: resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} engines: {node: '>=0.10.0'} dev: true - /shebang-regex/3.0.0: + /shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - /shell-quote/1.7.3: + /shell-quote@1.7.3: resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} - /shelljs/0.8.5: + /shelljs@0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} engines: {node: '>=4'} hasBin: true @@ -18744,33 +18967,33 @@ packages: rechoir: 0.6.2 dev: true - /shiki-es/0.1.2: + /shiki-es@0.1.2: resolution: {integrity: sha512-eqtfk8idlYlSLAn0gp0Ly2+FbKc2d78IddigHSS4iHAnpXoY2kdRzyFGZOdi6TvemYMnRhZBi1HsSqZc5eNKqg==} dev: true - /side-channel/1.0.4: + /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.2 object-inspect: 1.12.2 - /siginfo/2.0.0: + /siginfo@2.0.0: resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} dev: true - /sigmund/1.0.1: + /sigmund@1.0.1: resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==} dev: false - /signal-exit/3.0.7: + /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - /signedsource/1.0.0: + /signedsource@1.0.0: resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} dev: true - /sirv/2.0.2: + /sirv@2.0.2: resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} engines: {node: '>= 10'} dependencies: @@ -18779,20 +19002,20 @@ packages: totalist: 3.0.0 dev: true - /sisteransi/1.0.5: + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} dev: true - /slash/3.0.0: + /slash@3.0.0: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - /slash/4.0.0: + /slash@4.0.0: resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} engines: {node: '>=12'} dev: true - /slice-ansi/3.0.0: + /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} dependencies: @@ -18800,7 +19023,7 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi/4.0.0: + /slice-ansi@4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} dependencies: @@ -18808,29 +19031,29 @@ packages: astral-regex: 2.0.0 is-fullwidth-code-point: 3.0.0 - /slice-ansi/5.0.0: + /slice-ansi@5.0.0: resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} engines: {node: '>=12'} dependencies: ansi-styles: 6.1.0 is-fullwidth-code-point: 4.0.0 - /slick/1.12.2: + /slick@1.12.2: resolution: {integrity: sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==} dev: false - /smart-buffer/4.2.0: + /smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} dev: false - /snake-case/3.0.4: + /snake-case@3.0.4: resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} dependencies: dot-case: 3.0.4 tslib: 2.5.0 - /socket.io-client/2.5.0: + /socket.io-client@2.5.0: resolution: {integrity: sha512-lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw==} dependencies: backo2: 1.0.2 @@ -18850,14 +19073,14 @@ packages: - utf-8-validate dev: false - /socket.io-client/3.1.3: + /socket.io-client@3.1.3: resolution: {integrity: sha512-4sIGOGOmCg3AOgGi7EEr6ZkTZRkrXwub70bBB/F0JSkMOUFpA77WsL87o34DffQQ31PkbMUIadGOk+3tx1KGbw==} engines: {node: '>=10.0.0'} dependencies: '@types/component-emitter': 1.2.11 backo2: 1.0.2 component-emitter: 1.3.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) engine.io-client: 4.1.4 parseuri: 0.0.6 socket.io-parser: 4.0.5 @@ -18867,12 +19090,12 @@ packages: - utf-8-validate dev: false - /socket.io-client/4.5.1: + /socket.io-client@4.5.1: resolution: {integrity: sha512-e6nLVgiRYatS+AHXnOnGi4ocOpubvOUCGhyWw8v+/FxW8saHkinG6Dfhi9TU0Kt/8mwJIAASxvw6eujQmjdZVA==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) engine.io-client: 6.2.2 socket.io-parser: 4.2.1 transitivePeerDependencies: @@ -18881,7 +19104,7 @@ packages: - utf-8-validate dev: false - /socket.io-parser/3.3.2: + /socket.io-parser@3.3.2: resolution: {integrity: sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg==} dependencies: component-emitter: 1.3.0 @@ -18891,43 +19114,43 @@ packages: - supports-color dev: false - /socket.io-parser/4.0.5: + /socket.io-parser@4.0.5: resolution: {integrity: sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==} engines: {node: '>=10.0.0'} dependencies: '@types/component-emitter': 1.2.11 component-emitter: 1.3.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color dev: false - /socket.io-parser/4.2.1: + /socket.io-parser@4.2.1: resolution: {integrity: sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) transitivePeerDependencies: - supports-color dev: false - /socketio-wildcard/2.0.0: + /socketio-wildcard@2.0.0: resolution: {integrity: sha512-Bf3ioZq15Z2yhFLDasRvbYitg82rwm+5AuER5kQvEQHhNFf4R4K5o/h57nEpN7A59T9FyRtTj34HZfMWAruw/A==} dev: false - /socks-proxy-agent/5.0.1: + /socks-proxy-agent@5.0.1: resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==} engines: {node: '>= 6'} dependencies: agent-base: 6.0.2 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) socks: 2.7.1 transitivePeerDependencies: - supports-color dev: false - /socks/2.7.1: + /socks@2.7.1: resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: @@ -18935,150 +19158,150 @@ packages: smart-buffer: 4.2.0 dev: false - /sortablejs/1.14.0: + /sortablejs@1.14.0: resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==} dev: false - /source-map-js/1.0.2: + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} - /source-map-support/0.5.13: + /source-map-support@0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 dev: true - /source-map-support/0.5.21: + /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: buffer-from: 1.1.2 source-map: 0.6.1 - /source-map/0.6.1: + /source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} - /source-map/0.7.4: + /source-map@0.7.4: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} dev: true - /source-map/0.8.0-beta.0: + /source-map@0.8.0-beta.0: resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} engines: {node: '>= 8'} dependencies: whatwg-url: 7.1.0 - /sourcemap-codec/1.4.8: + /sourcemap-codec@1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} deprecated: Please use @jridgewell/sourcemap-codec instead - /spdx-correct/3.1.1: + /spdx-correct@3.1.1: resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.11 dev: true - /spdx-exceptions/2.3.0: + /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} dev: true - /spdx-expression-parse/3.0.1: + /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.11 dev: true - /spdx-license-ids/3.0.11: + /spdx-license-ids@3.0.11: resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} dev: true - /specificity/0.4.1: + /specificity@0.4.1: resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==} hasBin: true dev: false - /split/0.3.3: - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} - dependencies: - through: 2.3.8 - dev: false - - /split2/3.2.2: + /split2@3.2.2: resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} dependencies: readable-stream: 3.6.0 dev: true - /splitpanes/3.1.1: + /split@0.3.3: + resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} + dependencies: + through: 2.3.8 + dev: false + + /splitpanes@3.1.1: resolution: {integrity: sha512-VUkxDJfIGSvTM/fm/+OSrx8ha9URwE/9B8FPvfzoBuAxVELIHBWpsfnJXIXv77zVwuex//QQL4kTU9SDBPeHjA==} dev: false - /sponge-case/1.0.1: + /sponge-case@1.0.1: resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} dependencies: tslib: 2.5.0 dev: true - /sprintf-js/1.0.3: + /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - /stack-utils/2.0.5: + /stack-utils@2.0.5: resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 dev: true - /stackback/0.0.2: + /stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} dev: true - /standard-as-callback/2.1.0: + /standard-as-callback@2.1.0: resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} dev: false - /statuses/1.5.0: + /statuses@1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} - /statuses/2.0.1: + /statuses@2.0.1: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} - /std-env/3.3.2: + /std-env@3.3.2: resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==} dev: true - /stream-browserify/3.0.0: + /stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} dependencies: inherits: 2.0.4 readable-stream: 3.6.0 dev: false - /stream-combiner/0.0.4: + /stream-combiner@0.0.4: resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} dependencies: duplexer: 0.1.2 dev: false - /streamsearch/1.1.0: + /streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} - /string-argv/0.3.1: + /string-argv@0.3.1: resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} engines: {node: '>=0.6.19'} - /string-env-interpolation/1.0.1: + /string-env-interpolation@1.0.1: resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} - /string-length/4.0.2: + /string-length@4.0.2: resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} engines: {node: '>=10'} dependencies: @@ -19086,7 +19309,7 @@ packages: strip-ansi: 6.0.1 dev: true - /string-width/4.2.3: + /string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} dependencies: @@ -19094,7 +19317,7 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - /string-width/5.1.2: + /string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} dependencies: @@ -19102,7 +19325,7 @@ packages: emoji-regex: 9.2.2 strip-ansi: 7.0.1 - /string.prototype.matchall/4.0.7: + /string.prototype.matchall@4.0.7: resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==} dependencies: call-bind: 1.0.2 @@ -19115,7 +19338,7 @@ packages: side-channel: 1.0.4 dev: true - /string.prototype.padend/3.1.3: + /string.prototype.padend@3.1.3: resolution: {integrity: sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==} engines: {node: '>= 0.4'} dependencies: @@ -19124,30 +19347,30 @@ packages: es-abstract: 1.20.1 dev: true - /string.prototype.trimend/1.0.5: + /string.prototype.trimend@1.0.5: resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - /string.prototype.trimstart/1.0.5: + /string.prototype.trimstart@1.0.5: resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 es-abstract: 1.20.1 - /string_decoder/0.10.31: + /string_decoder@0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} dev: false - /string_decoder/1.1.1: + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: safe-buffer: 5.1.2 - /stringify-object/3.3.0: + /stringify-object@3.3.0: resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} engines: {node: '>=4'} dependencies: @@ -19155,71 +19378,71 @@ packages: is-obj: 1.0.1 is-regexp: 1.0.0 - /strip-ansi/3.0.1: + /strip-ansi@3.0.1: resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: false - /strip-ansi/6.0.1: + /strip-ansi@6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 - /strip-ansi/7.0.1: + /strip-ansi@7.0.1: resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - /strip-bom-string/1.0.0: + /strip-bom-string@1.0.0: resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} engines: {node: '>=0.10.0'} dev: true - /strip-bom/3.0.0: + /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} - /strip-bom/4.0.0: + /strip-bom@4.0.0: resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} engines: {node: '>=8'} dev: true - /strip-comments/2.0.1: + /strip-comments@2.0.1: resolution: {integrity: sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==} engines: {node: '>=10'} dev: true - /strip-final-newline/2.0.0: + /strip-final-newline@2.0.0: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} - /strip-indent/3.0.0: + /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} dependencies: min-indent: 1.0.1 dev: true - /strip-json-comments/2.0.1: + /strip-json-comments@2.0.1: resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} engines: {node: '>=0.10.0'} dev: false - /strip-json-comments/3.1.1: + /strip-json-comments@3.1.1: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - /strip-literal/1.0.1: + /strip-literal@1.0.1: resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} dependencies: acorn: 8.8.2 dev: true - /style-data/2.0.1: + /style-data@2.0.1: resolution: {integrity: sha512-frUbteLGDoNEJhbMIWtyNE1VRduZXmZozhct4F+qN++OzIQZNZJ8KToZlDEl3eaedRYlDfKvUoMFMyrZj4x/sg==} dependencies: cheerio: 1.0.0-rc.12 @@ -19227,10 +19450,10 @@ packages: pick-util: 1.1.5 dev: false - /style-mod/4.0.0: + /style-mod@4.0.0: resolution: {integrity: sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==} - /subscriptions-transport-ws/0.11.0_graphql@15.8.0: + /subscriptions-transport-ws@0.11.0(graphql@15.8.0): resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md peerDependencies: @@ -19247,7 +19470,7 @@ packages: - utf-8-validate dev: false - /sucrase/3.23.0: + /sucrase@3.23.0: resolution: {integrity: sha512-xgC1xboStzGhCnRywlBf/DLmkC+SkdAKqrNCDsxGrzM0phR5oUxoFKiQNrsc2D8wDdAm03iLbSZqjHDddo3IzQ==} engines: {node: '>=8'} hasBin: true @@ -19259,26 +19482,26 @@ packages: pirates: 4.0.5 ts-interface-checker: 0.1.13 - /superagent-proxy/3.0.0_superagent@8.0.9: + /superagent-proxy@3.0.0(superagent@8.0.9): resolution: {integrity: sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==} engines: {node: '>=6'} peerDependencies: superagent: '>= 0.15.4 || 1 || 2 || 3' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) proxy-agent: 5.0.0 superagent: 8.0.9 transitivePeerDependencies: - supports-color dev: false - /superagent/8.0.5: + /superagent@8.0.5: resolution: {integrity: sha512-lQVE0Praz7nHiSaJLKBM/cZyi7J0E4io8tWnGSBdBrqAzhzrjQ/F5iGP9Zr29CJC8N5zYdhG2kKaNcB6dKxp7g==} engines: {node: '>=6.4.0 <13 || >=14'} dependencies: component-emitter: 1.3.0 cookiejar: 2.1.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 2.1.1 @@ -19290,13 +19513,13 @@ packages: - supports-color dev: true - /superagent/8.0.9: + /superagent@8.0.9: resolution: {integrity: sha512-4C7Bh5pyHTvU33KpZgwrNKh/VQnvgtCSqPRfJAUdmrtSYePVzVg4E4OzsrbkhJj9O7SO6Bnv75K/F8XVZT8YHA==} engines: {node: '>=6.4.0 <13 || >=14'} dependencies: component-emitter: 1.3.0 cookiejar: 2.1.4 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 2.1.2 @@ -19308,7 +19531,7 @@ packages: - supports-color dev: false - /supertest/6.3.2: + /supertest@6.3.2: resolution: {integrity: sha512-mSmbW/sPpBU6K8w8189ZiHdc62zMe7dCHpC2ktS9tc0/d2DN0FaxNbDJJNFknZD4jCrGJpxkiFoVyemvKgOdwA==} engines: {node: '>=6.4.0'} dependencies: @@ -19318,36 +19541,34 @@ packages: - supports-color dev: true - /supports-color/2.0.0: + /supports-color@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} engines: {node: '>=0.8.0'} dev: false - /supports-color/5.5.0: + /supports-color@5.5.0: resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} engines: {node: '>=4'} dependencies: has-flag: 3.0.0 - /supports-color/7.2.0: + /supports-color@7.2.0: resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} engines: {node: '>=8'} dependencies: has-flag: 4.0.0 - /supports-color/8.1.1: + /supports-color@8.1.1: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} dependencies: has-flag: 4.0.0 - dev: true - /supports-color/9.2.2: + /supports-color@9.2.2: resolution: {integrity: sha512-XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA==} engines: {node: '>=12'} - dev: false - /supports-hyperlinks/2.2.0: + /supports-hyperlinks@2.2.0: resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==} engines: {node: '>=8'} dependencies: @@ -19355,15 +19576,15 @@ packages: supports-color: 7.2.0 dev: true - /supports-preserve-symlinks-flag/1.0.0: + /supports-preserve-symlinks-flag@1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /swagger-methods/2.0.2: + /swagger-methods@2.0.2: resolution: {integrity: sha512-/RNqvBZkH8+3S/FqBPejHxJxZenaYq3MrpeXnzi06aDIS39Mqf5YCUNb/ZBjsvFFt8h9FxfKs8EXPtcYdfLiRg==} dev: false - /swagger-parser/8.0.3: + /swagger-parser@8.0.3: resolution: {integrity: sha512-y2gw+rTjn7Z9J+J1qwbBm0UL93k/VREDCveKBK6iGjf7KXC6QGshbnpEmeHL0ZkCgmIghsXzpNzPSbBH91BAEQ==} dependencies: call-me-maybe: 1.0.1 @@ -19375,27 +19596,27 @@ packages: z-schema: 4.2.4 dev: false - /swap-case/2.0.2: + /swap-case@2.0.2: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} dependencies: tslib: 2.5.0 dev: true - /symbol-observable/1.2.0: + /symbol-observable@1.2.0: resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} engines: {node: '>=0.10.0'} dev: false - /symbol-observable/4.0.0: + /symbol-observable@4.0.0: resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==} engines: {node: '>=0.10'} dev: true - /symbol-tree/3.2.4: + /symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /sync-fetch/0.4.1: + /sync-fetch@0.4.1: resolution: {integrity: sha512-JDtyFEvnKUzt1CxRtzzsGgkBanEv8XRmLyJo0F0nGkpCR8EjYmpOJJXz8GA/SWtlPU0nAYh0+CNMNnFworGyOA==} engines: {node: '>=14'} dependencies: @@ -19404,20 +19625,19 @@ packages: transitivePeerDependencies: - encoding - /systemjs/6.13.0: + /systemjs@6.13.0: resolution: {integrity: sha512-P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g==} - /tapable/0.2.9: + /tapable@0.2.9: resolution: {integrity: sha512-2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==} engines: {node: '>=0.6'} dev: false - /tapable/2.2.1: + /tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - dev: true - /tar/6.1.13: + /tar@6.1.13: resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==} engines: {node: '>=10'} dependencies: @@ -19428,12 +19648,12 @@ packages: mkdirp: 1.0.4 yallist: 4.0.0 - /temp-dir/2.0.0: + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} dev: true - /tempy/0.6.0: + /tempy@0.6.0: resolution: {integrity: sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==} engines: {node: '>=10'} dependencies: @@ -19443,7 +19663,7 @@ packages: unique-string: 2.0.0 dev: true - /terminal-link/2.1.1: + /terminal-link@2.1.1: resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} engines: {node: '>=8'} dependencies: @@ -19451,7 +19671,7 @@ packages: supports-hyperlinks: 2.2.0 dev: true - /tern/0.24.3: + /tern@0.24.3: resolution: {integrity: sha512-Z8uvtdWIlFn1GWy0HW5FhZ8VDryZwoJUdnjZU25C7/PBOltLIn1uv+WF3rVq6S1761YbsmbZYRP/l0ZJBCkvrw==} hasBin: true dependencies: @@ -19464,7 +19684,7 @@ packages: resolve-from: 2.0.0 dev: false - /terser-webpack-plugin/5.3.6_webpack@5.74.0: + /terser-webpack-plugin@5.3.6(esbuild@0.15.15)(webpack@5.74.0): resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -19481,14 +19701,14 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.14 + esbuild: 0.15.15 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 terser: 5.14.1 - webpack: 5.74.0 - dev: true + webpack: 5.74.0(esbuild@0.15.15) - /terser/5.14.1: + /terser@5.14.1: resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==} engines: {node: '>=10'} hasBin: true @@ -19497,9 +19717,8 @@ packages: acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 - dev: true - /test-exclude/6.0.0: + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} dependencies: @@ -19508,132 +19727,132 @@ packages: minimatch: 3.1.2 dev: true - /text-extensions/1.9.0: + /text-extensions@1.9.0: resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} engines: {node: '>=0.10'} dev: true - /text-table/0.2.0: + /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - /thenify-all/1.6.0: + /thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} dependencies: thenify: 3.3.1 - /thenify/3.3.1: + /thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} dependencies: any-promise: 1.3.0 - /throat/6.0.1: + /throat@6.0.1: resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} dev: true - /through/2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - - /through2/4.0.2: + /through2@4.0.2: resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} dependencies: readable-stream: 3.6.0 dev: true - /timers/0.1.1: + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + /timers@0.1.1: resolution: {integrity: sha512-pkJC8uIP/gxDHxNQUBUbjHyl6oZfT+ofn7tbaHW+CFIUjI+Q2MBbHcx1JSBQfhDaTcO9bNg328q0i7Vk5PismQ==} dev: false - /tiny-invariant/1.2.0: + /tiny-invariant@1.2.0: resolution: {integrity: sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==} dev: true - /tinybench/2.4.0: + /tinybench@2.4.0: resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==} dev: true - /tinypool/0.1.3: + /tinypool@0.1.3: resolution: {integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ==} engines: {node: '>=14.0.0'} dev: true - /tinypool/0.4.0: + /tinypool@0.4.0: resolution: {integrity: sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==} engines: {node: '>=14.0.0'} dev: true - /tinyspy/1.1.1: + /tinyspy@1.1.1: resolution: {integrity: sha512-UVq5AXt/gQlti7oxoIg5oi/9r0WpF7DGEVwXgqWSMmyN16+e3tl5lIvTaOpJ3TAtu5xFzWccFRM4R5NaWHF+4g==} engines: {node: '>=14.0.0'} dev: true - /tippy.js/6.3.7: + /tippy.js@6.3.7: resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} dependencies: '@popperjs/core': 2.11.5 dev: false - /title-case/3.0.3: + /title-case@3.0.3: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} dependencies: tslib: 2.5.0 dev: true - /tlds/1.236.0: + /tlds@1.236.0: resolution: {integrity: sha512-oP2PZ3KeGlgpHgsEfrtva3/K9kzsJUNliQSbCfrJ7JMCWFoCdtG+9YMq/g2AnADQ1v5tVlbtvKJZ4KLpy/P6MA==} hasBin: true dev: false - /tmp/0.0.33: + /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} dependencies: os-tmpdir: 1.0.2 dev: true - /tmp/0.2.1: + /tmp@0.2.1: resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} engines: {node: '>=8.17.0'} dependencies: rimraf: 3.0.2 dev: false - /tmpl/1.0.5: + /tmpl@1.0.5: resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} dev: true - /to-array/0.1.4: + /to-array@0.1.4: resolution: {integrity: sha1-F+bBH3PdTz10zaek/zI46a2b+JA=} dev: false - /to-fast-properties/2.0.0: + /to-fast-properties@2.0.0: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} - /to-regex-range/5.0.1: + /to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 - /toidentifier/1.0.0: + /toidentifier@1.0.0: resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} engines: {node: '>=0.6'} dev: false - /toidentifier/1.0.1: + /toidentifier@1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} - /token-stream/1.0.0: + /token-stream@1.0.0: resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} - /totalist/3.0.0: + /totalist@3.0.0: resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} engines: {node: '>=6'} dev: true - /tough-cookie/4.0.0: + /tough-cookie@4.0.0: resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==} engines: {node: '>=6'} dependencies: @@ -19642,7 +19861,7 @@ packages: universalify: 0.1.2 dev: true - /tough-cookie/4.1.2: + /tough-cookie@4.1.2: resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} engines: {node: '>=6'} dependencies: @@ -19652,48 +19871,48 @@ packages: url-parse: 1.5.10 dev: true - /tr46/0.0.3: + /tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - /tr46/1.0.1: + /tr46@1.0.1: resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} dependencies: punycode: 2.1.1 - /tr46/2.1.0: + /tr46@2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} engines: {node: '>=8'} dependencies: punycode: 2.1.1 dev: true - /tr46/3.0.0: + /tr46@3.0.0: resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} engines: {node: '>=12'} dependencies: punycode: 2.1.1 dev: true - /tree-kill/1.2.2: + /tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true - /trim-newlines/3.0.1: + /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} dev: true - /ts-clone-node/0.3.32_typescript@4.7.4: + /ts-clone-node@0.3.32(typescript@4.7.4): resolution: {integrity: sha512-YYGvoWy2Ba98/YC/0leD7IRsU/q5pu/KRg9dD8omzkbgoZ8g7gfYfED9mWMTyNp7J3CQiiKyvM62B7mXXHKU7Q==} engines: {node: '>=10.0.0'} peerDependencies: typescript: ^3.x || ^4.x dependencies: - compatfactory: 0.0.13_typescript@4.7.4 + compatfactory: 0.0.13(typescript@4.7.4) typescript: 4.7.4 dev: true - /ts-essentials/7.0.3_typescript@4.9.3: + /ts-essentials@7.0.3(typescript@4.9.3): resolution: {integrity: sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==} peerDependencies: typescript: '>=3.7.0' @@ -19701,10 +19920,10 @@ packages: typescript: 4.9.3 dev: true - /ts-interface-checker/0.1.13: + /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest/27.1.5_mqaoisgizytgigbr3gbjwvnjie: + /ts-jest@27.1.5(@babel/core@7.18.6)(@types/jest@27.5.2)(esbuild@0.14.48)(jest@27.5.1)(typescript@4.7.4): resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -19725,8 +19944,10 @@ packages: esbuild: optional: true dependencies: + '@babel/core': 7.18.6 '@types/jest': 27.5.2 bs-logger: 0.2.6 + esbuild: 0.14.48 fast-json-stable-stringify: 2.1.0 jest: 27.5.1 jest-util: 27.5.1 @@ -19738,7 +19959,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-jest/29.0.5_rnja4qcakvykemesq3rilwl7p4: + /ts-jest@29.0.5(@babel/core@7.18.6)(jest@29.4.1)(typescript@4.9.3): resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -19759,9 +19980,10 @@ packages: esbuild: optional: true dependencies: + '@babel/core': 7.18.6 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.4.1_j5wyyouvf5aixckc7ltaxrydha + jest: 29.4.1(@types/node@18.11.10)(ts-node@10.9.1) jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -19771,7 +19993,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-loader/9.4.2_typescript@4.9.3: + /ts-loader@9.4.2(typescript@4.9.3)(webpack@5.74.0): resolution: {integrity: sha512-OmlC4WVmFv5I0PpaxYb+qGeGOdm5giHU7HwDDUjw59emP2UYMHy9fFSDcYgSNoH8sXcj4hGCSEhlDZ9ULeDraA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -19783,20 +20005,21 @@ packages: micromatch: 4.0.5 semver: 7.3.8 typescript: 4.9.3 + webpack: 5.74.0(esbuild@0.15.15) dev: true - /ts-log/2.2.4: + /ts-log@2.2.4: resolution: {integrity: sha512-DEQrfv6l7IvN2jlzc/VTdZJYsWUnQNCsueYjMkC/iXoEoi5fNan6MjeDqkvhfzbmHgdz9UxDUluX3V5HdjTydQ==} dev: true - /ts-morph/17.0.1: + /ts-morph@17.0.1: resolution: {integrity: sha512-10PkHyXmrtsTvZSL+cqtJLTgFXkU43Gd0JCc0Rw6GchWbqKe0Rwgt1v3ouobTZwQzF1mGhDeAlWYBMGRV7y+3g==} dependencies: '@ts-morph/common': 0.18.1 code-block-writer: 11.0.3 dev: true - /ts-node-dev/2.0.0_typescript@4.9.3: + /ts-node-dev@2.0.0(@types/node@18.11.10)(typescript@4.9.3): resolution: {integrity: sha512-ywMrhCfH6M75yftYvrvNarLEY+SUXtUvU8/0Z6llrHQVBx12GiFk5sStF8UdfE/yfzk9IAq7O5EEbTQsxlBI8w==} engines: {node: '>=0.8.0'} hasBin: true @@ -19815,7 +20038,7 @@ packages: rimraf: 2.7.1 source-map-support: 0.5.21 tree-kill: 1.2.2 - ts-node: 10.9.1_typescript@4.9.3 + ts-node: 10.9.1(@types/node@18.11.10)(typescript@4.9.3) tsconfig: 7.0.0 typescript: 4.9.3 transitivePeerDependencies: @@ -19824,7 +20047,7 @@ packages: - '@types/node' dev: false - /ts-node/10.8.2_7cep2inysldxstbcrxlp3njwym: + /ts-node@10.8.2(@types/node@17.0.45)(typescript@4.9.3): resolution: {integrity: sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA==} hasBin: true peerDependencies: @@ -19855,7 +20078,7 @@ packages: yn: 3.1.1 dev: true - /ts-node/10.9.1_eoe7put6ewfbqpy6gs36tihw6y: + /ts-node@10.9.1(@types/node@18.11.10)(typescript@4.9.3): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -19884,38 +20107,8 @@ packages: typescript: 4.9.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true - /ts-node/10.9.1_typescript@4.9.3: - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} - hasBin: true - 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 - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.3 - acorn: 8.8.2 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.9.3 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - - /ts-node/9.1.1_typescript@4.7.4: + /ts-node@9.1.1(typescript@4.7.4): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -19930,7 +20123,7 @@ packages: typescript: 4.7.4 yn: 3.1.1 - /ts-node/9.1.1_typescript@4.9.3: + /ts-node@9.1.1(typescript@4.9.3): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -19946,7 +20139,7 @@ packages: yn: 3.1.1 dev: true - /tsconfig-paths-webpack-plugin/4.0.0: + /tsconfig-paths-webpack-plugin@4.0.0: resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} engines: {node: '>=10.13.0'} dependencies: @@ -19955,7 +20148,7 @@ packages: tsconfig-paths: 4.1.1 dev: true - /tsconfig-paths/4.1.0: + /tsconfig-paths@4.1.0: resolution: {integrity: sha512-AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow==} engines: {node: '>=6'} dependencies: @@ -19964,7 +20157,7 @@ packages: strip-bom: 3.0.0 dev: true - /tsconfig-paths/4.1.1: + /tsconfig-paths@4.1.1: resolution: {integrity: sha512-VgPrtLKpRgEAJsMj5Q/I/mXouC6A/7eJ/X4Nuk6o0cRPwBtznYxTCU4FodbexbzH9somBPEXYi0ZkUViUpJ21Q==} engines: {node: '>=6'} dependencies: @@ -19973,7 +20166,7 @@ packages: strip-bom: 3.0.0 dev: true - /tsconfig/7.0.0: + /tsconfig@7.0.0: resolution: {integrity: sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==} dependencies: '@types/strip-bom': 3.0.0 @@ -19982,19 +20175,19 @@ packages: strip-json-comments: 2.0.1 dev: false - /tslib/1.14.1: + /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib/2.4.0: + /tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tslib/2.4.1: + /tslib@2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - /tslib/2.5.0: + /tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tsup/5.12.9_liswqajbmjp6gyfdb6pun2kq5i: + /tsup@5.12.9(@swc/core@1.2.213)(typescript@4.7.4): resolution: {integrity: sha512-dUpuouWZYe40lLufo64qEhDpIDsWhRbr2expv5dHEMjwqeKJS2aXA/FPqs1dxO4T6mBojo7rvo3jP9NNzaKyDg==} hasBin: true peerDependencies: @@ -20010,10 +20203,10 @@ packages: optional: true dependencies: '@swc/core': 1.2.213 - bundle-require: 3.0.4_esbuild@0.14.48 + bundle-require: 3.0.4(esbuild@0.14.48) cac: 6.7.12 chokidar: 3.5.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) esbuild: 0.14.48 execa: 5.1.1 globby: 11.1.0 @@ -20028,44 +20221,8 @@ packages: transitivePeerDependencies: - supports-color - ts-node - dev: true - /tsup/5.12.9_typescript@4.7.4: - resolution: {integrity: sha512-dUpuouWZYe40lLufo64qEhDpIDsWhRbr2expv5dHEMjwqeKJS2aXA/FPqs1dxO4T6mBojo7rvo3jP9NNzaKyDg==} - hasBin: true - peerDependencies: - '@swc/core': ^1 - postcss: ^8.4.12 - typescript: ^4.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - postcss: - optional: true - typescript: - optional: true - dependencies: - bundle-require: 3.0.4_esbuild@0.14.48 - cac: 6.7.12 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.14.48 - execa: 5.1.1 - globby: 11.1.0 - joycon: 3.1.1 - postcss-load-config: 3.1.4 - resolve-from: 5.0.0 - rollup: 2.75.7 - source-map: 0.8.0-beta.0 - sucrase: 3.23.0 - tree-kill: 1.2.2 - typescript: 4.7.4 - transitivePeerDependencies: - - supports-color - - ts-node - dev: false - - /tsutils/3.21.0_typescript@4.7.4: + /tsutils@3.21.0(typescript@4.7.4): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: @@ -20075,7 +20232,7 @@ packages: typescript: 4.7.4 dev: true - /tsutils/3.21.0_typescript@4.9.3: + /tsutils@3.21.0(typescript@4.9.3): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: @@ -20085,124 +20242,124 @@ packages: typescript: 4.9.3 dev: true - /type-check/0.3.2: + /type-check@0.3.2: resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 - /type-check/0.4.0: + /type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 - /type-detect/4.0.8: + /type-detect@4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} dev: true - /type-fest/0.16.0: + /type-fest@0.16.0: resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==} engines: {node: '>=10'} dev: true - /type-fest/0.18.1: + /type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} engines: {node: '>=10'} dev: true - /type-fest/0.20.2: + /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} - /type-fest/0.21.3: + /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - /type-fest/0.6.0: + /type-fest@0.6.0: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} dev: true - /type-fest/0.8.1: + /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} dev: true - /type-is/1.6.18: + /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} dependencies: media-typer: 0.3.0 mime-types: 2.1.35 - /typedarray-to-buffer/3.1.5: + /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: is-typedarray: 1.0.0 dev: true - /typedarray/0.0.6: + /typedarray@0.0.6: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typescript/4.7.4: + /typescript@4.7.4: resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} hasBin: true - /typescript/4.8.4: + /typescript@4.8.4: resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/4.9.3: + /typescript@4.9.3: resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} engines: {node: '>=4.2.0'} hasBin: true - /ua-parser-js/0.7.31: + /ua-parser-js@0.7.31: resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==} dev: true - /ua-parser-js/1.0.2: + /ua-parser-js@1.0.2: resolution: {integrity: sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==} dev: true - /uc.micro/1.0.6: + /uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} - /ufo/0.8.5: + /ufo@0.8.5: resolution: {integrity: sha512-e4+UtA5IRO+ha6hYklwj6r7BjiGMxS0O+UaSg9HbaTefg4kMkzj4tXzEBajRR+wkxf+golgAWKzLbytCUDMJAA==} dev: true - /ufo/1.0.1: + /ufo@1.0.1: resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==} dev: true - /ufo/1.1.1: + /ufo@1.1.1: resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} dev: true - /uglify-js/3.17.4: + /uglify-js@3.17.4: resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true dev: false - /uid-safe/2.1.5: + /uid-safe@2.1.5: resolution: {integrity: sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==} engines: {node: '>= 0.8'} dependencies: random-bytes: 1.0.0 dev: false - /uid2/0.0.4: + /uid2@0.0.4: resolution: {integrity: sha512-IevTus0SbGwQzYh3+fRsAMTVVPOoIVufzacXcHPmdlle1jUpq7BRL+mw3dgeLanvGZdwwbWhRV6XrcFNdBmjWA==} dev: false - /unbox-primitive/1.0.2: + /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.2 @@ -20210,21 +20367,21 @@ packages: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - /unc-path-regex/0.1.2: + /unc-path-regex@0.1.2: resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} engines: {node: '>=0.10.0'} dev: true - /undici/5.5.1: + /undici@5.5.1: resolution: {integrity: sha512-MEvryPLf18HvlCbLSzCW0U00IMftKGI5udnjrQbC5D4P0Hodwffhv+iGfWuJwg16Y/TK11ZFK8i+BPVW2z/eAw==} engines: {node: '>=12.18'} - /unicode-canonical-property-names-ecmascript/2.0.0: + /unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} dev: true - /unicode-match-property-ecmascript/2.0.0: + /unicode-match-property-ecmascript@2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} dependencies: @@ -20232,120 +20389,55 @@ packages: unicode-property-aliases-ecmascript: 2.0.0 dev: true - /unicode-match-property-value-ecmascript/2.0.0: + /unicode-match-property-value-ecmascript@2.0.0: resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} engines: {node: '>=4'} dev: true - /unicode-property-aliases-ecmascript/2.0.0: + /unicode-property-aliases-ecmascript@2.0.0: resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} engines: {node: '>=4'} dev: true - /union/0.5.0: + /union@0.5.0: resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} engines: {node: '>= 0.8.0'} dependencies: qs: 6.11.0 dev: true - /unique-string/2.0.0: + /unique-string@2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} dependencies: crypto-random-string: 2.0.0 dev: true - /universalify/0.1.2: + /universalify@0.1.2: resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} engines: {node: '>= 4.0.0'} - /universalify/0.2.0: + /universalify@0.2.0: resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} engines: {node: '>= 4.0.0'} dev: true - /universalify/2.0.0: + /universalify@2.0.0: resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} engines: {node: '>= 10.0.0'} dev: true - /unixify/1.0.0: + /unixify@1.0.0: resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==} engines: {node: '>=0.10.0'} dependencies: normalize-path: 2.1.1 - /unpipe/1.0.0: + /unpipe@1.0.0: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unplugin-icons/0.14.9_ucej6auec2vidlux2n3htzvxf4: - resolution: {integrity: sha512-vPyVfNREH88dP6gszdaoGkAEFPpiScXj1A8eWN905jQgT53A3tsiPEiqJjCHOUVcsUaREt2JSudzumFOsCA78A==} - peerDependencies: - '@svgr/core': '>=5.5.0' - '@vue/compiler-sfc': ^3.0.2 - vue-template-compiler: ^2.6.12 - vue-template-es2015-compiler: ^1.9.0 - peerDependenciesMeta: - '@svgr/core': - optional: true - '@vue/compiler-sfc': - optional: true - vue-template-compiler: - optional: true - vue-template-es2015-compiler: - optional: true - dependencies: - '@antfu/install-pkg': 0.1.0 - '@antfu/utils': 0.5.2 - '@iconify/utils': 1.0.33 - '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 - kolorist: 1.5.1 - local-pkg: 0.4.2 - unplugin: 0.9.5_vite@3.2.4 - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: false - - /unplugin-icons/0.14.9_vite@3.2.4: - resolution: {integrity: sha512-vPyVfNREH88dP6gszdaoGkAEFPpiScXj1A8eWN905jQgT53A3tsiPEiqJjCHOUVcsUaREt2JSudzumFOsCA78A==} - peerDependencies: - '@svgr/core': '>=5.5.0' - '@vue/compiler-sfc': ^3.0.2 - vue-template-compiler: ^2.6.12 - vue-template-es2015-compiler: ^1.9.0 - peerDependenciesMeta: - '@svgr/core': - optional: true - '@vue/compiler-sfc': - optional: true - vue-template-compiler: - optional: true - vue-template-es2015-compiler: - optional: true - dependencies: - '@antfu/install-pkg': 0.1.0 - '@antfu/utils': 0.5.2 - '@iconify/utils': 1.0.33 - debug: 4.3.4 - kolorist: 1.5.1 - local-pkg: 0.4.2 - unplugin: 0.9.5_vite@3.2.4 - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: true - - /unplugin-icons/0.14.9_vnheu5mvzzbfbuhqo4shkhdhei: + /unplugin-icons@0.14.9(@vue/compiler-sfc@3.2.39)(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4): resolution: {integrity: sha512-vPyVfNREH88dP6gszdaoGkAEFPpiScXj1A8eWN905jQgT53A3tsiPEiqJjCHOUVcsUaREt2JSudzumFOsCA78A==} peerDependencies: '@svgr/core': '>=5.5.0' @@ -20366,19 +20458,18 @@ packages: '@antfu/utils': 0.5.2 '@iconify/utils': 1.0.33 '@vue/compiler-sfc': 3.2.39 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.5.1 local-pkg: 0.4.2 - unplugin: 0.9.5_vite@3.1.4 + unplugin: 0.9.5(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4) transitivePeerDependencies: - esbuild - rollup - supports-color - vite - webpack - dev: true - /unplugin-icons/0.15.3_@vue+compiler-sfc@3.2.45: + /unplugin-icons@0.15.3(@vue/compiler-sfc@3.2.45): resolution: {integrity: sha512-YWgJqv5AahrokeOnta8uX/m1damZA6Rf6zPClgHg2Fa/45iyOe3Lj+Wn/Ba+CSsq9yBffn17YfKfJNyWCNZPvw==} peerDependencies: '@svgr/core': '>=5.5.0' @@ -20399,7 +20490,7 @@ packages: '@antfu/utils': 0.7.2 '@iconify/utils': 2.1.4 '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.7.0 local-pkg: 0.4.3 unplugin: 1.1.0 @@ -20407,7 +20498,7 @@ packages: - supports-color dev: true - /unplugin-vue-components/0.21.0_vite@3.1.4+vue@3.2.37: + /unplugin-vue-components@0.21.0(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(vue@3.2.45)(webpack@5.74.0): resolution: {integrity: sha512-U7uOMNmRJ2eAv9CNjP8QRvxs6nAe3FVQUEIUphC1FGguBp3BWSLgGAcSHaX2nQy0gFoDY2mLF2M52W/t/eDaKg==} engines: {node: '>=14'} peerDependencies: @@ -20420,42 +20511,13 @@ packages: '@antfu/utils': 0.5.2 '@rollup/pluginutils': 4.2.1 chokidar: 3.5.3 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 local-pkg: 0.4.2 magic-string: 0.26.7 minimatch: 5.1.0 resolve: 1.22.1 - unplugin: 0.7.1_vite@3.1.4 - vue: 3.2.37 - transitivePeerDependencies: - - esbuild - - rollup - - supports-color - - vite - - webpack - dev: true - - /unplugin-vue-components/0.21.0_vite@3.2.4+vue@3.2.45: - resolution: {integrity: sha512-U7uOMNmRJ2eAv9CNjP8QRvxs6nAe3FVQUEIUphC1FGguBp3BWSLgGAcSHaX2nQy0gFoDY2mLF2M52W/t/eDaKg==} - engines: {node: '>=14'} - peerDependencies: - '@babel/parser': ^7.15.8 - vue: 2 || 3 - peerDependenciesMeta: - '@babel/parser': - optional: true - dependencies: - '@antfu/utils': 0.5.2 - '@rollup/pluginutils': 4.2.1 - chokidar: 3.5.3 - debug: 4.3.4 - fast-glob: 3.2.11 - local-pkg: 0.4.2 - magic-string: 0.26.7 - minimatch: 5.1.0 - resolve: 1.22.1 - unplugin: 0.7.1_vite@3.2.4 + unplugin: 0.7.1(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(webpack@5.74.0) vue: 3.2.45 transitivePeerDependencies: - esbuild @@ -20464,7 +20526,7 @@ packages: - vite - webpack - /unplugin/0.7.1_vite@3.1.4: + /unplugin@0.7.1(esbuild@0.15.15)(rollup@2.79.1)(vite@3.2.4)(webpack@5.74.0): resolution: {integrity: sha512-Z6hNDXDNh9aimMkPU1mEjtk+2ova8gh0y7rJeJdGH1vWZOHwF2lLQiQ/R97rv9ymmzEQXsR2fyMet72T8jy6ew==} peerDependencies: esbuild: '>=0.13' @@ -20483,35 +20545,14 @@ packages: dependencies: acorn: 8.8.0 chokidar: 3.5.3 - vite: 3.1.4_sass@1.53.0 - webpack-sources: 3.2.3 - webpack-virtual-modules: 0.4.4 - dev: true - - /unplugin/0.7.1_vite@3.2.4: - resolution: {integrity: sha512-Z6hNDXDNh9aimMkPU1mEjtk+2ova8gh0y7rJeJdGH1vWZOHwF2lLQiQ/R97rv9ymmzEQXsR2fyMet72T8jy6ew==} - peerDependencies: - esbuild: '>=0.13' - rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 - webpack: 4 || 5 - peerDependenciesMeta: - esbuild: - optional: true - rollup: - optional: true - vite: - optional: true - webpack: - optional: true - dependencies: - acorn: 8.8.0 - chokidar: 3.5.3 - vite: 3.2.4 + esbuild: 0.15.15 + rollup: 2.79.1 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + webpack: 5.74.0(esbuild@0.15.15) webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 - /unplugin/0.9.5_vite@3.1.4: + /unplugin@0.9.5(esbuild@0.15.15)(rollup@2.79.1)(vite@3.1.4): resolution: {integrity: sha512-luraheyfxwtvkvHpsOvMNv7IjLdORTWKZp0gWYNHGLi2ImON3iIZOj464qEyyEwLA/EMt12fC415HW9zRpOfTg==} peerDependencies: esbuild: '>=0.13' @@ -20530,35 +20571,13 @@ packages: dependencies: acorn: 8.8.0 chokidar: 3.5.3 - vite: 3.1.4_sass@1.53.0 - webpack-sources: 3.2.3 - webpack-virtual-modules: 0.4.4 - dev: true - - /unplugin/0.9.5_vite@3.2.4: - resolution: {integrity: sha512-luraheyfxwtvkvHpsOvMNv7IjLdORTWKZp0gWYNHGLi2ImON3iIZOj464qEyyEwLA/EMt12fC415HW9zRpOfTg==} - peerDependencies: - esbuild: '>=0.13' - rollup: ^2.50.0 - vite: ^2.3.0 || ^3.0.0-0 - webpack: 4 || 5 - peerDependenciesMeta: - esbuild: - optional: true - rollup: - optional: true - vite: - optional: true - webpack: - optional: true - dependencies: - acorn: 8.8.0 - chokidar: 3.5.3 - vite: 3.2.4 + esbuild: 0.15.15 + rollup: 2.79.1 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) webpack-sources: 3.2.3 webpack-virtual-modules: 0.4.4 - /unplugin/1.1.0: + /unplugin@1.1.0: resolution: {integrity: sha512-I8obQ8Rs/hnkxokRV6g8JKOQFgYNnTd9DL58vcSt5IJ9AkK8wbrtsnzD5hi4BJlvcY536JzfEXj9L6h7j559/A==} dependencies: acorn: 8.8.2 @@ -20567,17 +20586,17 @@ packages: webpack-virtual-modules: 0.5.0 dev: true - /upath/1.2.0: + /upath@1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} dev: true - /upath/2.0.1: + /upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} dev: true - /update-browserslist-db/1.0.4_browserslist@4.21.1: + /update-browserslist-db@1.0.4(browserslist@4.21.1): resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==} hasBin: true peerDependencies: @@ -20586,61 +20605,60 @@ packages: browserslist: 4.21.1 escalade: 3.1.1 picocolors: 1.0.0 - dev: true - /upper-case-first/2.0.2: + /upper-case-first@2.0.2: resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: tslib: 2.5.0 - /upper-case/1.1.3: + /upper-case@1.1.3: resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} dev: false - /upper-case/2.0.2: + /upper-case@2.0.2: resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: tslib: 2.5.0 - /uri-js/4.4.1: + /uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.1.1 - /url-join/4.0.1: + /url-join@4.0.1: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: true - /url-parse/1.5.10: + /url-parse@1.5.10: resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: true - /url/0.11.0: + /url@0.11.0: resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: false - /urlpattern-polyfill/6.0.2: + /urlpattern-polyfill@6.0.2: resolution: {integrity: sha512-5vZjFlH9ofROmuWmXM9yj2wljYKgWstGwe8YTyiqM7hVum/g9LyCizPZtb3UqsuppVwety9QJmfc42VggLpTgg==} dependencies: braces: 3.0.2 dev: true - /util-deprecate/1.0.2: + /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /util/0.10.4: + /util@0.10.4: resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: inherits: 2.0.3 dev: false - /util/0.12.4: + /util@0.12.4: resolution: {integrity: sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==} dependencies: inherits: 2.0.4 @@ -20651,27 +20669,27 @@ packages: which-typed-array: 1.1.8 dev: false - /utils-merge/1.0.1: + /utils-merge@1.0.1: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} - /uuid/8.3.2: + /uuid@8.3.2: resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true dev: false - /uuid/9.0.0: + /uuid@9.0.0: resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} hasBin: true - /v8-compile-cache-lib/3.0.1: + /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - /v8-compile-cache/2.3.0: + /v8-compile-cache@2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} dev: true - /v8-to-istanbul/8.1.1: + /v8-to-istanbul@8.1.1: resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} engines: {node: '>=10.12.0'} dependencies: @@ -20680,7 +20698,7 @@ packages: source-map: 0.7.4 dev: true - /v8-to-istanbul/9.0.1: + /v8-to-istanbul@9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} dependencies: @@ -20689,46 +20707,46 @@ packages: convert-source-map: 1.8.0 dev: true - /valid-data-url/3.0.1: + /valid-data-url@3.0.1: resolution: {integrity: sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==} engines: {node: '>=10'} dev: false - /validate-npm-package-license/3.0.4: + /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 dev: true - /validator/13.7.0: + /validator@13.7.0: resolution: {integrity: sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==} engines: {node: '>= 0.10'} - /value-or-promise/1.0.11: + /value-or-promise@1.0.11: resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==} engines: {node: '>=12'} - /value-or-promise/1.0.12: + /value-or-promise@1.0.12: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} dev: true - /vary/1.1.2: + /vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - /vite-node/0.26.0_sass@1.53.0: + /vite-node@0.26.0(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1): resolution: {integrity: sha512-nLtHWCv6reONl1oFsKhQ/LT7n3UNLpvVARAJlmGrQV6qSElht/9AdN41Pa+WSkw2Winh682UzM0Yw0GNlfqejw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) mlly: 1.1.0 pathe: 0.2.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 3.2.4_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - '@types/node' - less @@ -20739,17 +20757,17 @@ packages: - terser dev: true - /vite-node/0.29.8_@types+node@18.11.10: + /vite-node@0.29.8(@types/node@18.11.10)(terser@5.14.1): resolution: {integrity: sha512-b6OtCXfk65L6SElVM20q5G546yu10/kNrhg08afEoWlFRJXFq9/6glsvSVY+aI6YeC1tu2TtAqI2jHEQmOmsFw==} engines: {node: '>=v14.16.0'} hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) mlly: 1.1.0 pathe: 1.1.0 picocolors: 1.0.0 - vite: 3.2.4_@types+node@18.11.10 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - '@types/node' - less @@ -20760,46 +20778,7 @@ packages: - terser dev: true - /vite-plugin-checker/0.5.1_ijzhftcbnq5djhrq5avbc76z6m: - resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} - engines: {node: '>=14.16'} - peerDependencies: - eslint: '>=7' - typescript: '*' - vite: ^2.0.0 || ^3.0.0-0 - vls: '*' - vti: '*' - peerDependenciesMeta: - eslint: - optional: true - typescript: - optional: true - vls: - optional: true - vti: - optional: true - dependencies: - '@babel/code-frame': 7.18.6 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - chokidar: 3.5.3 - commander: 8.3.0 - eslint: 8.29.0 - fast-glob: 3.2.11 - lodash.debounce: 4.0.8 - lodash.pick: 4.4.0 - npm-run-path: 4.0.1 - strip-ansi: 6.0.1 - tiny-invariant: 1.2.0 - typescript: 4.9.3 - vite: 3.2.4_sass@1.53.0 - vscode-languageclient: 7.0.0 - vscode-languageserver: 7.0.0 - vscode-languageserver-textdocument: 1.0.7 - vscode-uri: 3.0.3 - dev: true - - /vite-plugin-checker/0.5.1_kjjvnh3jl66vp4phsscdedqila: + /vite-plugin-checker@0.5.1(eslint@8.24.0)(typescript@4.7.4)(vite@3.1.4): resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} engines: {node: '>=14.16'} peerDependencies: @@ -20831,37 +20810,76 @@ packages: strip-ansi: 6.0.1 tiny-invariant: 1.2.0 typescript: 4.7.4 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.3 dev: true - /vite-plugin-dts/2.0.0-beta.3_vite@3.2.4: + /vite-plugin-checker@0.5.1(eslint@8.29.0)(typescript@4.9.3)(vite@3.2.4): + resolution: {integrity: sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==} + engines: {node: '>=14.16'} + peerDependencies: + eslint: '>=7' + typescript: '*' + vite: ^2.0.0 || ^3.0.0-0 + vls: '*' + vti: '*' + peerDependenciesMeta: + eslint: + optional: true + typescript: + optional: true + vls: + optional: true + vti: + optional: true + dependencies: + '@babel/code-frame': 7.18.6 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + chokidar: 3.5.3 + commander: 8.3.0 + eslint: 8.29.0 + fast-glob: 3.2.11 + lodash.debounce: 4.0.8 + lodash.pick: 4.4.0 + npm-run-path: 4.0.1 + strip-ansi: 6.0.1 + tiny-invariant: 1.2.0 + typescript: 4.9.3 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vscode-languageclient: 7.0.0 + vscode-languageserver: 7.0.0 + vscode-languageserver-textdocument: 1.0.7 + vscode-uri: 3.0.3 + dev: true + + /vite-plugin-dts@2.0.0-beta.3(@types/node@17.0.45)(rollup@2.79.1)(vite@3.2.4): resolution: {integrity: sha512-QrsbTxyt0choSYXPxPfmN9XcSvxcVZk0zticxLrI5DkECs9KhDrSVGok1YP/UPkoKpfF9ThtOJcM5Rjuesxv/w==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: '>=2.9.0' dependencies: '@babel/parser': 7.20.15 - '@microsoft/api-extractor': 7.34.4 - '@rollup/pluginutils': 5.0.2 - '@rushstack/node-core-library': 3.55.2 - debug: 4.3.4 + '@microsoft/api-extractor': 7.34.4(@types/node@17.0.45) + '@rollup/pluginutils': 5.0.2(rollup@2.79.1) + '@rushstack/node-core-library': 3.55.2(@types/node@17.0.45) + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.12 fs-extra: 10.1.0 kolorist: 1.7.0 magic-string: 0.29.0 ts-morph: 17.0.1 - vite: 3.2.4_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - '@types/node' - rollup - supports-color dev: true - /vite-plugin-eslint/1.8.1_eslint@8.29.0+vite@3.2.4: + /vite-plugin-eslint@1.8.1(eslint@8.29.0)(vite@3.2.4): resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: eslint: '>=7' @@ -20871,131 +20889,84 @@ packages: '@types/eslint': 8.4.10 eslint: 8.29.0 rollup: 2.79.1 - vite: 3.2.4_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) dev: false - /vite-plugin-fonts/0.6.0_vite@3.1.4: + /vite-plugin-fonts@0.6.0(vite@3.1.4): resolution: {integrity: sha512-dV6nnLEju8k5EmvlBH6egxkVZ+rgc5zWsJr9+cNRXBMEDnpRGHcZPI260UEDNg2yB99wSTNER2eduEvZFbMIGw==} peerDependencies: vite: ^2.0.0 || ^3.0.0 dependencies: fast-glob: 3.2.11 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) dev: true - /vite-plugin-fonts/0.6.0_vite@3.2.4: + /vite-plugin-fonts@0.6.0(vite@3.2.4): resolution: {integrity: sha512-dV6nnLEju8k5EmvlBH6egxkVZ+rgc5zWsJr9+cNRXBMEDnpRGHcZPI260UEDNg2yB99wSTNER2eduEvZFbMIGw==} peerDependencies: vite: ^2.0.0 || ^3.0.0 dependencies: fast-glob: 3.2.11 - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) dev: true - /vite-plugin-html-config/1.0.10_vite@3.1.4: + /vite-plugin-html-config@1.0.10(vite@3.1.4): resolution: {integrity: sha512-qJCVKC/mR4BIy4EG7AHQ3nGo1BF+3fOjVIka0kXKQMlxT12dl9G5YKmjhLohDzySijOb03R2PzYiAdavwKkqQQ==} engines: {node: '>=12.0.0'} peerDependencies: vite: '>=2.0.0' dependencies: - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) dev: true - /vite-plugin-html-config/1.0.10_vite@3.2.4: + /vite-plugin-html-config@1.0.10(vite@3.2.4): resolution: {integrity: sha512-qJCVKC/mR4BIy4EG7AHQ3nGo1BF+3fOjVIka0kXKQMlxT12dl9G5YKmjhLohDzySijOb03R2PzYiAdavwKkqQQ==} engines: {node: '>=12.0.0'} peerDependencies: vite: '>=2.0.0' dependencies: - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) dev: true - /vite-plugin-inspect/0.7.4_vite@3.1.4: + /vite-plugin-inspect@0.7.4(vite@3.1.4): resolution: {integrity: sha512-06uSil9CPWsGwICsXixx2O3vsIOLNTkQaiBijmJA84BuxYKIWJ3k0r4I96kX1WgdA3olxJxVBXOjzryzeHOSuQ==} engines: {node: '>=14'} peerDependencies: vite: ^3.1.0 dependencies: '@rollup/pluginutils': 4.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fs-extra: 10.1.0 kolorist: 1.5.1 sirv: 2.0.2 ufo: 0.8.5 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-inspect/0.7.4_vite@3.2.4: + /vite-plugin-inspect@0.7.4(vite@3.2.4): resolution: {integrity: sha512-06uSil9CPWsGwICsXixx2O3vsIOLNTkQaiBijmJA84BuxYKIWJ3k0r4I96kX1WgdA3olxJxVBXOjzryzeHOSuQ==} engines: {node: '>=14'} peerDependencies: vite: ^3.1.0 dependencies: '@rollup/pluginutils': 4.2.1 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fs-extra: 10.1.0 kolorist: 1.5.1 sirv: 2.0.2 ufo: 0.8.5 - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-pages-sitemap/1.4.0: + /vite-plugin-pages-sitemap@1.4.0: resolution: {integrity: sha512-8GlmNSeObvDVUdmgutfWnGBZGsn3Zb8IXCjRODFB0tOhQqAQPZRwXrFha6ZLjvF4DgVJI3sW2FfiXa1wFxJvmg==} dev: true - /vite-plugin-pages/0.26.0_ucej6auec2vidlux2n3htzvxf4: - resolution: {integrity: sha512-yJZvwHEt7puYIf19S89IvkDsWPjWleSied4H8hmdW6i8buCA93z1UAU1ipW1d8fNKrC4FzXsUHHbPm6+kl1p9w==} - peerDependencies: - '@vue/compiler-sfc': ^2.7.0 || ^3.0.0 - vite: ^2.0.0 || ^3.0.0-0 - peerDependenciesMeta: - '@vue/compiler-sfc': - optional: true - dependencies: - '@types/debug': 4.1.7 - '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 - deep-equal: 2.0.5 - extract-comments: 1.1.0 - fast-glob: 3.2.11 - json5: 2.2.1 - local-pkg: 0.4.2 - picocolors: 1.0.0 - vite: 3.2.4_sass@1.58.0 - yaml: 2.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /vite-plugin-pages/0.26.0_vite@3.2.4: - resolution: {integrity: sha512-yJZvwHEt7puYIf19S89IvkDsWPjWleSied4H8hmdW6i8buCA93z1UAU1ipW1d8fNKrC4FzXsUHHbPm6+kl1p9w==} - peerDependencies: - '@vue/compiler-sfc': ^2.7.0 || ^3.0.0 - vite: ^2.0.0 || ^3.0.0-0 - peerDependenciesMeta: - '@vue/compiler-sfc': - optional: true - dependencies: - '@types/debug': 4.1.7 - debug: 4.3.4 - deep-equal: 2.0.5 - extract-comments: 1.1.0 - fast-glob: 3.2.11 - json5: 2.2.1 - local-pkg: 0.4.2 - picocolors: 1.0.0 - vite: 3.2.4 - yaml: 2.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /vite-plugin-pages/0.26.0_vnheu5mvzzbfbuhqo4shkhdhei: + /vite-plugin-pages@0.26.0(@vue/compiler-sfc@3.2.39)(vite@3.1.4): resolution: {integrity: sha512-yJZvwHEt7puYIf19S89IvkDsWPjWleSied4H8hmdW6i8buCA93z1UAU1ipW1d8fNKrC4FzXsUHHbPm6+kl1p9w==} peerDependencies: '@vue/compiler-sfc': ^2.7.0 || ^3.0.0 @@ -21006,74 +20977,80 @@ packages: dependencies: '@types/debug': 4.1.7 '@vue/compiler-sfc': 3.2.39 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) deep-equal: 2.0.5 extract-comments: 1.1.0 fast-glob: 3.2.11 json5: 2.2.1 local-pkg: 0.4.2 picocolors: 1.0.0 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) yaml: 2.1.1 transitivePeerDependencies: - supports-color dev: true - /vite-plugin-pwa/0.13.1_3kw35epztoiwny7qtfesjexvtu: - resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} + /vite-plugin-pages@0.26.0(@vue/compiler-sfc@3.2.45)(vite@3.2.4): + resolution: {integrity: sha512-yJZvwHEt7puYIf19S89IvkDsWPjWleSied4H8hmdW6i8buCA93z1UAU1ipW1d8fNKrC4FzXsUHHbPm6+kl1p9w==} peerDependencies: - vite: ^3.1.0 - workbox-window: ^6.5.4 + '@vue/compiler-sfc': ^2.7.0 || ^3.0.0 + vite: ^2.0.0 || ^3.0.0-0 + peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true dependencies: - debug: 4.3.4 + '@types/debug': 4.1.7 + '@vue/compiler-sfc': 3.2.45 + debug: 4.3.4(supports-color@9.2.2) + deep-equal: 2.0.5 + extract-comments: 1.1.0 fast-glob: 3.2.11 - pretty-bytes: 6.0.0 - rollup: 2.79.1 - vite: 3.2.4 - workbox-build: 6.5.4 - workbox-window: 6.5.4 + json5: 2.2.1 + local-pkg: 0.4.2 + picocolors: 1.0.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + yaml: 2.1.1 transitivePeerDependencies: - - '@types/babel__core' - supports-color dev: true - /vite-plugin-pwa/0.13.1_bg4cnt4dy3xq3a47wkujd6ryzq: + /vite-plugin-pwa@0.13.1(vite@3.1.4)(workbox-build@6.5.4)(workbox-window@6.5.4): resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} peerDependencies: vite: ^3.1.0 + workbox-build: ^6.5.4 workbox-window: ^6.5.4 dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.79.1 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) workbox-build: 6.5.4 workbox-window: 6.5.4 transitivePeerDependencies: - - '@types/babel__core' - supports-color dev: true - /vite-plugin-pwa/0.13.1_vite@3.2.4: + /vite-plugin-pwa@0.13.1(vite@3.2.4)(workbox-build@6.5.4)(workbox-window@6.5.4): resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==} peerDependencies: vite: ^3.1.0 + workbox-build: ^6.5.4 workbox-window: ^6.5.4 dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 pretty-bytes: 6.0.0 rollup: 2.79.1 - vite: 3.2.4_sass@1.53.0 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) workbox-build: 6.5.4 workbox-window: 6.5.4 transitivePeerDependencies: - - '@types/babel__core' - supports-color dev: true - /vite-plugin-static-copy/0.12.0_vite@3.2.4: + /vite-plugin-static-copy@0.12.0(vite@3.2.4): resolution: {integrity: sha512-5a8hCjYJdf/rl8s7ct/YWt97gXdGPGNSOoJtkY5IYhbnSq04X1gTt5GpFHKfAxhHoed1Grfw3Ed13t7AjJi7gw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -21083,10 +21060,10 @@ packages: fast-glob: 3.2.12 fs-extra: 10.1.0 picocolors: 1.0.0 - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) dev: true - /vite-plugin-vue-layouts/0.7.0_oewzdqozxqnqgsrjzmwikx34vi: + /vite-plugin-vue-layouts@0.7.0(vite@3.1.4)(vue-router@4.1.0)(vue@3.2.37): resolution: {integrity: sha512-k5XDmRNFo4M/GmUjhbRXj2WmJiFcGoVI8l/uZ72RHyRDQr4wE/6Zq/KFq0lqXomWQxTSzakQRUswzNwtvZLE8A==} peerDependencies: vite: ^2.5.0 || ^3.0.0-0 @@ -21094,16 +21071,16 @@ packages: vue-router: ^3.5.1 || ^ 4.0.11 dependencies: '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) vue: 3.2.37 - vue-router: 4.1.0_vue@3.2.37 + vue-router: 4.1.0(vue@3.2.37) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-vue-layouts/0.7.0_vite@3.2.4+vue@3.2.45: + /vite-plugin-vue-layouts@0.7.0(vite@3.2.4)(vue-router@4.1.0)(vue@3.2.45): resolution: {integrity: sha512-k5XDmRNFo4M/GmUjhbRXj2WmJiFcGoVI8l/uZ72RHyRDQr4wE/6Zq/KFq0lqXomWQxTSzakQRUswzNwtvZLE8A==} peerDependencies: vite: ^2.5.0 || ^3.0.0-0 @@ -21111,60 +21088,44 @@ packages: vue-router: ^3.5.1 || ^ 4.0.11 dependencies: '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) fast-glob: 3.2.11 - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) vue: 3.2.45 + vue-router: 4.1.0(vue@3.2.45) transitivePeerDependencies: - supports-color dev: true - /vite-plugin-vue-layouts/0.7.0_x3isqn4gd6tlkzc66bnhwnhwbi: - resolution: {integrity: sha512-k5XDmRNFo4M/GmUjhbRXj2WmJiFcGoVI8l/uZ72RHyRDQr4wE/6Zq/KFq0lqXomWQxTSzakQRUswzNwtvZLE8A==} - peerDependencies: - vite: ^2.5.0 || ^3.0.0-0 - vue: ^2.6.12 || ^3.2.4 - vue-router: ^3.5.1 || ^ 4.0.11 - dependencies: - '@vue/compiler-sfc': 3.2.45 - debug: 4.3.4 - fast-glob: 3.2.11 - vite: 3.2.4_sass@1.58.0 - vue: 3.2.45 - vue-router: 4.1.0_vue@3.2.45 - transitivePeerDependencies: - - supports-color - dev: true - - /vite-plugin-windicss/1.8.8_vite@3.1.4: + /vite-plugin-windicss@1.8.8(vite@3.1.4): resolution: {integrity: sha512-iyu+ZX0NmhNEUaLPv7xtC+EFRBpWMmw0nhd9a9upayfuNG/thwslKiQKmRB7U/dG0k/2oWLvPDvN/B9i7oRgSA==} peerDependencies: vite: ^2.0.1 || ^3.0.0 dependencies: '@windicss/plugin-utils': 1.8.8 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.5.1 - vite: 3.1.4_sass@1.53.0 + vite: 3.1.4(sass@1.53.0)(terser@5.14.1) windicss: 3.5.6 transitivePeerDependencies: - supports-color dev: true - /vite-plugin-windicss/1.8.8_vite@3.2.4: + /vite-plugin-windicss@1.8.8(vite@3.2.4): resolution: {integrity: sha512-iyu+ZX0NmhNEUaLPv7xtC+EFRBpWMmw0nhd9a9upayfuNG/thwslKiQKmRB7U/dG0k/2oWLvPDvN/B9i7oRgSA==} peerDependencies: vite: ^2.0.1 || ^3.0.0 dependencies: '@windicss/plugin-utils': 1.8.8 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) kolorist: 1.5.1 - vite: 3.2.4 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) windicss: 3.5.6 transitivePeerDependencies: - supports-color dev: true - /vite/3.1.4_sass@1.53.0: + /vite@3.1.4(sass@1.53.0)(terser@5.14.1): resolution: {integrity: sha512-JoQI08aBjY9lycL7jcEq4p9o1xUjq5aRvdH4KWaXtkSx7e7RpAh9D3IjzDWRD4Fg44LS3oDAIOG/Kq1L+82psA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -21188,76 +21149,11 @@ packages: resolve: 1.22.1 rollup: 2.78.1 sass: 1.53.0 + terser: 5.14.1 optionalDependencies: fsevents: 2.3.2 - /vite/3.2.4: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: 0.15.15 - postcss: 8.4.19 - resolve: 1.22.1 - rollup: 2.79.1 - optionalDependencies: - fsevents: 2.3.2 - - /vite/3.2.4_@types+node@18.11.10: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 18.11.10 - esbuild: 0.15.15 - postcss: 8.4.19 - resolve: 1.22.1 - rollup: 2.79.1 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vite/3.2.4_sass@1.53.0: + /vite@3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1): resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -21282,49 +21178,17 @@ packages: terser: optional: true dependencies: + '@types/node': 17.0.45 esbuild: 0.15.15 postcss: 8.4.19 resolve: 1.22.1 rollup: 2.79.1 sass: 1.53.0 + terser: 5.14.1 optionalDependencies: fsevents: 2.3.2 - /vite/3.2.4_sass@1.58.0: - resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - esbuild: 0.15.15 - postcss: 8.4.19 - resolve: 1.22.1 - rollup: 2.79.1 - sass: 1.58.0 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /vitest/0.29.8: + /vitest@0.29.8(terser@5.14.1): resolution: {integrity: sha512-JIAVi2GK5cvA6awGpH0HvH/gEG9PZ0a/WoxdiV3PmqK+3CjQMf8c+J/Vhv4mdZ2nRyXFw66sAg6qz7VNkaHfDQ==} engines: {node: '>=v14.16.0'} hasBin: true @@ -21366,7 +21230,7 @@ packages: acorn-walk: 8.2.0 cac: 6.7.14 chai: 4.3.7 - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) local-pkg: 0.4.3 pathe: 1.1.0 picocolors: 1.0.0 @@ -21376,8 +21240,8 @@ packages: tinybench: 2.4.0 tinypool: 0.4.0 tinyspy: 1.1.1 - vite: 3.2.4_@types+node@18.11.10 - vite-node: 0.29.8_@types+node@18.11.10 + vite: 3.2.4(@types/node@17.0.45)(sass@1.53.0)(terser@5.14.1) + vite-node: 0.29.8(@types/node@18.11.10)(terser@5.14.1) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -21388,7 +21252,7 @@ packages: - terser dev: true - /vm2/3.9.14: + /vm2@3.9.14: resolution: {integrity: sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==} engines: {node: '>=6.0'} hasBin: true @@ -21397,11 +21261,11 @@ packages: acorn-walk: 8.2.0 dev: false - /void-elements/3.1.0: + /void-elements@3.1.0: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} - /vscode-css-languageservice/5.4.2: + /vscode-css-languageservice@5.4.2: resolution: {integrity: sha512-DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg==} dependencies: vscode-languageserver-textdocument: 1.0.7 @@ -21410,7 +21274,7 @@ packages: vscode-uri: 3.0.3 dev: true - /vscode-html-languageservice/4.2.5: + /vscode-html-languageservice@4.2.5: resolution: {integrity: sha512-dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw==} dependencies: vscode-languageserver-textdocument: 1.0.7 @@ -21419,7 +21283,7 @@ packages: vscode-uri: 3.0.3 dev: true - /vscode-json-languageservice/4.2.1: + /vscode-json-languageservice@4.2.1: resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==} dependencies: jsonc-parser: 3.2.0 @@ -21429,17 +21293,17 @@ packages: vscode-uri: 3.0.3 dev: true - /vscode-jsonrpc/6.0.0: + /vscode-jsonrpc@6.0.0: resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==} engines: {node: '>=8.0.0 || >=10.0.0'} dev: true - /vscode-jsonrpc/8.0.2: + /vscode-jsonrpc@8.0.2: resolution: {integrity: sha512-RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ==} engines: {node: '>=14.0.0'} dev: true - /vscode-languageclient/7.0.0: + /vscode-languageclient@7.0.0: resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==} engines: {vscode: ^1.52.0} dependencies: @@ -21448,55 +21312,55 @@ packages: vscode-languageserver-protocol: 3.16.0 dev: true - /vscode-languageserver-protocol/3.16.0: + /vscode-languageserver-protocol@3.16.0: resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==} dependencies: vscode-jsonrpc: 6.0.0 vscode-languageserver-types: 3.16.0 dev: true - /vscode-languageserver-protocol/3.17.2: + /vscode-languageserver-protocol@3.17.2: resolution: {integrity: sha512-8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg==} dependencies: vscode-jsonrpc: 8.0.2 vscode-languageserver-types: 3.17.2 dev: true - /vscode-languageserver-textdocument/1.0.7: + /vscode-languageserver-textdocument@1.0.7: resolution: {integrity: sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==} dev: true - /vscode-languageserver-types/3.16.0: + /vscode-languageserver-types@3.16.0: resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} dev: true - /vscode-languageserver-types/3.17.1: + /vscode-languageserver-types@3.17.1: resolution: {integrity: sha512-K3HqVRPElLZVVPtMeKlsyL9aK0GxGQpvtAUTfX4k7+iJ4mc1M+JM+zQwkgGy2LzY0f0IAafe8MKqIkJrxfGGjQ==} dev: false - /vscode-languageserver-types/3.17.2: + /vscode-languageserver-types@3.17.2: resolution: {integrity: sha512-zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA==} dev: true - /vscode-languageserver/7.0.0: + /vscode-languageserver@7.0.0: resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==} hasBin: true dependencies: vscode-languageserver-protocol: 3.16.0 dev: true - /vscode-languageserver/8.0.2: + /vscode-languageserver@8.0.2: resolution: {integrity: sha512-bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA==} hasBin: true dependencies: vscode-languageserver-protocol: 3.17.2 dev: true - /vscode-nls/5.2.0: + /vscode-nls@5.2.0: resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} dev: true - /vscode-pug-languageservice/0.27.24: + /vscode-pug-languageservice@0.27.24: resolution: {integrity: sha512-GSvsFB+rPhAD7cBlEKCVNNsFGIaOnp/0zyLw3WpYbXY24vJZafXu1kHvtYaaQXJRnIhqp5EI5p+EqpdI3hTBnw==} deprecated: 'WARNING: This project has been renamed to @volar/pug-language-service. Install using @volar/pug-language-service instead.' dependencies: @@ -21509,7 +21373,7 @@ packages: vscode-languageserver: 8.0.2 dev: true - /vscode-typescript-languageservice/0.27.25: + /vscode-typescript-languageservice@0.27.25: resolution: {integrity: sha512-nxpJI9MnF2rn5rKL/032Qrsq3T9DgM3slK5fwZp3suNdo90JG2zFTs3Ola8n62k7+KWu4A775obxyb4wLIW6Gw==} deprecated: 'WARNING: This project has been renamed to @volar/typescript-language-service. Install using @volar/typescript-language-service instead.' dependencies: @@ -21520,15 +21384,15 @@ packages: vscode-languageserver-textdocument: 1.0.7 dev: true - /vscode-uri/2.1.2: + /vscode-uri@2.1.2: resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} dev: true - /vscode-uri/3.0.3: + /vscode-uri@3.0.3: resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==} dev: true - /vscode-vue-languageservice/0.27.30: + /vscode-vue-languageservice@0.27.30: resolution: {integrity: sha512-nPnUNCMqqHfxcCPLyLWvmgbNCgos3SwvPcl/CzAnMbqcjLtNZppsdI7bKX3EEj0Jbg6SGLQ9NanIvZaMI1bsUA==} deprecated: 'WARNING: This project has been renamed to @volar/vue-language-service. Install using @volar/vue-language-service instead.' dependencies: @@ -21552,7 +21416,7 @@ packages: vscode-typescript-languageservice: 0.27.25 dev: true - /vue-demi/0.13.1_vue@3.2.37: + /vue-demi@0.13.1(vue@3.2.37): resolution: {integrity: sha512-xmkJ56koG3ptpLnpgmIzk9/4nFf4CqduSJbUM0OdPoU87NwRuZ6x49OLhjSa/fC15fV+5CbEnrxU4oyE022svg==} engines: {node: '>=12'} hasBin: true @@ -21567,7 +21431,7 @@ packages: vue: 3.2.37 dev: false - /vue-demi/0.13.1_vue@3.2.45: + /vue-demi@0.13.1(vue@3.2.45): resolution: {integrity: sha512-xmkJ56koG3ptpLnpgmIzk9/4nFf4CqduSJbUM0OdPoU87NwRuZ6x49OLhjSa/fC15fV+5CbEnrxU4oyE022svg==} engines: {node: '>=12'} hasBin: true @@ -21582,13 +21446,13 @@ packages: vue: 3.2.45 dev: false - /vue-eslint-parser/9.1.0_eslint@8.24.0: + /vue-eslint-parser@9.1.0(eslint@8.24.0): resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) eslint: 8.24.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 @@ -21600,13 +21464,13 @@ packages: - supports-color dev: true - /vue-eslint-parser/9.1.0_eslint@8.28.0: + /vue-eslint-parser@9.1.0(eslint@8.28.0): resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) eslint: 8.28.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 @@ -21618,13 +21482,13 @@ packages: - supports-color dev: true - /vue-eslint-parser/9.1.0_eslint@8.29.0: + /vue-eslint-parser@9.1.0(eslint@8.29.0): resolution: {integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - debug: 4.3.4 + debug: 4.3.4(supports-color@9.2.2) eslint: 8.29.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 @@ -21636,13 +21500,13 @@ packages: - supports-color dev: true - /vue-github-button/3.0.3: + /vue-github-button@3.0.3: resolution: {integrity: sha512-O2Kv5HxRMn1qqgt2sSy8N7y2C6WGOeICzgGj6y+JFcnLjorTTzNR8vY5abiPOYDiW03WZ/9hUIn7Gm9CG9pIuA==} dependencies: github-buttons: 2.21.1 dev: false - /vue-i18n/9.2.2_vue@3.2.37: + /vue-i18n@9.2.2(vue@3.2.37): resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} engines: {node: '>= 14'} peerDependencies: @@ -21654,7 +21518,7 @@ packages: '@vue/devtools-api': 6.2.1 vue: 3.2.37 - /vue-loader/16.8.3_tfvhctuaqmmqnirfl65c47tqwu: + /vue-loader@16.8.3(@vue/compiler-sfc@3.2.45)(vue@3.2.45)(webpack@5.74.0): resolution: {integrity: sha512-7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA==} peerDependencies: '@vue/compiler-sfc': ^3.0.8 @@ -21671,9 +21535,10 @@ packages: hash-sum: 2.0.0 loader-utils: 2.0.4 vue: 3.2.45 + webpack: 5.74.0(esbuild@0.15.15) dev: true - /vue-pdf-embed/1.1.4_vue@3.2.37: + /vue-pdf-embed@1.1.4(vue@3.2.37): resolution: {integrity: sha512-d4c7nM3LneWUiL4MssIyPHfGgVMRPh4Z7UgLsXMZ+lbAtH/6SBUFHdzZQLY2BASdh16BM/v6YCbmtQU+KIQdrg==} peerDependencies: vue: ^2.x || ^3.x @@ -21681,7 +21546,7 @@ packages: vue: 3.2.37 dev: false - /vue-router/4.1.0_vue@3.2.37: + /vue-router@4.1.0(vue@3.2.37): resolution: {integrity: sha512-A+dYO0ZXLJFZ40ebW3XtqehCW0Wv2xNH4lFddOByDja4NtItEdyirrShTlvD3UA4xc5a5mG2RRI30BusYpOb9g==} peerDependencies: vue: ^3.2.0 @@ -21689,7 +21554,7 @@ packages: '@vue/devtools-api': 6.2.1 vue: 3.2.37 - /vue-router/4.1.0_vue@3.2.45: + /vue-router@4.1.0(vue@3.2.45): resolution: {integrity: sha512-A+dYO0ZXLJFZ40ebW3XtqehCW0Wv2xNH4lFddOByDja4NtItEdyirrShTlvD3UA4xc5a5mG2RRI30BusYpOb9g==} peerDependencies: vue: ^3.2.0 @@ -21697,14 +21562,14 @@ packages: '@vue/devtools-api': 6.2.1 vue: 3.2.45 - /vue-template-compiler/2.7.14: + /vue-template-compiler@2.7.14: resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==} dependencies: de-indent: 1.0.2 he: 1.2.0 dev: true - /vue-tippy/6.0.0-alpha.58_vue@3.2.37: + /vue-tippy@6.0.0-alpha.58(vue@3.2.37): resolution: {integrity: sha512-kfpkFZMvua+nTn9Mqx3v5UrY8rlu3nHiOoGKO1bhSM0CUG8ISygfofSDwLDUW6wAcAHABkF7vcp5sPqhTb26CA==} peerDependencies: vue: ^3.0.0 @@ -21713,7 +21578,7 @@ packages: vue: 3.2.37 dev: false - /vue-tippy/6.0.0-alpha.58_vue@3.2.45: + /vue-tippy@6.0.0-alpha.58(vue@3.2.45): resolution: {integrity: sha512-kfpkFZMvua+nTn9Mqx3v5UrY8rlu3nHiOoGKO1bhSM0CUG8ISygfofSDwLDUW6wAcAHABkF7vcp5sPqhTb26CA==} peerDependencies: vue: ^3.0.0 @@ -21722,7 +21587,7 @@ packages: vue: 3.2.45 dev: false - /vue-tsc/0.3.0_typescript@4.9.3: + /vue-tsc@0.3.0(typescript@4.9.3): resolution: {integrity: sha512-zaDRZBxwRIz1XjhNP92FqugG71st6BUMnA2EwPeXrAyzbEYVRz6TezNFceYl3QYqqN8CtaxbqUhaQEDj/ntoCA==} hasBin: true peerDependencies: @@ -21732,7 +21597,7 @@ packages: vscode-vue-languageservice: 0.27.30 dev: true - /vue-tsc/0.38.2_typescript@4.7.4: + /vue-tsc@0.38.2(typescript@4.7.4): resolution: {integrity: sha512-+OMmpw9BZC9khul3I1HGtWchv7BCiaM7NvfdilVAiOFkjnivIoaW6jJm6YPQJaEPouePtpkDUWovyzgNxWdDsw==} hasBin: true peerDependencies: @@ -21742,7 +21607,7 @@ packages: typescript: 4.7.4 dev: true - /vue-tsc/0.38.2_typescript@4.9.3: + /vue-tsc@0.38.2(typescript@4.9.3): resolution: {integrity: sha512-+OMmpw9BZC9khul3I1HGtWchv7BCiaM7NvfdilVAiOFkjnivIoaW6jJm6YPQJaEPouePtpkDUWovyzgNxWdDsw==} hasBin: true peerDependencies: @@ -21752,7 +21617,7 @@ packages: typescript: 4.9.3 dev: true - /vue-tsc/1.0.9_typescript@4.7.4: + /vue-tsc@1.0.9(typescript@4.7.4): resolution: {integrity: sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ==} hasBin: true peerDependencies: @@ -21763,7 +21628,7 @@ packages: typescript: 4.7.4 dev: true - /vue-tsc/1.0.9_typescript@4.9.3: + /vue-tsc@1.0.9(typescript@4.9.3): resolution: {integrity: sha512-vRmHD1K6DmBymNhoHjQy/aYKTRQNLGOu2/ESasChG9Vy113K6CdP0NlhR0bzgFJfv2eFB9Ez/9L5kIciUajBxQ==} hasBin: true peerDependencies: @@ -21774,32 +21639,32 @@ packages: typescript: 4.9.3 dev: true - /vue/2.7.1: + /vue@2.7.1: resolution: {integrity: sha512-X1YkFddhbTAU2FPK0gBZ/vDOcOMA8ZT4uHoFVor1bUb7BpVGdEswS286YGtODsf/Ghfr1LM1sBMFAY8XT+dVhA==} dependencies: '@vue/compiler-sfc': 2.7.1 csstype: 3.1.0 dev: true - /vue/3.2.37: + /vue@3.2.37: resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==} dependencies: '@vue/compiler-dom': 3.2.37 '@vue/compiler-sfc': 3.2.37 '@vue/runtime-dom': 3.2.37 - '@vue/server-renderer': 3.2.37_vue@3.2.37 + '@vue/server-renderer': 3.2.37(vue@3.2.37) '@vue/shared': 3.2.37 - /vue/3.2.45: + /vue@3.2.45: resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==} dependencies: '@vue/compiler-dom': 3.2.45 '@vue/compiler-sfc': 3.2.45 '@vue/runtime-dom': 3.2.45 - '@vue/server-renderer': 3.2.45_vue@3.2.45 + '@vue/server-renderer': 3.2.45(vue@3.2.45) '@vue/shared': 3.2.45 - /vuedraggable-es/4.1.1_vue@3.2.37: + /vuedraggable-es@4.1.1(vue@3.2.37): resolution: {integrity: sha512-F35pjSwC8HS/lnaOd+B59nYR4FZmwuhWAzccK9xftRuWds8SU1TZh5myKVM86j5dFOI7S26O64Kwe7LUHnXjlA==} peerDependencies: vue: ^3.2.31 @@ -21808,7 +21673,7 @@ packages: vue: 3.2.37 dev: false - /vuedraggable-es/4.1.1_vue@3.2.45: + /vuedraggable-es@4.1.1(vue@3.2.45): resolution: {integrity: sha512-F35pjSwC8HS/lnaOd+B59nYR4FZmwuhWAzccK9xftRuWds8SU1TZh5myKVM86j5dFOI7S26O64Kwe7LUHnXjlA==} peerDependencies: vue: ^3.2.31 @@ -21817,50 +21682,49 @@ packages: vue: 3.2.45 dev: false - /w3c-hr-time/1.0.2: + /w3c-hr-time@1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} dependencies: browser-process-hrtime: 1.0.0 dev: true - /w3c-keyname/2.2.4: + /w3c-keyname@2.2.4: resolution: {integrity: sha512-tOhfEwEzFLJzf6d1ZPkYfGj+FWhIpBux9ppoP3rlclw3Z0BZv3N7b7030Z1kYth+6rDuAsXUFr+d0VE6Ed1ikw==} - /w3c-xmlserializer/2.0.0: + /w3c-xmlserializer@2.0.0: resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} engines: {node: '>=10'} dependencies: xml-name-validator: 3.0.0 dev: true - /w3c-xmlserializer/4.0.0: + /w3c-xmlserializer@4.0.0: resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} engines: {node: '>=14'} dependencies: xml-name-validator: 4.0.0 dev: true - /walker/1.0.8: + /walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} dependencies: makeerror: 1.0.12 dev: true - /watchpack/2.4.0: + /watchpack@2.4.0: resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - dev: true - /wcwidth/1.0.1: + /wcwidth@1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.3 dev: true - /web-resource-inliner/5.0.0: + /web-resource-inliner@5.0.0: resolution: {integrity: sha512-AIihwH+ZmdHfkJm7BjSXiEClVt4zUFqX4YlFAzjL13wLtDuUneSaFvDBTbdYRecs35SiU7iNKbMnN+++wVfb6A==} engines: {node: '>=10.0.0'} dependencies: @@ -21874,15 +21738,15 @@ packages: - encoding dev: false - /web-streams-polyfill/3.2.1: + /web-streams-polyfill@3.2.1: resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==} engines: {node: '>= 8'} - /web-streams-polyfill/4.0.0-beta.1: + /web-streams-polyfill@4.0.0-beta.1: resolution: {integrity: sha512-3ux37gEX670UUphBF9AMCq8XM6iQ8Ac6A+DSRRjDoRBm1ufCkaCDdNVbaqq60PsEkdNlLKrGtv/YBP4EJXqNtQ==} engines: {node: '>= 12'} - /webcrypto-core/1.7.6: + /webcrypto-core@1.7.6: resolution: {integrity: sha512-TBPiewB4Buw+HI3EQW+Bexm19/W4cP/qZG/02QJCXN+iN+T5sl074vZ3rJcle/ZtDBQSgjkbsQO/1eFcxnSBUA==} dependencies: '@peculiar/asn1-schema': 2.3.3 @@ -21892,44 +21756,44 @@ packages: tslib: 2.5.0 dev: true - /webidl-conversions/3.0.1: + /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - /webidl-conversions/4.0.2: + /webidl-conversions@4.0.2: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - /webidl-conversions/5.0.0: + /webidl-conversions@5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} engines: {node: '>=8'} dev: true - /webidl-conversions/6.1.0: + /webidl-conversions@6.1.0: resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} engines: {node: '>=10.4'} dev: true - /webidl-conversions/7.0.0: + /webidl-conversions@7.0.0: resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} engines: {node: '>=12'} dev: true - /webpack-node-externals/3.0.0: + /webpack-node-externals@3.0.0: resolution: {integrity: sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==} engines: {node: '>=6'} dev: true - /webpack-sources/3.2.3: + /webpack-sources@3.2.3: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - /webpack-virtual-modules/0.4.4: + /webpack-virtual-modules@0.4.4: resolution: {integrity: sha512-h9atBP/bsZohWpHnr+2sic8Iecb60GxftXsWNLLLSqewgIsGzByd2gcIID4nXcG+3tNe4GQG3dLcff3kXupdRA==} - /webpack-virtual-modules/0.5.0: + /webpack-virtual-modules@0.5.0: resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} dev: true - /webpack/5.74.0: + /webpack@5.74.0(esbuild@0.15.15): resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} engines: {node: '>=10.13.0'} hasBin: true @@ -21945,7 +21809,7 @@ packages: '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.8.0 - acorn-import-assertions: 1.8.0_acorn@8.8.0 + acorn-import-assertions: 1.8.0(acorn@8.8.0) browserslist: 4.21.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.12.0 @@ -21960,16 +21824,15 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_webpack@5.74.0 + terser-webpack-plugin: 5.3.6(esbuild@0.15.15)(webpack@5.74.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js - dev: true - /websocket-driver/0.7.4: + /websocket-driver@0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} engines: {node: '>=0.8.0'} dependencies: @@ -21978,41 +21841,41 @@ packages: websocket-extensions: 0.1.4 dev: false - /websocket-extensions/0.1.4: + /websocket-extensions@0.1.4: resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} engines: {node: '>=0.8.0'} dev: false - /whatwg-encoding/1.0.5: + /whatwg-encoding@1.0.5: resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} dependencies: iconv-lite: 0.4.24 dev: true - /whatwg-encoding/2.0.0: + /whatwg-encoding@2.0.0: resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} engines: {node: '>=12'} dependencies: iconv-lite: 0.6.3 dev: true - /whatwg-fetch/2.0.4: + /whatwg-fetch@2.0.4: resolution: {integrity: sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==} dev: false - /whatwg-fetch/3.6.2: + /whatwg-fetch@3.6.2: resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} dev: true - /whatwg-mimetype/2.3.0: + /whatwg-mimetype@2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} dev: true - /whatwg-mimetype/3.0.0: + /whatwg-mimetype@3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} - /whatwg-url/11.0.0: + /whatwg-url@11.0.0: resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} engines: {node: '>=12'} dependencies: @@ -22020,20 +21883,20 @@ packages: webidl-conversions: 7.0.0 dev: true - /whatwg-url/5.0.0: + /whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url/7.1.0: + /whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} dependencies: lodash.sortby: 4.7.0 tr46: 1.0.1 webidl-conversions: 4.0.2 - /whatwg-url/8.7.0: + /whatwg-url@8.7.0: resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} engines: {node: '>=10'} dependencies: @@ -22042,7 +21905,7 @@ packages: webidl-conversions: 6.1.0 dev: true - /which-boxed-primitive/1.0.2: + /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 @@ -22051,7 +21914,7 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 - /which-collection/1.0.1: + /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: is-map: 2.0.2 @@ -22060,11 +21923,11 @@ packages: is-weakset: 2.0.2 dev: true - /which-module/2.0.0: + /which-module@2.0.0: resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} dev: true - /which-typed-array/1.1.8: + /which-typed-array@1.1.8: resolution: {integrity: sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==} engines: {node: '>= 0.4'} dependencies: @@ -22075,21 +21938,21 @@ packages: has-tostringtag: 1.0.0 is-typed-array: 1.1.9 - /which/1.3.1: + /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true dependencies: isexe: 2.0.0 dev: true - /which/2.0.2: + /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 - /why-is-node-running/2.2.2: + /why-is-node-running@2.2.2: resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} engines: {node: '>=8'} hasBin: true @@ -22098,25 +21961,25 @@ packages: stackback: 0.0.2 dev: true - /wide-align/1.1.5: + /wide-align@1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: string-width: 4.2.3 - /windicss/3.5.6: + /windicss@3.5.6: resolution: {integrity: sha512-P1mzPEjgFMZLX0ZqfFht4fhV/FX8DTG7ERG1fBLiWvd34pTLVReS5CVsewKn9PApSgXnVfPWwvq+qUsRwpnwFA==} engines: {node: '>= 12'} hasBin: true dev: true - /windows-release/4.0.0: + /windows-release@4.0.0: resolution: {integrity: sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==} engines: {node: '>=10'} dependencies: execa: 4.1.0 dev: true - /with/7.0.2: + /with@7.0.2: resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} engines: {node: '>= 10.0.0'} dependencies: @@ -22125,45 +21988,45 @@ packages: assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 - /wonka/4.0.15: + /wonka@4.0.15: resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==} - /wonka/6.1.2: + /wonka@6.1.2: resolution: {integrity: sha512-zNrXPMccg/7OEp9tSfFkMgTvhhowqasiSHdJ3eCZolXxVTV/aT6HUTofoZk9gwRbGoFey/Nss3JaZKUMKMbofg==} dev: false - /word-wrap/1.2.3: + /word-wrap@1.2.3: resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} engines: {node: '>=0.10.0'} - /wordwrap/1.0.0: + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: false - /workbox-background-sync/6.5.4: + /workbox-background-sync@6.5.4: resolution: {integrity: sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==} dependencies: idb: 7.0.1 workbox-core: 6.5.4 dev: true - /workbox-broadcast-update/6.5.4: + /workbox-broadcast-update@6.5.4: resolution: {integrity: sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-build/6.5.4: + /workbox-build@6.5.4: resolution: {integrity: sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==} engines: {node: '>=10.0.0'} dependencies: - '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0 + '@apideck/better-ajv-errors': 0.3.6(ajv@8.11.0) '@babel/core': 7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 + '@babel/preset-env': 7.18.6(@babel/core@7.18.6) '@babel/runtime': 7.18.6 - '@rollup/plugin-babel': 5.3.1_p5rdeczgubbtv4lfg2mcoxxnwm - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 - '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 + '@rollup/plugin-babel': 5.3.1(@babel/core@7.18.6)(rollup@2.79.1) + '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) + '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) '@surma/rollup-plugin-off-main-thread': 2.2.3 ajv: 8.11.0 common-tags: 1.8.2 @@ -22173,7 +22036,7 @@ packages: lodash: 4.17.21 pretty-bytes: 5.6.0 rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 + rollup-plugin-terser: 7.0.2(rollup@2.79.1) source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 @@ -22199,23 +22062,23 @@ packages: - supports-color dev: true - /workbox-cacheable-response/6.5.4: + /workbox-cacheable-response@6.5.4: resolution: {integrity: sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-core/6.5.4: + /workbox-core@6.5.4: resolution: {integrity: sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==} - /workbox-expiration/6.5.4: + /workbox-expiration@6.5.4: resolution: {integrity: sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==} dependencies: idb: 7.0.1 workbox-core: 6.5.4 dev: true - /workbox-google-analytics/6.5.4: + /workbox-google-analytics@6.5.4: resolution: {integrity: sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==} dependencies: workbox-background-sync: 6.5.4 @@ -22224,13 +22087,13 @@ packages: workbox-strategies: 6.5.4 dev: true - /workbox-navigation-preload/6.5.4: + /workbox-navigation-preload@6.5.4: resolution: {integrity: sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-precaching/6.5.4: + /workbox-precaching@6.5.4: resolution: {integrity: sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==} dependencies: workbox-core: 6.5.4 @@ -22238,13 +22101,13 @@ packages: workbox-strategies: 6.5.4 dev: true - /workbox-range-requests/6.5.4: + /workbox-range-requests@6.5.4: resolution: {integrity: sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-recipes/6.5.4: + /workbox-recipes@6.5.4: resolution: {integrity: sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==} dependencies: workbox-cacheable-response: 6.5.4 @@ -22255,40 +22118,40 @@ packages: workbox-strategies: 6.5.4 dev: true - /workbox-routing/6.5.4: + /workbox-routing@6.5.4: resolution: {integrity: sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-strategies/6.5.4: + /workbox-strategies@6.5.4: resolution: {integrity: sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==} dependencies: workbox-core: 6.5.4 dev: true - /workbox-streams/6.5.4: + /workbox-streams@6.5.4: resolution: {integrity: sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==} dependencies: workbox-core: 6.5.4 workbox-routing: 6.5.4 dev: true - /workbox-sw/6.5.4: + /workbox-sw@6.5.4: resolution: {integrity: sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==} dev: true - /workbox-window/6.5.4: + /workbox-window@6.5.4: resolution: {integrity: sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==} dependencies: '@types/trusted-types': 2.0.2 workbox-core: 6.5.4 - /workerpool/6.2.0: + /workerpool@6.2.0: resolution: {integrity: sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==} dev: true - /wrap-ansi/6.2.0: + /wrap-ansi@6.2.0: resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} engines: {node: '>=8'} dependencies: @@ -22296,7 +22159,7 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrap-ansi/7.0.0: + /wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} dependencies: @@ -22304,10 +22167,10 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 - /wrappy/1.0.2: + /wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} - /write-file-atomic/3.0.3: + /write-file-atomic@3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: imurmurhash: 0.1.4 @@ -22316,7 +22179,7 @@ packages: typedarray-to-buffer: 3.1.5 dev: true - /write-file-atomic/5.0.0: + /write-file-atomic@5.0.0: resolution: {integrity: sha512-R7NYMnHSlV42K54lwY9lvW6MnSm1HSJqZL3xiSgi9E7//FYaI74r2G0rd+/X6VAMkHEdzxQaU5HUOXWUz5kA/w==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: @@ -22324,7 +22187,7 @@ packages: signal-exit: 3.0.7 dev: true - /ws/7.4.6: + /ws@7.4.6: resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==} engines: {node: '>=8.3.0'} peerDependencies: @@ -22336,7 +22199,7 @@ packages: utf-8-validate: optional: true - /ws/8.11.0: + /ws@8.11.0: resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} engines: {node: '>=10.0.0'} peerDependencies: @@ -22349,7 +22212,7 @@ packages: optional: true dev: false - /ws/8.12.1: + /ws@8.12.1: resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==} engines: {node: '>=10.0.0'} peerDependencies: @@ -22361,7 +22224,7 @@ packages: utf-8-validate: optional: true - /ws/8.2.3: + /ws@8.2.3: resolution: {integrity: sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -22374,16 +22237,16 @@ packages: optional: true dev: false - /xml-name-validator/3.0.0: + /xml-name-validator@3.0.0: resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} dev: true - /xml-name-validator/4.0.0: + /xml-name-validator@4.0.0: resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} engines: {node: '>=12'} dev: true - /xml2js/0.4.23: + /xml2js@0.4.23: resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} engines: {node: '>=4.0.0'} dependencies: @@ -22391,36 +22254,36 @@ packages: xmlbuilder: 11.0.1 dev: false - /xmlbuilder/11.0.1: + /xmlbuilder@11.0.1: resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} engines: {node: '>=4.0'} dev: false - /xmlchars/2.2.0: + /xmlchars@2.2.0: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true - /xmldom/0.1.31: + /xmldom@0.1.31: resolution: {integrity: sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==} engines: {node: '>=0.1'} deprecated: Deprecated due to CVE-2021-21366 resolved in 0.5.0 dev: false - /xmlhttprequest-ssl/1.6.3: + /xmlhttprequest-ssl@1.6.3: resolution: {integrity: sha512-3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==} engines: {node: '>=0.4.0'} dev: false - /xmlhttprequest-ssl/2.0.0: + /xmlhttprequest-ssl@2.0.0: resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} engines: {node: '>=0.4.0'} dev: false - /xregexp/2.0.0: + /xregexp@2.0.0: resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==} dev: false - /xss/1.0.14: + /xss@1.0.14: resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==} engines: {node: '>= 0.10.0'} hasBin: true @@ -22429,34 +22292,34 @@ packages: cssfilter: 0.0.10 dev: false - /xtend/4.0.2: + /xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - /y18n/4.0.3: + /y18n@4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} dev: true - /y18n/5.0.8: + /y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - /yallist/2.1.2: + /yallist@2.1.2: resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: false - /yallist/3.1.1: + /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} dev: false - /yallist/4.0.0: + /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - /yaml-ast-parser/0.0.43: + /yaml-ast-parser@0.0.43: resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==} dev: true - /yaml-eslint-parser/0.3.2: + /yaml-eslint-parser@0.3.2: resolution: {integrity: sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==} dependencies: eslint-visitor-keys: 1.3.0 @@ -22464,16 +22327,16 @@ packages: yaml: 1.10.2 dev: true - /yaml/1.10.2: + /yaml@1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - /yaml/2.1.1: + /yaml@2.1.1: resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} engines: {node: '>= 14'} dev: true - /yargs-parser/18.1.3: + /yargs-parser@18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} dependencies: @@ -22481,20 +22344,20 @@ packages: decamelize: 1.2.0 dev: true - /yargs-parser/20.2.4: + /yargs-parser@20.2.4: resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==} engines: {node: '>=10'} dev: true - /yargs-parser/20.2.9: + /yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} engines: {node: '>=10'} - /yargs-parser/21.1.1: + /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} - /yargs-unparser/2.0.0: + /yargs-unparser@2.0.0: resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} engines: {node: '>=10'} dependencies: @@ -22504,7 +22367,7 @@ packages: is-plain-obj: 2.1.0 dev: true - /yargs/15.4.1: + /yargs@15.4.1: resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} engines: {node: '>=8'} dependencies: @@ -22521,7 +22384,7 @@ packages: yargs-parser: 18.1.3 dev: true - /yargs/16.2.0: + /yargs@16.2.0: resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} engines: {node: '>=10'} dependencies: @@ -22533,7 +22396,7 @@ packages: y18n: 5.0.8 yargs-parser: 20.2.9 - /yargs/17.5.1: + /yargs@17.5.1: resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} engines: {node: '>=12'} dependencies: @@ -22546,31 +22409,31 @@ packages: yargs-parser: 21.1.1 dev: true - /yauzl/2.10.0: + /yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 dev: false - /yeast/0.1.2: + /yeast@0.1.2: resolution: {integrity: sha1-AI4G2AlDIMNy28L47XagymyKxBk=} dev: false - /yn/3.1.1: + /yn@3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} - /yocto-queue/0.1.0: + /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - /yocto-queue/1.0.0: + /yocto-queue@1.0.0: resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} engines: {node: '>=12.20'} dev: true - /z-schema/4.2.4: + /z-schema@4.2.4: resolution: {integrity: sha512-YvBeW5RGNeNzKOUJs3rTL4+9rpcvHXt5I051FJbOcitV8bl40pEfcG0Q+dWSwS0/BIYrMZ/9HHoqLllMkFhD0w==} engines: {node: '>=6.0.0'} hasBin: true @@ -22582,7 +22445,7 @@ packages: commander: 2.20.3 dev: false - /z-schema/5.0.5: + /z-schema@5.0.5: resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==} engines: {node: '>=8.0.0'} hasBin: true